Further fixes to support binary data. Added boolean return values and return documentation.

pull/18777/head
jhawkesworth@users.noreply.github.com 9 years ago committed by Matt Clay
parent c2ca0a9e93
commit aaa9541abd

@ -28,6 +28,8 @@ New-PSDrive -PSProvider registry -Root HKEY_CURRENT_CONFIG -Name HCCC -ErrorActi
$params = Parse-Args $args; $params = Parse-Args $args;
$result = New-Object PSObject; $result = New-Object PSObject;
Set-Attr $result "changed" $false; Set-Attr $result "changed" $false;
Set-Attr $result "data_changed" $false;
Set-Attr $result "data_type_changed" $false;
$registryKey = Get-Attr -obj $params -name "key" -failifempty $true $registryKey = Get-Attr -obj $params -name "key" -failifempty $true
$registryValue = Get-Attr -obj $params -name "value" -default $null $registryValue = Get-Attr -obj $params -name "value" -default $null
@ -56,6 +58,31 @@ Function Test-RegistryValueData {
} }
} }
# Returns rue if registry data matches.
# Handles binary and string registry data
Function Compare-RegistryData {
Param (
[parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]$ReferenceData,
[parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]$DifferenceData
)
$refType = $ReferenceData.GetType().Name
if ($refType -eq "String" ) {
if ($ReferenceData -eq $DifferenceData) {
return $true
} else {
return $false
}
} elseif ($refType -eq "Object[]") {
if (@(Compare-Object $ReferenceData $DifferenceData -SyncWindow 0).Length -eq 0) {
return $true
} else {
return $false
}
}
}
# Simplified version of Convert-HexStringToByteArray from # Simplified version of Convert-HexStringToByteArray from
# https://cyber-defense.sans.org/blog/2010/02/11/powershell-byte-array-hex-convert # https://cyber-defense.sans.org/blog/2010/02/11/powershell-byte-array-hex-convert
@ -64,7 +91,7 @@ Function Test-RegistryValueData {
function Convert-RegExportHexStringToByteArray function Convert-RegExportHexStringToByteArray
{ {
Param ( Param (
[parameter(Mandatory=$true))] [String] $String [parameter(Mandatory=$true)] [String] $String
) )
# remove 'hex:' from the front of the string if present # remove 'hex:' from the front of the string if present
@ -100,6 +127,9 @@ if($state -eq "present") {
{ {
if (Test-RegistryValueData -Path $registryKey -Value $registryValue) if (Test-RegistryValueData -Path $registryKey -Value $registryValue)
{ {
# handle binary data
$currentRegistryData =(Get-ItemProperty -Path $registryKey | Select-Object -ExpandProperty $registryValue)
if ($registryValue.ToLower() -eq "(default)") { if ($registryValue.ToLower() -eq "(default)") {
# Special case handling for the key's default property. Because .GetValueKind() doesn't work for the (default) key property # Special case handling for the key's default property. Because .GetValueKind() doesn't work for the (default) key property
$oldRegistryDataType = "String" $oldRegistryDataType = "String"
@ -116,6 +146,8 @@ if($state -eq "present") {
Remove-ItemProperty -Path $registryKey -Name $registryValue Remove-ItemProperty -Path $registryKey -Name $registryValue
New-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData -PropertyType $registryDataType New-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData -PropertyType $registryDataType
$result.changed = $true $result.changed = $true
$result.data_changed = $true
$result.data_type_changed = $true
} }
Catch Catch
{ {
@ -123,11 +155,12 @@ if($state -eq "present") {
} }
} }
# Changes Only Data # Changes Only Data
elseif ((Get-ItemProperty -Path $registryKey | Select-Object -ExpandProperty $registryValue) -ne $registryData) elseif (-Not (Compare-RegistryData -ReferenceData $currentRegistryData -DifferenceData $registryData))
{ {
Try { Try {
Set-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData Set-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData
$result.changed = $true $result.changed = $true
$result.data_changed = $true
} }
Catch Catch
{ {

@ -116,3 +116,16 @@ EXAMPLES = '''
value: hello value: hello
state: absent state: absent
''' '''
RETURN = '''
data_changed:
description: whether this invocation changed the data in the registry value
returned: always
type: boolean
sample: false
data_type_changed:
description: whether this invocation changed the datatype of the registry value
returned: always
type: boolean
sample: true
'''

Loading…
Cancel
Save