mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Native YAML - windows (#3602)
* Native YAML - windows * Fix baskslash * Sorry
This commit is contained in:
parent
684045a316
commit
d11a5bd492
3 changed files with 27 additions and 10 deletions
|
@ -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…
Reference in a new issue