9973bea504
* removal of deprecated win_get_url arg `skip_certificate_validation` broke win_unzip tests
15 lines
403 B
YAML
15 lines
403 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
|
|
validate_certs: no
|