fix problem where you couldn't compare empty strings in win_regedit following my previous change
This commit is contained in:
parent
3031105e78
commit
7d9b73ec5a
1 changed files with 2 additions and 2 deletions
|
@ -63,9 +63,9 @@ Function Test-RegistryValueData {
|
|||
Function Compare-RegistryData {
|
||||
Param (
|
||||
[parameter(Mandatory=$true)]
|
||||
[ValidateNotNullOrEmpty()]$ReferenceData,
|
||||
[AllowEmptyString()]$ReferenceData,
|
||||
[parameter(Mandatory=$true)]
|
||||
[ValidateNotNullOrEmpty()]$DifferenceData
|
||||
[AllowEmptyString()]$DifferenceData
|
||||
)
|
||||
$refType = $ReferenceData.GetType().Name
|
||||
|
||||
|
|
Loading…
Reference in a new issue