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-01 15:53:35 +02:00
|
|
|
short_description: Add, Edit, or Remove Registry Value
|
2015-06-25 20:18:57 +02:00
|
|
|
description:
|
2015-07-01 15:53:35 +02:00
|
|
|
- Add, Edit, or Remove Registry Value using ItemProperties Cmdlets
|
2015-06-25 20:18:57 +02:00
|
|
|
options:
|
|
|
|
name:
|
|
|
|
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:
|
2015-07-01 15:53:35 +02:00
|
|
|
- Registry Value Data
|
2015-06-25 20:18:57 +02:00
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
aliases: []
|
2015-07-01 15:53:35 +02:00
|
|
|
type:
|
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: []
|
|
|
|
path:
|
|
|
|
description:
|
2015-07-01 15:53:35 +02:00
|
|
|
- Path of Registry Value
|
2015-06-25 20:18:57 +02:00
|
|
|
required: true
|
|
|
|
default: null
|
|
|
|
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-01 15:53:35 +02:00
|
|
|
# Add Registry Value (Default is String)
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-01 15:53:35 +02:00
|
|
|
name: testvalue
|
|
|
|
data: 1337
|
2015-06-25 20:18:57 +02:00
|
|
|
path: HKCU:\Software\MyCompany
|
|
|
|
|
2015-07-01 15:53:35 +02:00
|
|
|
# Add Registry Value with Type DWord
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-01 15:53:35 +02:00
|
|
|
name: testvalue
|
|
|
|
data: 1337
|
|
|
|
type: dword
|
2015-06-25 20:18:57 +02:00
|
|
|
path: HKCU:\Software\MyCompany
|
|
|
|
|
2015-07-01 15:53:35 +02:00
|
|
|
# Edit Registry Value called testvalue
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-01 15:53:35 +02:00
|
|
|
name: testvalue
|
|
|
|
data: 8008
|
2015-06-25 20:18:57 +02:00
|
|
|
path: HKCU:\Software\MyCompany
|
|
|
|
|
2015-07-01 15:53:35 +02:00
|
|
|
# Remove Registry Value called testvalue
|
2015-06-25 20:18:57 +02:00
|
|
|
win_regedit:
|
2015-07-01 15:53:35 +02:00
|
|
|
name: testvalue
|
2015-06-25 20:18:57 +02:00
|
|
|
path: HKCU:\Software\MyCompany
|
|
|
|
state: absent
|
|
|
|
'''
|