Problem to remove Google Chrome from Windows 11

Situation: The client can’t run google Chrome. Then he tries to remove Chrome by going to Control Panel or Settings>apps. However, o matter he tries, he can’t remove Chrome from the Windows 11.

Resolution 1: use PowerShell command

$app = Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -match 'Google Chrome'}

Resolution 2: Run elevated prompt command

IF EXIST “C:\Program Files (x86)\Google\Chrome\Application\93.0.4577.63\Installer\setup.exe” (“C:\Program Files (x86)\Google\Chrome\Application\93.0.4577.63\Installer\setup.exe” –uninstall –multi-install –chrome –msi –system-level –force-uninstall)

Replace the text for your installed version.

Or

Start-Process -FilePath ‘C:\Users\Administrator\AppData\Local\Google\Chrome\Applicat‌​ion\47.0.2526.80\Ins‌​taller\setup.exe’ -ArgumentList ‘/uninstall’, ‘/silent’ -Wait

Published by

Bob Lin

Bob Lin, Chicagotech-MVP, MCSE & CNE Data recovery, Windows OS Recovery, Networking, and Computer Troubleshooting on http://www.ChicagoTech.net How to Install and Configure Windows, VMware, Virtualization and Cisco on http://www.HowToNetworking.com

Leave a Reply