Team OS : Your Only Destination To Custom OS !!

Welcome to TeamOS Community, Register or Login to the Community to Download Torrents, Get Access to Shoutbox, Post Replies, Use Search Engine and many more features. Register Today!

Status
Not open for further replies.

Mirkec

Uploader
Power User
Windows Modifier
✅ Verified Member
Member
Downloaded
57.6 GB
Uploaded
16 TB
Ratio
285.11
Seedbonus
329,011
Upload Count
83 (96)
Member for 6 years
616bA.png


Review
Microsoft Office sometimes can be tough to entirely removed from a user machine, but it can be done with usage of several uninstallers, by rebooting OS after each uninstalls and manually searching for leftovers in registry and folders with third-party software such as Registry Finder, Search Everything, Mythicsoft FileLocator, and similar tools.

The thread provides three-official, old and new tools for entirely and accurately removes of all Microsoft Office apps and editions. Relevant tools help to simplify removing procedure for an average user.


1. Uninstall Microsoft Office easy fix tool
Uninstall Microsoft Office completely removes all Office applications and settings from a user computer. It does not delete any files, documents, or workbooks user created using the Office apps. According to the official Microsoft homepage, a user needs to try uninstalling Office using the Control Panel first. If that does not work, Microsoft recommends the use of the easy fix tool or try uninstalling Office manually.


61mqm.png

61L75.png


2. Office Scrubber - scrub/remove Office 2019/2016 C2R or Office 2016 MSI
Microsoft Office 2019/2016/365 all share the same installation location and licensing level, which may lead to licenses confliction or duplication. The script provided by abbodi1406 properly scrub and remove Office C2R or Office 2016/2019 from the user computer.
If a user intends to remove Office and start clean, run the automated batch script package as an administrator and follow the instructions.

Manual steps:
1. Uninstall current Office normally from Control Panel -> Program and Features;
2. Download and extract OfficeScrubber package;
3. Run command prompt as administrator, and change the path to bin directory;
4. Execute this command and follow instructions;
if a user had Office C2R installed
Code:
cscript OffScrubC2R.vbs
if a user had traditional Office 2016 MSI installed
Code:
cscript OffScrub_O16msi.vbs

5. Reboot system
Note: if a user has installed Windows 10 evaluation build, execute this command before rebooting
Code:
cscript %SystemRoot%\System32\slmgr.vbs /rilc

6. Afterward, run a command prompt as administrator, and execute:
Code:
reg delete HKEY_CURRENT_USER\Software\Microsoft\Office /f
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office /f

now user can proceed to install new Office C2R


@echo off
%windir%\system32\reg.exe query "HKU\S-1-5-19" 1>nul 2>nul || (
set "msg=ERROR: right click on the script and 'Run as administrator'"
goto :end
)
for %%a in (OffScrub_O16msi.vbs,OffScrubC2R.vbs) do (
if not exist "%~dp0bin\%%a" (set "msg=ERROR: required file %%a is missing"&goto :end)
)
for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
if %winbuild% LSS 7601 (
set "msg=ERROR: Windows 7 SP1 is the minimum supported OS"
goto :end
)
title Office Scrubber
set xOS=x64
if /i "%PROCESSOR_ARCHITECTURE%"=="x86" (if "%PROCESSOR_ARCHITEW6432%"=="" set xOS=x86)
set OfficeC2R=0
sc query ClickToRunSvc 1>nul 2>nul && set OfficeC2R=1
sc query OfficeSvc 1>nul 2>nul && set OfficeC2R=1
reg query HKLM\SOFTWARE\Microsoft\Office\ClickToRun\Configuration /v ProductReleaseIds 1>nul 2>nul && (
set OfficeC2R=1
for /f "tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Microsoft\Office\ClickToRun\Configuration /v Platform" 2^>nul') do set "plat=%%b"
)
reg query HKLM\SOFTWARE\WOW6432Node\Microsoft\Office\ClickToRun\Configuration /v ProductReleaseIds 1>nul 2>nul && set OfficeC2R=1
if exist "%CommonProgramFiles%\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" set OfficeC2R=1
if %OfficeC2R% equ 1 if not defined plat (
if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\OSPP.VBS" (set "plat=x86") else (set "plat=%xOS%")
)
set OfficeMSI=0
for /f "tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Microsoft\Office\16.0\Common\InstallRoot /v Path" 2^>nul') do if exist "%%b\OSPP.VBS" set OfficeMSI=1
for /f "tokens=2*" %%a in ('"reg query HKLM\SOFTWARE\Wow6432Node\Microsoft\Office\16.0\Common\InstallRoot /v Path" 2^>nul') do if exist "%%b\OSPP.VBS" set OfficeMSI=1

if %OfficeC2R% equ 0 if %OfficeMSI% equ 0 (
echo.
echo ============================================================
echo No installed Office ClickToRun or Office 2016 MSI detected
echo.
echo.
choice /C YN /N /M "Continue with scrubbing Office anyway? [y/n]: "
if errorlevel 2 goto :eof
if errorlevel 1 goto :main
)
echo.
echo ============================================================
if %OfficeC2R% equ 1 echo Detected Office C2R
if %OfficeMSI% equ 1 echo Detected Office 2016 MSI
echo.
echo.
choice /C YN /N /M "Continue with scrubbing detected Office? [y/n]: "
if errorlevel 2 goto :eof
if errorlevel 1 goto :main

:main
cls
if %OfficeC2R% equ 0 if %OfficeMSI% equ 0 goto :proceed
echo.
echo ============================================================
echo Uninstalling Product Key^(s)
echo ============================================================
call :cKMS

:proceed
cd /d "%~dp0bin"
if exist "%CommonProgramFiles%\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" (
echo.
echo ============================================================
echo Executing OfficeClickToRun.exe
echo ============================================================
1>nul 2>nul start "" /WAIT "%CommonProgramFiles%\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" platform=%plat% productstoremove=AllProducts displaylevel=False
)
echo.
echo ============================================================
echo Executing OffScrubC2R.vbs
echo ============================================================
1>nul 2>nul cscript //Nologo //B OffScrubC2R.vbs ALL /OSE /QUIET /NOCANCEL
echo.
echo ============================================================
echo Executing OffScrub_O16msi.vbs
echo ============================================================
1>nul 2>nul cscript //Nologo //B OffScrub_O16msi.vbs ALL /OSE /QUIET /NOCANCEL /NOREBOOT /FORCE /DELETEUSERSETTINGS /ECI

reg delete HKCU\Software\Microsoft\Office /f 1>nul 2>nul
reg delete HKLM\SOFTWARE\Microsoft\Office /f 1>nul 2>nul
reg delete HKLM\SOFTWARE\Wow6432Node\Microsoft\Office /f 1>nul 2>nul
for /f %%a in ('"dir /b %windir%\temp\ose*.exe" 2^>nul') do taskkill /t /f /IM %%a 1>nul 2>nul
del /f /q "%windir%\temp\*" 1>nul 2>nul
del /f /q "%windir%\temp\*.log" 1>nul 2>nul
del /f /q "%temp%\*.log" 1>nul 2>nul

if exist "%SystemRoot%\System32\spp\store_test\2.0\tokens.dat" (
echo.
echo ============================================================
echo Refreshing Windows Insider Preview Licenses...
echo ============================================================
echo.
cscript //Nologo //B %SystemRoot%\System32\slmgr.vbs /rilc
)
set "msg=Finished. Recommended to reboot the system."
goto :end

:cKMS
set "OSPP=SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform"
set "SPPk=SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform"
if %winbuild% geq 9200 (
set spp=SoftwareLicensingProduct
) else (
set spp=OfficeSoftwareProtectionProduct
)
for /f "tokens=2 delims==" %%G in ('"wmic path %spp% where (Name LIKE 'Office%%' AND PartialProductKey is not NULL) get ID /VALUE" 2^>nul') do (set app=%%G&call :Clear)
if /i %spp% EQU SoftwareLicensingProduct (
reg delete "HKLM\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f 1>nul 2>nul
reg delete "HKEY_USERS\S-1-5-20\%SPPk%\0ff1ce15-a989-479d-af46-f275c6370663" /f 1>nul 2>nul
) else (
reg delete "HKLM\%OSPP%\0ff1ce15-a989-479d-af46-f275c6370663" /f 1>nul 2>nul
reg delete "HKEY_USERS\S-1-5-20\%OSPP%" /f 1>nul 2>nul
)
goto :eof

:Clear
wmic path %spp% where ID='%app%' call ClearKeyManagementServiceMachine 1>nul 2>nul
wmic path %spp% where ID='%app%' call ClearKeyManagementServicePort 1>nul 2>nul
wmic path %spp% where ID='%app%' call UninstallProductKey 1>nul 2>nul
goto :eof

:end
echo.
echo ============================================================
echo %msg%
echo ============================================================
echo.
echo Press any key to exit...
pause >nul
goto :eof


61VyR.png


3. Office Uninstall version 1.4
Office Uninstall is an old-new utility coded by Ratiborus that completely removes all Microsoft Office products and editions from a user computer. It is created from Office 2013-2019 C2R Install upon request from some users and coded it as a standalone program.


61D8e.png



Virus free! 100% clean!
All credits go to Microsoft, abbodi1406 and Ratiborus who made and shared tools with us!

Since all Medicines etc. can cause Alerts and Infections. Use at your own Risk...
Uploaders and TeamOS is in No way responsible...
Also read the comments and feedback...
If members have given Negative feedback more than once, why would you download? WHY?


Official Microsoft Uninstall tool: SetupProd_OffScrub.exe
0/72
MD5: a9a189e7c270b711628d3e8c546700bc
SHA1: a236ffd2c90d5f4e9cebbc53fa60b17949950cc8
SHA256: 6895ce7dfafe88cb01c8017e1bafe31d6b311e72c151d20edf27bf779c3868bb

File: Office.Scrubber.7z
00/60
MD5: 6565738d3e79de5b725eaae1765bd220
SHA1: 102094f0c46477aa2a5764b47b5855831be55396
SHA256: 17efba06632a44f026c8582924b282a971a6327d38c9f256184b926e9b01e39a

File: OUninstall.exe
43/71
MD5: 45199d505f93661ae29dd10f741ec779
SHA1: 07a64d8396187674432960f7fb370bc46fe52886
SHA256: 37a9d76c444bf67f01e5536a68c968b3c753d68d220bfb31ff3a38ae0c0a6be9

File: OUninstall_64.exe
35/71
MD5: 5d002a142a4b68143220eb16cc277425
SHA1: 4595ca518a8965250ed2e9c3dd345cf56788200b
SHA256: 506a01586a316653ec60bcc54513a6d5302103e094919d9d58a5b9a41485f4ee


Kind regards,
@Mirkec
in collaboration with TeamOS 😉


Download links (Size: 1.90 MB):


 
Last edited:

Cumulonimbus

Weatherman
Power User
✅ Verified Member
Member
Downloaded
225.3 GB
Uploaded
1.7 TB
Ratio
7.84
Seedbonus
139
Upload Count
7 (8)
Member for 10 years
Excellent offering @Mirkec !!
 

Gollapudi

No time for myself due to work load
Uploader
✅ Verified Member
Member
Downloaded
2.1 TB
Uploaded
429.7 TB
Ratio
204.63
Seedbonus
153,885
Upload Count
843 (830)
Member for 7 years
Marvelous Real unique style of posting u had ...Thanks a trillion :)
 

Dancer

✅ Verified Member
Member
Downloaded
67.9 GB
Uploaded
762 GB
Ratio
11.22
Seedbonus
1,899
Upload Count
0 (0)
Member for 9 years
Thank you very much./
 

colc07

✅ Verified Member
Member
Downloaded
24.5 GB
Uploaded
4.7 TB
Ratio
195.86
Seedbonus
373,550
Upload Count
0 (0)
Member for 8 years
Thank you @Mirkec , another for my toolbox
 

*Maestro*

Power User
Member
Downloaded
368.9 GB
Uploaded
81.8 TB
Ratio
226.97
Seedbonus
711,487
Upload Count
0 (0)
Member for 9 years
Thank you./
This will come in handy.
I will save this one.
 

Alessia_Amelia

Power User
✅ Verified Member
Member
Downloaded
1.7 TB
Uploaded
50 TB
Ratio
29.38
Seedbonus
370,934
Upload Count
0 (0)
Member for 6 years
Thank you kindly, nice work and a great share.
 

Neville's Haze

✅ Verified Member
Member
Downloaded
122.9 GB
Uploaded
280.3 GB
Ratio
2.28
Seedbonus
325
Upload Count
0 (0)
Member for 6 years
Wish I had this last week. I've never been able to completely remove MS Office, always had to reformat. I've tried Renovo, Total Unistaller, and Iobit follwed by multiple registry cleaners, then junk file removers without luck. @Mirkec seems to post the hard to find or never knew exsistsed programs routinely. Very impressive indeed. Thank you
 

MniawY

Former STAFF™ ⭐️
Uploader
Power User
Member
Downloaded
156.4 GB
Uploaded
51 TB
Ratio
333.87
Seedbonus
1,328,835
Upload Count
104 (102)
Member for 7 years
Thanks Very Much @Mirkec
 

sarathy38

Member
Downloaded
12 GB
Uploaded
18.2 GB
Ratio
1.52
Seedbonus
4,301
Upload Count
0 (0)
Member for 8 years
Very handy and useful.thanks
 

jubilum

Member
Downloaded
423.8 GB
Uploaded
171.7 GB
Ratio
0.41
Seedbonus
215
Upload Count
0 (0)
Member for 10 years
will save this usefull apps and tks...
 

vdogeek

🤴 Super Admin
Uploader
Downloaded
93.5 GB
Uploaded
56.4 TB
Ratio
617.64
Seedbonus
8,217,454
Upload Count
1199 (1205)
Member for 9 years
Added to my to-do list...
gjn3m.gif
@Mirkec
 

elzking

Member
Downloaded
47.1 GB
Uploaded
150.8 GB
Ratio
3.2
Seedbonus
10,273
Upload Count
0 (0)
Member for 6 years
Very useful, help many people who has trouble for office
 

exotic

✅ Verified Member
Member
Downloaded
163.5 GB
Uploaded
68.6 TB
Ratio
429.54
Seedbonus
8,404
Upload Count
0 (0)
Member for 7 years
Nice tool, thank you @Mirkec
 

Jeffrey Sayas

Member
Downloaded
254.2 GB
Uploaded
343 GB
Ratio
1.35
Seedbonus
3,541
Upload Count
0 (0)
Member for 7 years
thank you, sir, very useful tool.
 

Jonas_Barua

Member
Downloaded
5 GB
Uploaded
8.9 GB
Ratio
1.78
Seedbonus
18
Upload Count
0 (0)
Member for 5 years
Thank you, a great share;)
 

Gillian

✅ Verified Member
Member
Downloaded
213 GB
Uploaded
356.8 GB
Ratio
1.68
Seedbonus
16,837
Upload Count
0 (0)
Member for 8 years
Thank you nice to have:p:p:p:p:p:p:p:p:p
 

aboseaveen

Member
Downloaded
150.2 GB
Uploaded
192.4 GB
Ratio
1.28
Seedbonus
10,433
Upload Count
0 (0)
Member for 8 years
Thank you, a great work
 

beautyangel

Member
Downloaded
127.3 GB
Uploaded
553.9 GB
Ratio
4.35
Seedbonus
889
Upload Count
0 (0)
Member for 9 years
thanks my bro. this App is awesome. You kick Ass Buddy. :party::party::party:
 

vdogeek

🤴 Super Admin
Uploader
Downloaded
93.5 GB
Uploaded
56.4 TB
Ratio
617.64
Seedbonus
8,217,454
Upload Count
1199 (1205)
Member for 9 years
I have to also say Thanks!...this worked wonders!
gjn3m.gif
@Mirkec
 
Status
Not open for further replies.
Top