Consolidate fragmented files on local volumes
- Locates and consolidates fragmented files on local volumes to improve system performance.
- More information regarding
win_defrag
is available from: https://technet.microsoft.com/en-us/library/cc731650(v=ws.11.aspx)
The below requirements are needed on the host that executes this module.
- defrag.exe
- name: Defragment all local volumes (in parallel)
community.windows.win_defrag:
parallel: yes
- name: 'Defragment all local volumes, except C: and D:'
community.windows.win_defrag:
exclude_volumes: [ C, D ]
- name: 'Defragment volume D: with normal priority'
community.windows.win_defrag:
include_volumes: D
priority: normal
- name: Consolidate free space (useful when reducing volumes)
community.windows.win_defrag:
freespace_consolidation: yes
Common return values are documented here, the following are the fields unique to this module:
- Dag Wieers (@dagwieers)