2015-06-25 20:18:57 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2015, Adam Keech <akeech@chathamfinancial.com>, Josh Ludwig <jludwig@chathamfinancial.com>
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
# this is a windows documentation stub. actual code lives in the .ps1
|
|
|
|
# file of the same name
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: win_regedit
|
|
|
|
version_added: "2.0"
|
2015-07-06 21:25:01 +02:00
|
|
|
short_description: Add, Edit, or Remove Registry Keys and Values
|
2015-06-25 20:18:57 +02:00
|
|
|
description:
|
2015-07-06 21:25:01 +02:00
|
|
|
- Add, Edit, or Remove Registry Keys and Values using ItemProperties Cmdlets
|
2015-06-25 20:18:57 +02:00
|
|
|
options:
|
2015-07-06 21:25:01 +02:00
|
|
|
key:
|
|
|
|
description:
|
|
|
|
- Name of Registry Key
|
|
|
|
required: true
|
|
|
|
default: null
|
|
|
|
aliases: []
|
|
|
|
value:
|
2015-06-25 20:18:57 +02:00
|
|
|
description:
|
2015-07-01 15:53:35 +02:00
|
|
|
- Name of Registry Value
|
2015-06-25 20:18:57 +02:00
|
|
|
required: true
|
|
|
|
default: null
|
|
|
|
aliases: []
|
2015-07-01 15:53:35 +02:00
|
|
|
data:
|
2015-06-25 20:18:57 +02:00
|
|
|
description:
|
2016-04-15 07:51:16 +02:00
|
|
|
- Registry Value Data. Binary data should be expressed as comma separated hex values. An easy way to generate this is to run C(regedit.exe) and use the I(Export) option to save the registry values to a file. In the exported file binary values will look like C(hex:be,ef,be,ef). The C(hex:) prefix is optional.
|
2015-06-25 20:18:57 +02:00
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
aliases: []
|
2015-07-06 21:25:01 +02:00
|
|
|
datatype:
|
2015-06-25 20:18:57 +02:00
|
|
|
description:
|
2015-07-01 15:53:35 +02:00
|
|
|
- Registry Value Data Type
|
2015-06-25 20:18:57 +02:00
|
|
|
required: false
|
|
|
|
choices:
|
|
|
|
- binary
|
|
|
|
- dword
|
|
|
|
- expandstring
|
|
|
|
- multistring
|
|
|
|
- string
|
|
|
|
- qword
|
|
|
|
default: string
|
|
|
|
aliases: []
|
|
|
|
state:
|
|
|
|
description:
|
2015-07-01 15:53:35 +02:00
|
|
|
- State of Registry Value
|
2015-06-25 20:18:57 +02:00
|
|
|
required: false
|
|
|
|
choices:
|
|
|
|
- present
|
|
|
|
- absent
|
|
|
|
default: present
|
|
|
|
aliases: []
|
|
|
|
author: "Adam Keech (@smadam813), Josh Ludwig (@joshludwig)"
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
2015-07-06 21:25:01 +02:00
|
|
|
# Creates Registry Key called MyCompany.
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-06 21:25:01 +02:00
|
|
|
key: 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
|
2015-06-25 20:18:57 +02:00
|
|
|
|
2015-07-06 21:25:01 +02:00
|
|
|
# Creates Registry Key called MyCompany,
|
|
|
|
# a value within MyCompany Key called "hello", and
|
|
|
|
# data for the value "hello" containing "1337" as type "dword".
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-06 21:25:01 +02:00
|
|
|
key: HKCU:\Software\MyCompany
|
|
|
|
value: hello
|
2015-07-01 15:53:35 +02:00
|
|
|
data: 1337
|
2015-07-06 21:25:01 +02:00
|
|
|
datatype: dword
|
2015-06-25 20:18:57 +02:00
|
|
|
|
2016-04-07 19:22:23 +02:00
|
|
|
# Creates Registry Key called MyCompany,
|
|
|
|
# a value within MyCompany Key called "hello", and
|
|
|
|
# binary data for the value "hello" as type "binary".
|
|
|
|
win_regedit:
|
|
|
|
key: HKCU:\Software\MyCompany
|
|
|
|
value: hello
|
|
|
|
data: hex:be,ef,be,ef,be,ef,be,ef,be,ef
|
|
|
|
datatype: binary
|
|
|
|
|
2015-07-06 21:25:01 +02:00
|
|
|
# Delete Registry Key MyCompany
|
|
|
|
# NOTE: Not specifying a value will delete the root key which means
|
|
|
|
# all values will be deleted
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-06 21:25:01 +02:00
|
|
|
key: HKCU:\Software\MyCompany
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
# Delete Registry Value "hello" from MyCompany Key
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-06 21:25:01 +02:00
|
|
|
key: HKCU:\Software\MyCompany
|
|
|
|
value: hello
|
2015-06-25 20:18:57 +02:00
|
|
|
state: absent
|
|
|
|
'''
|
2016-04-14 22:22:10 +02:00
|
|
|
RETURN = '''
|
|
|
|
data_changed:
|
|
|
|
description: whether this invocation changed the data in the registry value
|
2016-04-15 07:51:16 +02:00
|
|
|
returned: success
|
2016-04-14 22:22:10 +02:00
|
|
|
type: boolean
|
2016-04-15 07:51:16 +02:00
|
|
|
sample: False
|
2016-04-14 22:22:10 +02:00
|
|
|
data_type_changed:
|
|
|
|
description: whether this invocation changed the datatype of the registry value
|
2016-04-15 07:51:16 +02:00
|
|
|
returned: success
|
2016-04-14 22:22:10 +02:00
|
|
|
type: boolean
|
2016-04-15 07:51:16 +02:00
|
|
|
sample: True
|
2016-04-14 22:22:10 +02:00
|
|
|
'''
|