Jawloms Posted March 20, 2019 Posted March 20, 2019 I have a file server with deduplication on it. 1.36TB partition. It says it's saving me about 31% at the moment. Marvelous! It had around 38GB free earlier. I moved off 50GB of photos which I know aren't duplicated anywhere else on the drive and now I have 29GB free. What did I miss? Is there a clean up utility I can run to tidy something? I don't have as many previous versions available as I would like at the moment. Thank you Stuart
localzuk Posted March 20, 2019 Posted March 20, 2019 Deduplication opimisation runs nightly, rather than in an active way. 1
Jawloms Posted March 20, 2019 Author Posted March 20, 2019 Thanks, I'll check tomorrow, if not I'll be back on here
ADMaster Posted March 20, 2019 Posted March 20, 2019 You can manually run any dedupe job with start-dedupejob You want to run garbage collection, by default it runs weekly, so you may want to start if yourself it you need the disk space. Start-Dedupe Job Types 1
Arthur Posted March 20, 2019 Posted March 20, 2019 You can manually run any dedupe job with start-dedupejob I do that sometimes when I get impatient too. $Drives = "D:,H:" Start-DedupJob -Type Optimization -Full -Memory 75 -Priority High -Volume $Drives -Wait Start-DedupJob -Type GarbageCollection -Full -Memory 75 -Priority High -Volume $Drives -Wait Start-DedupJob -Type Scrubbing -Full -Memory 75 -Priority High -Volume $Drives -Wait Get-DedupStatus Source: http://deploymentresearch.com/Research/Post/397/Running-the-Data-DeDuplication-process-in-PowerShell 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now