How to Completely Uninstall Microsoft Office from Windows Using Office Scrubber Tool

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

  1. Download the tool from the official Microsoft support page.

2. Run the tool as Administrator.

  1. 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 βœ…

Join Our Cyber World:

πŸ’¬ Whatsapp | πŸ’¬ TelegramFeatured Image