win_regedit: Make the string comparison case sensitive when comparing string values (#25536)

* Make the string comparison case sensitive when comparing string values

* Added documentation note about change detection now being case-sensitive
This commit is contained in:
jhawkesworth 2017-06-27 00:51:50 +01:00 committed by Jordan Borean
commit 1ec115d830
2 changed files with 2 additions and 1 deletions

View file

@ -83,7 +83,7 @@ Function Compare-Data {
return $false
}
} elseif ($ReferenceData -is [string] -or $ReferenceData -is [int]) {
if ($ReferenceData -eq $DifferenceData) {
if ($ReferenceData -ceq $DifferenceData) {
return $true
} else {
return $false