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