Listen to this Post
While removing Microsoft Office via Programs and Features might seem sufficient, it often leaves behind unwanted traces such as old licenses that can interfere with new installations or activations. To ensure a complete removal, Microsoft provides a FREE tool called Office Scrubber Tool, which thoroughly wipes all Office remnants from your system.
Steps to Use Office Scrubber Tool
- Download the tool from the official Microsoft support page.
2. Run the tool as Administrator.
- Select the option to uninstall everything using a wildcard (“).
4. Reboot your PC to complete the cleanup.
If you only need to remove Office licenses, the tool provides a separate option for that.
π Learn more here: Microsoft Office Scrubber Tool Guide
You Should Know: Additional Manual Cleanup Steps
Sometimes, residual files and registry entries remain even after using the scrubber. Hereβs how to manually ensure a 100% clean uninstall:
1. Delete Leftover Files & Folders
Open Command Prompt (Admin) and run:
rd /s /q "%ProgramFiles%\Microsoft Office" rd /s /q "%ProgramFiles(x86)%\Microsoft Office" rd /s /q "%AppData%\Microsoft\Office"
2. Clean the Windows Registry
β οΈ Backup your registry first (regedit β File β Export) before proceeding.
Then, open Registry Editor (`regedit`) and delete:
[/bash]
HKEY_CURRENT_USER\Software\Microsoft\Office
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office
<ol>
<li>Remove Office Scheduled Tasks
Run in PowerShell (Admin):
[bash]
Get-ScheduledTask | Where-Object { $_.TaskName -like "Office" } | Unregister-ScheduledTask -Confirm:$false
4. Clear Office Licensing Cache
Execute in CMD (Admin):
cscript "C:\Program Files\Microsoft Office\Office16\OSPP.VBS" /dstatus cscript "C:\Program Files\Microsoft Office\Office16\OSPP.VBS" /unpkey:XXXXX (Replace XXXXX with your license key)
What Undercode Say
A complete Office uninstall is crucial for troubleshooting activation issues or preparing for a fresh install. The Office Scrubber Tool automates most of the process, but manual cleanup ensures no hidden traces remain. For IT professionals, combining PowerShell scripts with registry cleanup guarantees a pristine system state.
πΉ Bonus Linux Alternative:
If managing Office on Linux via Wine, use:
wine uninstaller Then select Microsoft Office entries rm -rf ~/.wine/drive_c/Program\ Files/Microsoft\ Office/
πΉ Windows Alternative Tools:
- Revo Uninstaller (Advanced mode)
- Geek Uninstaller (Portable & powerful)
Expected Output: A fully clean system with no Office leftovers, ready for a fresh installation. π
References:
Reported By: Alitajran Microsoftoffice – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass β



