Dedup installed?
Get-WindowsFeature -Name FS-Data-Deduplication
... [-ComputerName <String> ]
... | Where Installed
Dedup settings
Enable-DedupVolume D: -UsageType Default
Optionally, set the minimum number of days that must pass before a file is deduplicated by using the following command.
Set-DedupVolume -Volume D: -ExcludeFolder \ -MinimumFileAgeDays 100
If you set MinimumFileAgeDays to 0, deduplication will process all files, regardless of their age. This is suitable for a test environment, where you want to exercise maximum deduplication. In a production environment, however, it is preferable to wait for a number of days (the default is three days in Windows Server 2012 R2 and five days in Windows Server 2012), because files tend to change a lot for a brief period of time before the change rate slows. This allows for the most efficient use of your server resources.
Deaktivieren und entfernen der geplanten Aufträge
Get-DedupVolume
Get-DedupStatus | fl
Enable-DedupVolume D: -UsageType Default
Set-DedupVolume -Volume D: -ExcludeFolder \ -MinimumFileAgeDays 100
Get-DedupSchedule
Get-DedupSchedule | Set-DedupSchedule -Enabled $false
Get-DedupSchedule
Get-DedupSchedule | Remove-DedupSchedule
Get-DedupSchedule
Start-DedupJob -Type GarbageCollection -Volume d: -Priority High -Full -Wait
Get-DedupStatus | fl
Start-DedupJob -Type Unoptimization -Volume d: -Priority High -Full -Wait
Get-DedupStatus | fl
Start-DedupJob -Type Scrubbing -Volume d: -Priority High -Full -Wait
Get-DedupStatus | fl
Disable-DedupVolume -Volume D:
Get-DedupStatus | fl