-
Notifications
You must be signed in to change notification settings - Fork 32
Function Registry
Chris Hunt edited this page May 23, 2016
·
1 revision
Test a Registry Key.
Test the Existance of a Key or the Value of a given Property.
[Parameter(
Mandatory = $true,
Position = 2)]
[Parameter(
Position = 3,
ParameterSetName = 'Set 2')]
[Parameter(
Mandatory = $true,
Position = 3,
ParameterSetName = 'Set 1')]
[Parameter(
Mandatory = $true,
Position = 4,
ParameterSetName = 'Set 2')]
Be, BeExactly, Exist, Match, MatchExactly
Registry HKLM:\SOFTWARE\Microsoft\Rpc\ClientProtocols { Should Exist }
Registry HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\ "NV Domain" { Should Be mybiz.local }
Registry 'HKLM:\SOFTWARE\Callahan Auto\' { Should Not Exist }
Getting Started
Contributing
Functions