I'm trying to uninstall software on a group of workstations using an SCCM package. I have the product GUID and I am pushing a batch file to affected systems. It's a simple batch file with the following line:
MsiExec.exe /X {product guid} /qn REBOOT=R
It appears that the product was installed under the user context because:
When I run the package with admin context it fails with exit code 1605 (product not installed).
When I run the package with user context it fails because administrative context is required.
If I add the user to the local admin group and then run the package with user context it succeeds.
How can I push this uninstaller to run as the user without adding the user to the admin group?
Thanks!