mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
win_scheduled_task: rewrite (#28995)
* win_scheduled_task: rewrite for additionality functionality and bug fixes * fixes for docs and os version differences * started with the testing * doc fix * added more tests * added principals tests * finished tests for win_scheduled_task rewrite * feedback from PR * change to fail when both new and deprecated args are set * change diff variable to match new standard and update doc sentance
This commit is contained in:
parent
31daeb4b85
commit
838f39e76a
11 changed files with 3547 additions and 397 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,22 +1,9 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# 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
|
||||
# Copyright (c) 2017 Ansible Project
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
|
@ -26,138 +13,482 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: win_scheduled_task
|
||||
author: "Peter Mounce"
|
||||
version_added: "2.0"
|
||||
short_description: Manage scheduled tasks
|
||||
description:
|
||||
- Manage scheduled tasks
|
||||
- Creates/modified or removes Windows scheduled tasks.
|
||||
notes:
|
||||
- This module requires Windows Server 2012 or later.
|
||||
- In Ansible 2.4 and earlier, this could only be run on Server 2012/Windows 8
|
||||
or newer. Since 2.5 this restriction has been lifted.
|
||||
- The option names and structure for actions and triggers of a service follow
|
||||
the C(RegisteredTask) naming standard and requirements, it would be useful to
|
||||
read up on this guide if coming across any issues U(https://msdn.microsoft.com/en-us/library/windows/desktop/aa382542.aspx).
|
||||
options:
|
||||
# module definition options
|
||||
name:
|
||||
description:
|
||||
- Name of the scheduled task
|
||||
description: The name of the scheduled task without the path.
|
||||
required: true
|
||||
description:
|
||||
description:
|
||||
- The description for the scheduled task
|
||||
enabled:
|
||||
description:
|
||||
- Enable/disable the task
|
||||
choices:
|
||||
- yes
|
||||
- no
|
||||
default: yes
|
||||
state:
|
||||
description:
|
||||
- State that the task should become
|
||||
required: true
|
||||
choices:
|
||||
- present
|
||||
- absent
|
||||
user:
|
||||
description:
|
||||
- User to run the scheduled task as; defaults to the current user
|
||||
default: DOMAIN\user
|
||||
password:
|
||||
description:
|
||||
- Password for the user account to run the scheduled task as. This is required for running a task without the user being
|
||||
logged in, excluding Windows built-in service accounts. This should be used for specifying credentials during initial
|
||||
task creation, and changing stored user credentials, as setting this value will cause the task to be recreated.
|
||||
version_added: "2.4"
|
||||
runlevel:
|
||||
description:
|
||||
- The level of user rights used to run the task
|
||||
default: limited
|
||||
choices:
|
||||
- limited
|
||||
- highest
|
||||
version_added: "2.4"
|
||||
store_password:
|
||||
description:
|
||||
- Store the password for the user running the task. If C(false), the task will only have access to local resources.
|
||||
default: true
|
||||
version_added: "2.4"
|
||||
executable:
|
||||
description:
|
||||
- Command the scheduled task should execute
|
||||
aliases: [ execute ]
|
||||
arguments:
|
||||
description:
|
||||
- Arguments to provide scheduled task action
|
||||
aliases: [ argument ]
|
||||
frequency:
|
||||
description:
|
||||
- The frequency of the command, not idempotent
|
||||
choices:
|
||||
- once
|
||||
- daily
|
||||
- weekly
|
||||
time:
|
||||
description:
|
||||
- Time to execute scheduled task, not idempotent
|
||||
days_of_week:
|
||||
description:
|
||||
- Days of the week to run a weekly task, not idempotent
|
||||
path:
|
||||
description:
|
||||
- Task folder in which this task will be stored - creates a non-existent path when C(state) is C(present),
|
||||
and removes an empty path when C(state) is C(absent)
|
||||
default: '\'
|
||||
- Task folder in which this task will be stored.
|
||||
- Will create the folder when C(state=present) and the folder does not
|
||||
already exist.
|
||||
- Will remove the folder when C(state=absent) and there are no tasks left
|
||||
in the folder.
|
||||
default: \
|
||||
state:
|
||||
description:
|
||||
- When C(state=present) will ensure the task exists.
|
||||
- When C(state=absent) will ensure the task does not exist.
|
||||
choices: [ absent, present ]
|
||||
default: present
|
||||
|
||||
# Action options
|
||||
actions:
|
||||
description:
|
||||
- A list of action to configure for the task.
|
||||
- See suboptions for details on how to construct each list entry.
|
||||
- When creating a task there MUST be at least one action but when deleting
|
||||
a task this can be a null or an empty list.
|
||||
- The ordering of this list is important, the module will ensure the order
|
||||
is kept when modifying the task.
|
||||
- This module only supports the C(ExecAction) type but can still delete the
|
||||
older legacy types.
|
||||
suboptions:
|
||||
path:
|
||||
description:
|
||||
- The path to the executable for the ExecAction.
|
||||
required: true
|
||||
arguments:
|
||||
description:
|
||||
- An argument string to supply for the executable.
|
||||
working_directory:
|
||||
description:
|
||||
- The working directory to run the executable from.
|
||||
version_added: '2.5'
|
||||
arguments:
|
||||
description:
|
||||
- Arguments to provide for a scheduled task action.
|
||||
- DEPRECATED since 2.5, use the C(actions) option instead to specify a list
|
||||
of actions to run.
|
||||
- Will be removed in 2.7.
|
||||
aliases: [ argument ]
|
||||
executable:
|
||||
description:
|
||||
- The path to the executable to run for a scheduled task action.
|
||||
- DEPRECATED since 2.5, use the C(actions) option instead to specify a list
|
||||
of actions to run.
|
||||
- Will be removed in 2.7.
|
||||
|
||||
# Trigger options
|
||||
triggers:
|
||||
description:
|
||||
- A list of triggers to configure for the task.
|
||||
- See suboptions for details on how to construct each list entry.
|
||||
- The ordering of this list is important, the module will ensure the order
|
||||
is kept when modifying the task.
|
||||
- There are multiple types of triggers, see U(https://msdn.microsoft.com/en-us/library/windows/desktop/aa383868.aspx)
|
||||
for a list of trigger types and their options.
|
||||
- The suboption options listed below are not required for all trigger
|
||||
types, read the description for more details.
|
||||
suboptions:
|
||||
type:
|
||||
description:
|
||||
- The trigger type, this value controls what below options are
|
||||
required.
|
||||
required: true
|
||||
choices: [ boot, daily, event, idle, logon, monthlydow, monthly, registration, time, weekly, session_state_change ]
|
||||
enabled:
|
||||
description:
|
||||
- Whether to set the trigger to enabled or disabled
|
||||
- Used in all trigger types.
|
||||
type: bool
|
||||
start_boundary:
|
||||
description:
|
||||
- The start time for the task, even if the trigger meets the other
|
||||
start criteria, it won't start until this time is met.
|
||||
- If you wish to run a task at 9am on a day you still need to specify
|
||||
the date on which the trigger is activated, you can set any date even
|
||||
ones in the past.
|
||||
- Required when C(type) is C(daily), C(monthlydow), C(monthly),
|
||||
C(time), C(weekly), (session_state_change).
|
||||
- Optional for the rest of the trigger types.
|
||||
- This is in ISO 8601 DateTime format C(YYYY-MM-DDThh:mm:ss).
|
||||
end_boundary:
|
||||
description:
|
||||
- The end time for when the trigger is deactivated.
|
||||
- This is in ISO 8601 DateTime format C(YYYY-MM-DDThh:mm:ss).
|
||||
execution_time_limit:
|
||||
description:
|
||||
- The maximum amount of time that the task is allowed to run for.
|
||||
- Optional for all the trigger types.
|
||||
- Is in the ISO 8601 Duration format C(P[n]Y[n]M[n]DT[n]H[n]M[n]S).
|
||||
delay:
|
||||
description:
|
||||
- The time to delay the task from running once the trigger has been
|
||||
fired.
|
||||
- Optional when C(type) is C(event), C(logon), C(registration),
|
||||
C(session_state_change).
|
||||
- Is in the ISO 8601 Duration format C(P[n]Y[n]M[n]DT[n]H[n]M[n]S).
|
||||
random_delay:
|
||||
description:
|
||||
- The delay time that is randomly added to the start time of the
|
||||
trigger.
|
||||
- Optional when C(type) is C(daily), C(monthlydow), C(monthly),
|
||||
C(time), C(weekly).
|
||||
- Is in the ISO 8601 Duration format C(P[n]Y[n]M[n]DT[n]H[n]M[n]S).
|
||||
subscription:
|
||||
description:
|
||||
- Only used and is required for C(type=event).
|
||||
- The XML query string that identifies the event that fires the
|
||||
trigger.
|
||||
user_id:
|
||||
description:
|
||||
- The username that the trigger will target.
|
||||
- Optional when C(type) is C(logon), C(session_state_change).
|
||||
- Can be the username or SID of a user.
|
||||
- When C(type=logon) and you want the trigger to fire when a user in a
|
||||
group logs on, leave this as null and set C(group) to the group you
|
||||
wish to trigger.
|
||||
days_of_week:
|
||||
description:
|
||||
- The days of the week for the trigger.
|
||||
- Can be a list or comma separated string of full day names e.g. monday
|
||||
instead of mon.
|
||||
- Required when C(type) is C(weekly), C(type=session_state_change).
|
||||
- Optional when C(type=monthlydow).
|
||||
days_of_month:
|
||||
description:
|
||||
- The days of the month from 1 to 31 for the triggers.
|
||||
- If you wish to set the trigger for the last day of any month
|
||||
use C(run_on_last_day_of_month).
|
||||
- Can be a list or comma separated string of day numbers.
|
||||
- Required when C(type=monthly).
|
||||
weeks_of_month:
|
||||
description:
|
||||
- The weeks of the month for the trigger.
|
||||
- Can be a list or comma separated string of the numbers 1 to 4
|
||||
representing the first to 4th week of the month.
|
||||
- Optional when C(type=monthlydow).
|
||||
months_of_year:
|
||||
description:
|
||||
- The months of the year for the trigger.
|
||||
- Can be a list or comma separated string of full month names e.g.
|
||||
march instead of mar.
|
||||
- Optional when C(type) is C(monthlydow), C(monthly).
|
||||
run_on_last_week_of_month:
|
||||
description:
|
||||
- Boolean value that sets whether the task runs on the last week of the
|
||||
month.
|
||||
- Optional when C(type) is C(monthlydow).
|
||||
type: bool
|
||||
run_on_last_day_of_month:
|
||||
description:
|
||||
- Boolean value that sets whether the task runs on the last day of the
|
||||
month.
|
||||
- Optional when C(type) is C(monthly).
|
||||
type: bool
|
||||
weeks_interval:
|
||||
description:
|
||||
- The interval of weeks to run on, e.g. C(1) means every week while
|
||||
C(2) means every other week.
|
||||
- Optional when C(type=weekly).
|
||||
version_added: '2.5'
|
||||
days_of_week:
|
||||
description:
|
||||
- Days of the week to run a weekly task.
|
||||
- Specify a list or comma separate days in the full version, e.g. monday
|
||||
instead of mon.
|
||||
- DEPRECATED since 2.5, use the C(triggers) option list with the type of
|
||||
C(monthlydow) or C(weekly).
|
||||
- Will be removed in 2.7.
|
||||
frequency:
|
||||
description:
|
||||
- The frequency of the task to run.
|
||||
- DEPRECATED since 2.5, use the C(triggers) option list and specify the
|
||||
type based on the frequency required.
|
||||
- Will be removed in 2.7.
|
||||
choices: [ daily, once, weekly ]
|
||||
time:
|
||||
description:
|
||||
- The start time to execute the scheduled task.
|
||||
- DEPRECATED since 2.5, use the C(triggers) option list and use the
|
||||
C(start_boundary) option to set the start time.
|
||||
- Will be removed in 2.7.
|
||||
|
||||
# Principal options
|
||||
display_name:
|
||||
description:
|
||||
- The name of the user/group that is displayed in the Task Scheduler UI.
|
||||
version_added: '2.5'
|
||||
group:
|
||||
description:
|
||||
- The group that will run the task.
|
||||
- C(group) and C(username) are exclusive to each other and cannot be set
|
||||
at the same time.
|
||||
- C(logon_type) can either be not set or equal C(group).
|
||||
version_added: '2.5'
|
||||
logon_type:
|
||||
description:
|
||||
- The logon method that the task will run with.
|
||||
- C(password) means the password will be stored and the task has access
|
||||
to network resources.
|
||||
- C(s4u) means the existing token will be used to run the task and no
|
||||
password will be stored with the task. Means no network or encrypted
|
||||
files access.
|
||||
- C(interactive_token) means the user must already be logged on
|
||||
interactively and will run in an existing interactive session.
|
||||
- C(group) means that the task will run as a group.
|
||||
- C(service_account) means that a service account like System, Local
|
||||
Service or Network Service will run the task.
|
||||
choices: [ none, password, s4u, interactive_token, group, service_account, token_or_password ]
|
||||
version_added: '2.5'
|
||||
run_level:
|
||||
description:
|
||||
- The level of user rights used to run the task.
|
||||
- If not specified the task will be created with limited rights.
|
||||
choices: [ limited, highest ]
|
||||
version_added: '2.4'
|
||||
aliases: [ runlevel ]
|
||||
username:
|
||||
description:
|
||||
- The user to run the scheduled task as.
|
||||
- Will default to the current user under an interactive token if not
|
||||
specified during creation.
|
||||
aliases: [ user ]
|
||||
password:
|
||||
description:
|
||||
- The password for the user account to run the scheduled task as.
|
||||
- This is required when running a task without the user being logged in,
|
||||
excluding the builtin service accounts.
|
||||
- If set, will always result in a change unless C(update_password) is set
|
||||
to C(no) and no othr changes are required for the service.
|
||||
version_added: '2.4'
|
||||
update_password:
|
||||
description:
|
||||
- Whether to update the password even when not other changes have occured.
|
||||
- When C(yes) will always result in a change when executing the module.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
version_added: '2.5'
|
||||
store_password:
|
||||
description:
|
||||
- Whether to store the password for the user running the task.
|
||||
- If C(no), the task will only have access to local resources.
|
||||
- DEPRECATED since 2.5, use C(logon_type=password) to set whether to store
|
||||
the password for the task.
|
||||
- Will be removed in 2.7.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
version_added: '2.4'
|
||||
|
||||
# RegistrationInfo options
|
||||
author:
|
||||
description:
|
||||
- The author of the task.
|
||||
version_added: '2.5'
|
||||
date:
|
||||
description:
|
||||
- The date when the task was registered.
|
||||
version_added: '2.5'
|
||||
description:
|
||||
description:
|
||||
- The description of the task.
|
||||
version_added: '2.5'
|
||||
source:
|
||||
description:
|
||||
- The source of the task.
|
||||
version_added: '2.5'
|
||||
version:
|
||||
description:
|
||||
- The version number of the task.
|
||||
version_added: '2.5'
|
||||
|
||||
# Settings options
|
||||
allow_demand_start:
|
||||
description:
|
||||
- Whether the task can be started by using either the Run command or the
|
||||
Context menu.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
allow_hard_terminate:
|
||||
description:
|
||||
- Whether the task can be terminated by using TerminateProcess.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
compatibility:
|
||||
description:
|
||||
- The integer value with indicates which version of Task Scheduler a task
|
||||
is compatible with.
|
||||
- C(0) means the task is compatible with the AT command.
|
||||
- C(1) means the task is compatible with Task Scheduler 1.0.
|
||||
- C(2) means the task is compatible with Task Scheduler 2.0.
|
||||
choices: [ 0, 1, 2 ]
|
||||
version_added: '2.5'
|
||||
delete_expired_task_after:
|
||||
description:
|
||||
- The amount of time that the Task Scheduler will wait before deleting the
|
||||
task after it expires.
|
||||
- A task expires after the end_boundary has been exceeded for all triggers
|
||||
associated with the task.
|
||||
- This is in ISO 8601 DateTime format C(YYYY-MM-DDThh:mm:ss).
|
||||
version_added: '2.5'
|
||||
disallow_start_if_on_batteries:
|
||||
description:
|
||||
- Whether the task will not be started if the computer is running on
|
||||
battery power.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
enabled:
|
||||
description:
|
||||
- Whether the task is enabled, the task can only run when C(yes).
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
execution_time_limit:
|
||||
description:
|
||||
- The amount of time allowed to complete the task.
|
||||
- When not set, the time limit is infinite.
|
||||
- This is in ISO 8601 DateTime format C(YYYY-MM-DDThh:mm:ss).
|
||||
version_added: '2.5'
|
||||
hidden:
|
||||
description:
|
||||
- Whether the task will be hidden in the UI.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
mutliple_instances:
|
||||
description:
|
||||
- An integer that indicates the behaviour when starting a task that is
|
||||
already running.
|
||||
- C(0) will start a new instance in parallel with existing instances of
|
||||
that task.
|
||||
- C(1) will wait until other instances of that task to finish running
|
||||
before starting itself.
|
||||
- C(2) will not start a new instance if another is running.
|
||||
- C(3) will stop other instances of the task and start the new one.
|
||||
choices: [ 0, 1, 2, 3 ]
|
||||
version_added: '2.5'
|
||||
priortiy:
|
||||
description:
|
||||
- The priority level (0-10) of the task.
|
||||
- When creating a new task the default if C(7).
|
||||
- See U(https://msdn.microsoft.com/en-us/library/windows/desktop/aa383512.aspx)
|
||||
for details on the priority levels.
|
||||
version_added: '2.5'
|
||||
restart_count:
|
||||
description:
|
||||
- The number of times that the Task Scheduler will attempt to restart the
|
||||
task.
|
||||
version_added: '2.5'
|
||||
restart_interval:
|
||||
description:
|
||||
- How long the Task Scheduler will attempt to restart the task.
|
||||
- If this is set then C(restart_count) must also be set.
|
||||
- The maximum allowed time is 31 days.
|
||||
- The minimum allowed time is 1 minute.
|
||||
- This is in ISO 8601 DateTime format C(YYYY-MM-DDThh:mm:ss).
|
||||
version_added: '2.5'
|
||||
run_only_if_idle:
|
||||
description:
|
||||
- Whether the task will run the task only if the computer is in an idle
|
||||
state.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
run_only_if_network_available:
|
||||
description:
|
||||
- Whether the task will run only when a network is available.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
start_when_available:
|
||||
description:
|
||||
- Whether the task can start at any time after its scheduled time has
|
||||
passed.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
stop_if_going_on_batteries:
|
||||
description:
|
||||
- Whether the task will be stopped if the computer begins to run on battery
|
||||
power.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
wake_to_run:
|
||||
description:
|
||||
- Whether the task will wake the computer when it is time to run the task.
|
||||
type: bool
|
||||
version_added: '2.5'
|
||||
author:
|
||||
- Peter Mounce (@petemounce)
|
||||
- Jordan Borean (@jborean93)
|
||||
'''
|
||||
|
||||
EXAMPLES = r'''
|
||||
# Create a scheduled task to open a command prompt
|
||||
- win_scheduled_task:
|
||||
- name: create a task to open 2 command prompts as SYSTEM
|
||||
win_scheduled_task:
|
||||
name: TaskName
|
||||
description: open command prompt
|
||||
executable: cmd
|
||||
arguments: -opt1 -opt2
|
||||
path: \example
|
||||
time: 9am
|
||||
frequency: daily
|
||||
actions:
|
||||
- path: cmd.exe
|
||||
arguments: /c hostname
|
||||
- path: cmd.exe
|
||||
arguments: /c whoami
|
||||
triggers:
|
||||
- type: daily
|
||||
start_boundary: 2017-10-09T09:00:00
|
||||
username: SYSTEM
|
||||
state: present
|
||||
enabled: yes
|
||||
user: SYSTEM
|
||||
|
||||
- name: Create a task to run a PowerShell script as NETWORK SERVICE at the highest user rights level
|
||||
- name: create task to run a PS script as NETWORK service on boot
|
||||
win_scheduled_task:
|
||||
name: TaskName2
|
||||
description: Run a PowerShell script
|
||||
executable: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
|
||||
arguments: -ExecutionPolicy Unrestricted -NonInteractive -File C:\TestDir\Test.ps1
|
||||
time: 6pm
|
||||
frequency: once
|
||||
actions:
|
||||
- path: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
|
||||
arguments: -ExecutionPolicy Unrestricted -NonInteractive -File C:\TestDir\Test.ps1
|
||||
triggers:
|
||||
- type: boot
|
||||
username: NETWORK SERVICE
|
||||
run_level: highest
|
||||
state: present
|
||||
enabled: yes
|
||||
user: NETWORK SERVICE
|
||||
runlevel: highest
|
||||
|
||||
- name: Change the above task to run under a domain user account, storing credentials for the task
|
||||
- name: change above task to run under a domain user account, storing the passwords
|
||||
win_scheduled_task:
|
||||
name: TaskName2
|
||||
description: Run a PowerShell script
|
||||
executable: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
|
||||
arguments: -ExecutionPolicy Unrestricted -NonInteractive -File C:\TestDir\Test.ps1
|
||||
time: 6pm
|
||||
frequency: once
|
||||
state: present
|
||||
enabled: yes
|
||||
user: DOMAIN\user
|
||||
password: passwordGoesHere
|
||||
runlevel: highest
|
||||
username: DOMAIN\User
|
||||
password: Password
|
||||
logon_type: password
|
||||
|
||||
- name: Change the above task again, choosing not to store the password for the account
|
||||
- name: change the above task again, choosing not to store the password
|
||||
win_scheduled_task:
|
||||
name: TaskName2
|
||||
description: Run a PowerShell script
|
||||
executable: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
|
||||
arguments: -ExecutionPolicy Unrestricted -NonInteractive -File C:\TestDir\Test.ps1
|
||||
time: 6pm
|
||||
frequency: once
|
||||
state: present
|
||||
enabled: yes
|
||||
user: DOMAIN\user
|
||||
runlevel: highest
|
||||
store_password: no
|
||||
username: DOMAIN\User
|
||||
logon_type: s4u
|
||||
|
||||
- name: create task with multiple triggers
|
||||
win_scheduled_task:
|
||||
name: TriggerTask
|
||||
path: \Custom
|
||||
actions:
|
||||
- path: cmd.exe
|
||||
triggers:
|
||||
- type: daily
|
||||
- type: monthlydow
|
||||
username: SYSTEM
|
||||
|
||||
- name: set logon type to password but don't force update the password
|
||||
win_scheduled_task:
|
||||
name: TriggerTask
|
||||
path: \Custom
|
||||
actions:
|
||||
- path: cmd.exe
|
||||
username: Administrator
|
||||
password: password
|
||||
update_password: no
|
||||
|
||||
- name: disable a task that already exists
|
||||
win_scheduled_task:
|
||||
name: TaskToDisable
|
||||
enabled: no
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue