与Ansible并注销用户一起创建Windows Scheduler任务

时间:2019-02-19 12:35:37

标签: windows ansible scheduler

我在通过ansible创建Windows调度程序任务时遇到问题,如果“用户未登录”,该任务必须运行。

我正在使用以下有效的代码:

- name: Some name...
  win_scheduled_task:
    name: SomeName
    description: SomeDesc
    multiple_instances: 1
    username: THEUSERNAME
    password: THEPASSWORD
    update_password: no
    login_type: s4u
    actions:
      - path: Powershell.exe
        arguments: -ExecutionPolicy Bypass ...
    triggers:
      - type: registration
        repetition:
          - interval: PT1M

我在做什么错? 如果“用户已登录”,则任务始终设置为仅运行。 (logon_type不接受)

提前THX!

0 个答案:

没有答案