Adding functionality to not only edit Values, but also Keys.

pull/18777/head
Adam Keech 9 years ago committed by Matt Clay
parent 1710d1aa0c
commit b365b83906

@ -25,13 +25,22 @@ $params = Parse-Args $args;
$result = New-Object PSObject; $result = New-Object PSObject;
Set-Attr $result "changed" $false; Set-Attr $result "changed" $false;
If ($params.name) If ($params.key)
{ {
$registryValueName = $params.name $registryKey = $params.key
} }
Else Else
{ {
Fail-Json $result "missing required argument: name" Fail-Json $result "missing required argument: key"
}
If ($params.value)
{
$registryValue = $params.value
}
Else
{
$registryValue = $null
} }
If ($params.state) If ($params.state)
@ -49,16 +58,16 @@ Else
If ($params.data) If ($params.data)
{ {
$registryValueData = $params.data $registryData = $params.data
} }
ElseIf ($state -eq "present") ElseIf ($state -eq "present" -and $registryValue -ne $null)
{ {
Fail-Json $result "missing required argument: data" Fail-Json $result "missing required argument: data"
} }
If ($params.type) If ($params.datatype)
{ {
$registryDataType = $params.type.ToString().ToLower() $registryDataType = $params.datatype.ToString().ToLower()
$validRegistryDataTypes = "binary", "dword", "expandstring", "multistring", "string", "qword" $validRegistryDataTypes = "binary", "dword", "expandstring", "multistring", "string", "qword"
If ($validRegistryDataTypes -notcontains $registryDataType) If ($validRegistryDataTypes -notcontains $registryDataType)
{ {
@ -70,15 +79,6 @@ Else
$registryDataType = "string" $registryDataType = "string"
} }
If ($params.path)
{
$registryValuePath = $params.path
}
Else
{
Fail-Json $result "missing required argument: path"
}
Function Test-RegistryValueData { Function Test-RegistryValueData {
Param ( Param (
[parameter(Mandatory=$true)] [parameter(Mandatory=$true)]
@ -96,16 +96,17 @@ Function Test-RegistryValueData {
} }
if($state -eq "present") { if($state -eq "present") {
if (Test-Path $registryValuePath) { if ((Test-Path $registryKey) -and $registryValue -ne $null)
if (Test-RegistryValueData -Path $registryValuePath -Value $registryValueName) {
if (Test-RegistryValueData -Path $registryKey -Value $registryValue)
{ {
# Changes Type and Value # Changes Data and DataType
If ((Get-Item $registryValuePath).GetValueKind($registryValueName) -ne $registryDataType) if ((Get-Item $registryKey).GetValueKind($registryValue) -ne $registryDataType)
{ {
Try Try
{ {
Remove-ItemProperty -Path $registryValuePath -Name $registryValueName Remove-ItemProperty -Path $registryKey -Name $registryValue
New-ItemProperty -Path $registryValuePath -Name $registryValueName -Value $registryValueData -PropertyType $registryDataType New-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData -PropertyType $registryDataType
$result.changed = $true $result.changed = $true
} }
Catch Catch
@ -113,11 +114,11 @@ if($state -eq "present") {
Fail-Json $result $_.Exception.Message Fail-Json $result $_.Exception.Message
} }
} }
# Only Changes Value # Changes Only Data
ElseIf ((Get-ItemProperty -Path $registryValuePath | Select-Object -ExpandProperty $registryValueName) -ne $registryValueData) elseif ((Get-ItemProperty -Path $registryKey | Select-Object -ExpandProperty $registryValue) -ne $registryData)
{ {
Try { Try {
Set-ItemProperty -Path $registryValuePath -Name $registryValueName -Value $registryValueData Set-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData
$result.changed = $true $result.changed = $true
} }
Catch Catch
@ -130,7 +131,7 @@ if($state -eq "present") {
{ {
Try Try
{ {
New-ItemProperty -Path $registryValuePath -Name $registryValueName -Value $registryValueData -PropertyType $registryDataType New-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData -PropertyType $registryDataType
$result.changed = $true $result.changed = $true
} }
Catch Catch
@ -139,12 +140,17 @@ if($state -eq "present") {
} }
} }
} }
else elseif(-not (Test-Path $registryKey))
{ {
Try Try
{ {
New-Item $registryValuePath -Force | New-ItemProperty -Name $registryValueName -Value $registryValueData -Force -PropertyType $registryDataType $newRegistryKey = New-Item $registryKey -Force
$result.changed = $true $result.changed = $true
if($registryValue -ne $null) {
$newRegistryKey | New-ItemProperty -Name $registryValue -Value $registryData -Force -PropertyType $registryDataType
$result.changed = $true
}
} }
Catch Catch
{ {
@ -154,12 +160,23 @@ if($state -eq "present") {
} }
else else
{ {
if (Test-Path $registryValuePath) if (Test-Path $registryKey)
{ {
if (Test-RegistryValueData -Path $registryValuePath -Value $registryValueName) { if ($registryValue -eq $null) {
Try Try
{ {
Remove-ItemProperty -Path $registryValuePath -Name $registryValueName Remove-Item -Path $registryKey -Recurse
$result.changed = $true
}
Catch
{
Fail-Json $result $_.Exception.Message
}
}
elseif (Test-RegistryValueData -Path $registryKey -Value $registryValue) {
Try
{
Remove-ItemProperty -Path $registryKey -Name $registryValue
$result.changed = $true $result.changed = $true
} }
Catch Catch
@ -171,4 +188,3 @@ else
} }
Exit-Json $result Exit-Json $result

@ -25,11 +25,17 @@ DOCUMENTATION = '''
--- ---
module: win_regedit module: win_regedit
version_added: "2.0" version_added: "2.0"
short_description: Add, Edit, or Remove Registry Value short_description: Add, Edit, or Remove Registry Keys and Values
description: description:
- Add, Edit, or Remove Registry Value using ItemProperties Cmdlets - Add, Edit, or Remove Registry Keys and Values using ItemProperties Cmdlets
options: options:
name: key:
description:
- Name of Registry Key
required: true
default: null
aliases: []
value:
description: description:
- Name of Registry Value - Name of Registry Value
required: true required: true
@ -41,7 +47,7 @@ options:
required: false required: false
default: null default: null
aliases: [] aliases: []
type: datatype:
description: description:
- Registry Value Data Type - Registry Value Data Type
required: false required: false
@ -54,12 +60,6 @@ options:
- qword - qword
default: string default: string
aliases: [] aliases: []
path:
description:
- Path of Registry Value
required: true
default: null
aliases: []
state: state:
description: description:
- State of Registry Value - State of Registry Value
@ -73,28 +73,37 @@ author: "Adam Keech (@smadam813), Josh Ludwig (@joshludwig)"
''' '''
EXAMPLES = ''' EXAMPLES = '''
# Add Registry Value (Default is String) # Creates Registry Key called MyCompany.
win_regedit: win_regedit:
name: testvalue key: HKCU:\Software\MyCompany
data: 1337
path: HKCU:\Software\MyCompany # Creates Registry Key called MyCompany,
# a value within MyCompany Key called "hello", and
# data for the value "hello" containing "world".
win_regedit:
key: HKCU:\Software\MyCompany
value: hello
data: world
# Add Registry Value with Type DWord # Creates Registry Key called MyCompany,
# a value within MyCompany Key called "hello", and
# data for the value "hello" containing "1337" as type "dword".
win_regedit: win_regedit:
name: testvalue key: HKCU:\Software\MyCompany
value: hello
data: 1337 data: 1337
type: dword datatype: dword
path: HKCU:\Software\MyCompany
# Edit Registry Value called testvalue # Delete Registry Key MyCompany
# NOTE: Not specifying a value will delete the root key which means
# all values will be deleted
win_regedit: win_regedit:
name: testvalue key: HKCU:\Software\MyCompany
data: 8008 state: absent
path: HKCU:\Software\MyCompany
# Delete Registry Value "hello" from MyCompany Key
# Remove Registry Value called testvalue
win_regedit: win_regedit:
name: testvalue key: HKCU:\Software\MyCompany
path: HKCU:\Software\MyCompany value: hello
state: absent state: absent
''' '''

Loading…
Cancel
Save