Native YAML - windows (#3602)

* Native YAML - windows

* Fix baskslash

* Sorry
pull/18777/head
Fabio Alessandro Locati 8 years ago committed by Matt Clay
parent 684045a316
commit d11a5bd492

@ -42,7 +42,8 @@ EXAMPLES = '''
path: 'C:\Windows\System32\cmd.exe'
register: exe_file_version
- debug: msg="{{exe_file_version}}"
- debug:
msg: '{{ exe_file_version }}'
'''

@ -74,6 +74,15 @@ options:
'''
EXAMPLES = '''
# Create a scheduled task to open a command prompt
win_scheduled_task: name="TaskName" execute="cmd" frequency="daily" time="9am" description="open command prompt" path="example" enable=yes state=present
# Create a scheduled task to open a command prompt
- win_scheduled_task:
name: TaskName
execute: cmd
frequency: daily
time: 9am
description: open command prompt
path: example
enable: yes
state: present
user: SYSTEM
'''

@ -69,15 +69,22 @@ notes:
'''
EXAMPLES = '''
# Install all security, critical, and rollup updates
win_updates:
category_names: ['SecurityUpdates','CriticalUpdates','UpdateRollups']
# Install all security, critical, and rollup updates
- win_updates:
category_names:
- SecurityUpdates
- CriticalUpdates
- UpdateRollups
# Install only security updates
win_updates: category_names=SecurityUpdates
# Install only security updates
- win_updates:
category_names: SecurityUpdates
# Search-only, return list of found updates (if any), log to c:\ansible_wu.txt
win_updates: category_names=SecurityUpdates state=searched log_path=c:/ansible_wu.txt
# Search-only, return list of found updates (if any), log to c:\ansible_wu.txt
- win_updates:
category_names: SecurityUpdates
state: searched
log_path: c:\ansible_wu.txt
'''
RETURN = '''

Loading…
Cancel
Save