Skip to content

Instantly share code, notes, and snippets.

@JamesDawson
Created October 2, 2013 00:20
Show Gist options
  • Save JamesDawson/6787269 to your computer and use it in GitHub Desktop.
Save JamesDawson/6787269 to your computer and use it in GitHub Desktop.
param
(
[Parameter(Mandatory) ]
[String[]] $ComputerName,
[ValidateRange( 1,3 )]
[uint32] $flag = 3
)
Invoke-CimMethod -ComputerName $ComputerName -Namespace root/microsoft/windows/desiredstateconfiguration `
-Class MSFT_DscLocalConfigurationManager -MethodName ConsistencyCheck `
-Arguments @{Flags=[ uint32]$flag } -Verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment