2015-06-25 20:18:57 +02:00
|
|
|
#!powershell
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# (c) 2015, Adam Keech <akeech@chathamfinancial.com>, Josh Ludwig <jludwig@chathamfinancial.com>
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
|
|
|
|
# WANT_JSON
|
|
|
|
# POWERSHELL_COMMON
|
|
|
|
|
2016-02-09 07:42:02 +01:00
|
|
|
New-PSDrive -PSProvider registry -Root HKEY_CLASSES_ROOT -Name HKCR -ErrorAction SilentlyContinue
|
|
|
|
New-PSDrive -PSProvider registry -Root HKEY_USERS -Name HKU -ErrorAction SilentlyContinue
|
|
|
|
New-PSDrive -PSProvider registry -Root HKEY_CURRENT_CONFIG -Name HCCC -ErrorAction SilentlyContinue
|
|
|
|
|
2015-06-25 20:18:57 +02:00
|
|
|
$params = Parse-Args $args;
|
|
|
|
$result = New-Object PSObject;
|
|
|
|
Set-Attr $result "changed" $false;
|
|
|
|
|
2015-10-14 20:04:07 +02:00
|
|
|
$registryKey = Get-Attr -obj $params -name "key" -failifempty $true
|
|
|
|
$registryValue = Get-Attr -obj $params -name "value" -default $null
|
|
|
|
$state = Get-Attr -obj $params -name "state" -validateSet "present","absent" -default "present"
|
|
|
|
$registryData = Get-Attr -obj $params -name "data" -default $null
|
|
|
|
$registryDataType = Get-Attr -obj $params -name "datatype" -validateSet "binary","dword","expandstring","multistring","string","qword" -default "string"
|
2015-07-06 21:25:01 +02:00
|
|
|
|
2015-10-14 20:04:07 +02:00
|
|
|
If ($state -eq "present" -and $registryData -eq $null -and $registryValue -ne $null)
|
2015-06-25 20:18:57 +02:00
|
|
|
{
|
2015-07-01 15:53:35 +02:00
|
|
|
Fail-Json $result "missing required argument: data"
|
2015-06-25 20:18:57 +02:00
|
|
|
}
|
|
|
|
|
2015-07-01 15:53:35 +02:00
|
|
|
Function Test-RegistryValueData {
|
2015-06-25 20:18:57 +02:00
|
|
|
Param (
|
|
|
|
[parameter(Mandatory=$true)]
|
|
|
|
[ValidateNotNullOrEmpty()]$Path,
|
|
|
|
[parameter(Mandatory=$true)]
|
|
|
|
[ValidateNotNullOrEmpty()]$Value
|
|
|
|
)
|
|
|
|
Try {
|
|
|
|
Get-ItemProperty -Path $Path -Name $Value
|
|
|
|
Return $true
|
|
|
|
}
|
|
|
|
Catch {
|
|
|
|
Return $false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($state -eq "present") {
|
2015-07-06 21:25:01 +02:00
|
|
|
if ((Test-Path $registryKey) -and $registryValue -ne $null)
|
|
|
|
{
|
|
|
|
if (Test-RegistryValueData -Path $registryKey -Value $registryValue)
|
2015-06-25 20:18:57 +02:00
|
|
|
{
|
2015-12-19 22:57:13 +01:00
|
|
|
if ($registryValue.ToLower() -eq "(default)") {
|
|
|
|
# Special case handling for the key's default property. Because .GetValueKind() doesn't work for the (default) key property
|
|
|
|
$oldRegistryDataType = "String"
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$oldRegistryDataType = (Get-Item $registryKey).GetValueKind($registryValue)
|
|
|
|
}
|
|
|
|
|
2015-07-06 21:25:01 +02:00
|
|
|
# Changes Data and DataType
|
2015-12-19 22:57:13 +01:00
|
|
|
if ($registryDataType -ne $oldRegistryDataType)
|
2015-06-25 20:18:57 +02:00
|
|
|
{
|
|
|
|
Try
|
|
|
|
{
|
2015-07-06 21:25:01 +02:00
|
|
|
Remove-ItemProperty -Path $registryKey -Name $registryValue
|
|
|
|
New-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData -PropertyType $registryDataType
|
2015-06-25 20:18:57 +02:00
|
|
|
$result.changed = $true
|
|
|
|
}
|
|
|
|
Catch
|
|
|
|
{
|
|
|
|
Fail-Json $result $_.Exception.Message
|
|
|
|
}
|
|
|
|
}
|
2015-07-06 21:25:01 +02:00
|
|
|
# Changes Only Data
|
2015-10-14 20:04:07 +02:00
|
|
|
elseif ((Get-ItemProperty -Path $registryKey | Select-Object -ExpandProperty $registryValue) -ne $registryData)
|
2015-06-25 20:18:57 +02:00
|
|
|
{
|
|
|
|
Try {
|
2015-07-06 21:25:01 +02:00
|
|
|
Set-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData
|
2015-06-25 20:18:57 +02:00
|
|
|
$result.changed = $true
|
|
|
|
}
|
|
|
|
Catch
|
|
|
|
{
|
|
|
|
Fail-Json $result $_.Exception.Message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Try
|
|
|
|
{
|
2015-07-06 21:25:01 +02:00
|
|
|
New-ItemProperty -Path $registryKey -Name $registryValue -Value $registryData -PropertyType $registryDataType
|
2015-06-25 20:18:57 +02:00
|
|
|
$result.changed = $true
|
|
|
|
}
|
|
|
|
Catch
|
|
|
|
{
|
|
|
|
Fail-Json $result $_.Exception.Message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-06 21:25:01 +02:00
|
|
|
elseif(-not (Test-Path $registryKey))
|
2015-06-25 20:18:57 +02:00
|
|
|
{
|
2015-10-14 20:04:07 +02:00
|
|
|
Try
|
2015-06-25 20:18:57 +02:00
|
|
|
{
|
2015-07-06 21:25:01 +02:00
|
|
|
$newRegistryKey = New-Item $registryKey -Force
|
2015-06-25 20:18:57 +02:00
|
|
|
$result.changed = $true
|
2015-07-06 21:25:01 +02:00
|
|
|
|
|
|
|
if($registryValue -ne $null) {
|
|
|
|
$newRegistryKey | New-ItemProperty -Name $registryValue -Value $registryData -Force -PropertyType $registryDataType
|
|
|
|
$result.changed = $true
|
|
|
|
}
|
2015-06-25 20:18:57 +02:00
|
|
|
}
|
|
|
|
Catch
|
|
|
|
{
|
|
|
|
Fail-Json $result $_.Exception.Message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-07-06 21:25:01 +02:00
|
|
|
if (Test-Path $registryKey)
|
2015-06-25 20:18:57 +02:00
|
|
|
{
|
2015-07-06 21:25:01 +02:00
|
|
|
if ($registryValue -eq $null) {
|
2015-06-25 20:18:57 +02:00
|
|
|
Try
|
|
|
|
{
|
2015-07-06 21:25:01 +02:00
|
|
|
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
|
2015-06-25 20:18:57 +02:00
|
|
|
$result.changed = $true
|
|
|
|
}
|
|
|
|
Catch
|
|
|
|
{
|
|
|
|
Fail-Json $result $_.Exception.Message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit-Json $result
|