mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
417 B
YAML
16 lines
417 B
YAML
7 years ago
|
- name: Remove leftover directory
|
||
|
win_file:
|
||
|
path: C:\Program Files\sysinternals
|
||
|
state: absent
|
||
|
|
||
|
- name: Create new directory
|
||
|
win_file:
|
||
|
path: C:\Program Files\sysinternals
|
||
|
state: directory
|
||
|
|
||
|
- name: Download sysinternals archive
|
||
|
win_get_url:
|
||
|
url: https://download.sysinternals.com/files/SysinternalsSuite.zip
|
||
|
dest: C:\Windows\Temp\SysinternalsSuite.zip
|
||
|
skip_certificate_validation: yes
|