PowerShell - Automation Patterns
Given this DSC configuration snippet, what will be the output file name generated after running
MyConfig?
Configuration MyConfig {
Node 'localhost' {
File ExampleFile {
DestinationPath = 'C:\temp\example.txt'
Contents = 'Hello DSC'
}
}
}
MyConfig