Thanks for your response! So the program is actually software from the company I work at. The objective is to figure out and build a uninstall procedure without getting development involved. And I know, it's surprising that we don't actually have uninstall documentation for any of our software...
I've tried what has been suggested by AI but no luck. When using a batch file a prompt appears for "are you sure you want to uninstall" and if I use a pwershell script UAC authentication always pops up..
I'm currently working on a script to uninstall a msi program that is installed on a client. The package doesn't have a GUID in registry but it does have its own uninstaller.exe I'm currently trying to use a msiexec /x %path/to/exe% /qn /f bat file to uninstall the package quietly without having...