mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
16 lines
417 B
YAML
16 lines
417 B
YAML
|
- 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
|