I've been experimenting with running Powershell DSC on Windows Server 2016 Nano (TP 5). When I run the configuration, I get the following error:
PowerShell DSC resource MSFT_xWindowsFeature failed to execute Test-TargetResource functionality with error message: Installing roles and features using PowerShell Desired State Configuration is supported only on Server SKU's. It is not supported on Client SKU.
Surely, Nano is a server SKU, right?
In case you're interested, here is the DSC configuration I'm using (although I did have to fix one issue, see https://github.com/PowerShell/xPSDesiredStateConfiguration/pull/258):
Configuration Webserver
{
Import-DscResource -ModuleName xPSDesiredStateConfiguration
Node "172.28.128.9"
{
Log MyMessage
{
Message = "This installs IIS"
}
xWindowsFeature "Webserver"
{
Name = "Web-Server"
Ensure = "Present"
IncludeAllSubFeature = $TRUE
}
}
}