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\Application\47.0.2526.80\Installer\setup.exe’ -ArgumentList ‘/uninstall’, ‘/silent’ -Wait