Forum Discussion
AB21805
May 27, 2022Bronze Contributor
installing Studio One 5 Professional - exe
Hi all, I have a piece of software which requires you to accept terms and conditions which I would like to bypass and install silently. This software also asks users to log in with their Studio o...
AB21805
May 27, 2022Bronze Contributor
Thank you I tried /s on a local machine at it worked how would I uninstall this via command line? I still need to test installing via intune yet but I will keep you updated!
NielsScheffers
May 27, 2022Iron Contributor
It sounds like the setup.exe is actually just a wrapper for a .MSI. Is there a part in the setup-process where it starts unpacking data? If so, you should be able to unpack it yourself. There's a few ways to do that... you could try opening it with 7-Zip, or maybe the /x parameter actually works.
Tip: setup.exe /? or setup.exe /h may yield some more information on the possibilities.
Once unpacked, you're probably left with a MSI-file (and maybe some other payload-parts). This is basically the real installer. Each product has its own MSI GUID, which can also be used to uninstall it like so:
msiexec.exe /x {MSI GUID} /qn
- /x means uninstall;
- /qn means "quiet" (no UI or interaction).
That's just one of many options and I encourage you experiment.
- AB21805Jul 20, 2022Bronze ContributorHi is there no way of installing the full installation rather than the custom? When installed using /s I click on the app which then requires all add ins / sounds if we are able to install the full version this will bypass any user interaction
Thanks in advance