Files
toallab-automation/roles/oatakan.windows_template_build/tasks/clean_up_components.yml
2024-02-08 16:20:39 -05:00

14 lines
494 B
YAML

---
- name: clean up components and update files
win_shell: Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
when: "'Windows Server 2008' not in ansible_distribution"
ignore_errors: true
- include_tasks: clean_up_with_cleanmgr.yml
when: "'Windows Server 2008' in ansible_distribution"
- name: clean up components and update files
win_shell: Dism.exe /online /Cleanup-Image /SpSuperseded
when: "'Windows Server 2008' in ansible_distribution"
ignore_errors: true