boxstarter
boxstarter copied to clipboard
Creating Tasks in Server 2016 Nano fails
Thanks to all who have taken the time and effort to develop Boxstarter and Chocolatey!
We are having some issues with Server 2016 Core and Nano:
In Create-BoxstarterTask.ps1 the call to $xml.save($taskFile)
fails.
Nano server does not accept string type in save. This works when the code is changed it to use System.IO.StreamWriter
$stream = [System.IO.StreamWriter] $taskFile;
$xml.save($stream).
Related to issue #215