
FIX: Microsoft Office does not appear on the installed Programs on Windows 10/11. After solving the problem I decided to write the solution for others who may have it.

Recently I had to uninstall Office on one of my client computers, but Office did not appear in the list of installed programs in Windows 10. In addition, "Program and features" helps you to easily remove or repair any installed application with a few clicks. $OfficeUninstallStrings = (Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Where | Select UninstallString).If you want to uninstall Microsoft Office from your Windows computer, but Office does not appear in the list of installed programs in the Programs and Features section, then continue reading below to resolve the problem.Īs you may know, the Programs and Features tool (aka "Add/Remove Programs") in Control Panel, shows a list of all installed applications in Windows. It will also add " DisplayLevel=False" to the argument list make it run silently & not require user input. The following script will get the UninstallString value for all software with a Display Name containing "Microsoft Office 365" and split the UninstallString into two components - the path to the executable, and the argument list to run the executable with.

Using Powershell, I was able to get these UninstallStrings for each of the three versions, and then run the uninstall commands via PowerShell. Many standard Windows 10 programs have an "UninstallString" in the registry which essentially just specifies an uninstall executable and a list of arguments to use when uninstalling through the GUI. I was able to work out a method to silently uninstall these via a quick Powershell script. I searched for a while for an existing method to do this easily, but didn't come up with anything. but that's not always an option for everyone.

I'm sure a lot of folks have solved this issue by having a master image that is deployed via WDS/MDT/SCCM etc.

It's a real hassle to do this manually through the GUI when you're setting up multiple computers. One major annoyance that my coworkers have been facing is the fact that many Windows 10 computers come with three versions of ClickToRun Office 365 preinstalled (EN, ES, FR) that have to be uninstalled before you can install any other version of Office.
