summaryrefslogtreecommitdiff
path: root/windows/win_regedit.py
diff options
context:
space:
mode:
authorAdam Keech <akeech@chathamfinancial.com>2015-06-25 14:18:57 -0400
committerAdam Keech <akeech@chathamfinancial.com>2015-07-06 15:25:28 -0400
commit5a2a22bf68b6cd305e6dbfe1a0044eaf5d9398ed (patch)
tree5b6744897ece1436703c979d1316aab47c25d458 /windows/win_regedit.py
parent195ef57bfb254e719aa7ea3a6ad30729e3036b87 (diff)
downloadansible-modules-extras-5a2a22bf68b6cd305e6dbfe1a0044eaf5d9398ed.tar.gz
Adding win_regedit module
Diffstat (limited to 'windows/win_regedit.py')
-rw-r--r--windows/win_regedit.py101
1 files changed, 101 insertions, 0 deletions
diff --git a/windows/win_regedit.py b/windows/win_regedit.py
new file mode 100644
index 00000000..007ddd4e
--- /dev/null
+++ b/windows/win_regedit.py
@@ -0,0 +1,101 @@
+#!/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"
+short_description: Add, Edit, or Remove Registry Key
+description:
+ - Add, Edit, or Remove Registry Key using ItemProperties Cmdlets
+options:
+ name:
+ description:
+ - Name of Registry Key
+ required: true
+ default: null
+ aliases: []
+ value:
+ description:
+ - Value of Registry Key
+ required: false
+ default: null
+ aliases: []
+ valuetype:
+ description:
+ - Type of Registry Key
+ required: false
+ choices:
+ - binary
+ - dword
+ - expandstring
+ - multistring
+ - string
+ - qword
+ default: string
+ aliases: []
+ path:
+ description:
+ - Path of Registry Key
+ required: true
+ default: null
+ aliases: []
+ state:
+ description:
+ - State of Registry Key
+ required: false
+ choices:
+ - present
+ - absent
+ default: present
+ aliases: []
+author: "Adam Keech (@smadam813), Josh Ludwig (@joshludwig)"
+'''
+
+EXAMPLES = '''
+ # Add Registry Key (Default is String)
+ win_regedit:
+ name: testkey
+ value: 1337
+ path: HKCU:\Software\MyCompany
+
+ # Add Registry Key with Type DWord
+ win_regedit:
+ name: testkey
+ value: 1337
+ valuetype: dword
+ path: HKCU:\Software\MyCompany
+
+ # Edit Registry Key called testkey
+ win_regedit:
+ name: testkey
+ value: 8008
+ path: HKCU:\Software\MyCompany
+
+ # Remove Registry Key called testkey
+ win_regedit:
+ name: testkey
+ path: HKCU:\Software\MyCompany
+ state: absent
+'''
+