PowerShell - Automation Patterns
After running this DSC configuration, what is the default name of the generated MOF file?
Configuration MySetup {
Node 'Server01' {
File LogFile {
DestinationPath = 'C:\Logs\app.log'
Contents = 'Log initialized'
}
}
}
MySetup