Native YAML - windows (#3602)

* Native YAML - windows

* Fix baskslash

* Sorry
This commit is contained in:
Fabio Alessandro Locati 2016-12-01 17:39:49 +00:00 committed by Matt Clay
commit d11a5bd492
3 changed files with 27 additions and 10 deletions

View file

@ -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
'''