Hello,
I am starting to learn DSC but i have faced with an error and can not find the root cause of it:
Syntax error:
At line:1, char:13
Buffer:
Configuration^ IISWeb
+ CategoryInfo : SyntaxError: (root/Microsoft/…gurationManager:String) , CimException
+ FullyQualifiedErrorId : MiClientApiError_Failed
+ PSComputerName : localhost
i am using following mof template localhost.mof:
Start-DscConfiguration -Force –Path .\IISWebsite –Wait –Verbose
Configuration IISWebsite
{
param(
localhost
)
Node localhost
{
WindowsFeature IIS
{
Ensure = "Present"
Name = "Web-Server"
}
WindowsFeature ASP
{
Ensure = "Present"
Name = "Web-Asp-Net45"
}
File WebContent
{
Ensure = "Present"
Type = "Directory"
SourcePath = "C:\Content\BakeryWebsite"
DestinationPath = "C:\inetpub\wwwroot\"
Recurse = $true
}
}
} IISWebsite -NodeName "localhost"
Tried it and another templates as well on several servers with os (windows 10, 2012 R2, 2016) and on powershell 4.0 and 5.1.
This error repeats everywhere and i have no idea how to find the root cause.
Please help to find the solution.
Thanks.