@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
17 lines (14 loc) • 346 B
YAML
- name: Delete unnecessary folders
win_file:
path: "{{ item }}"
state: absent
loop:
- C:\PerfLogs
- C:\$WinREAgent
- name: Remove all of the desktop icons
win_shell: Remove-Item C:\Users\*\Desktop\*lnk -Force
ignore_errors: true
- name: Empty Recycling bin
win_shell: Clear-RecycleBin -Force
ignore_errors: true