mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-08 09:24:01 -07: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
|
@ -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
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue