Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 455 Bytes

reset-dsc.md

File metadata and controls

19 lines (16 loc) · 455 Bytes

Reset DSC Local Configuration Manager

[DscLocalConfigurationManager()]
Configuration ResetLCM {
    Node localhost {
        Settings {
            RebootNodeIfNeeded = $True
            ConfigurationMode = 'ApplyAndMonitor'
            RefreshMode = 'Push'
            ActionAfterReboot = 'ContinueConfiguration'
        }
    }
}

ResetLCM -out c:\$env:temp\resetLCM
Set-DscLocalConfigurationManager -Path C:\$env:temp\resetLCM -Verbose