Forum Discussion

AB21805's avatar
AB21805
Bronze Contributor
May 27, 2022

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 one account to activate it. Can this also be silent? 

 

I cant find any instructions to do this! So was wondering if anyone can help, if its possible

 

 

  • First, I'd ask the developer about this. Implementing options for silent / unattended installation is their (PreSonus, in this case) job and only they can do it. As they provide no documentation on it at all (yes, I googled it too :)), I'm afraid it's simply not available. 

     

    Apparently, according to silent-install.net, Studio 3 supported the /s parameter for its setup.exe. It might be worth a shot. Silent installation aside, I assume the installer will not activate/register/configure the product (as this requires account credentials, apparently). 

     

    If you're lucky, the developer provides some kind of CLI-tool for that... I wouldn't hold my breath though. You next best shot would be to see if the setup stores something about activation in registry (using a tool like Regshot or something) and trying to see if you can clone that. 

    • AB21805's avatar
      AB21805
      Bronze 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's avatar
        NielsScheffers
        Iron 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.

    • AB21805's avatar
      AB21805
      Bronze Contributor
      Hi,

      Sorry for the late reply! The software is run as a custom install by default is there a way to run as a full install via intune/scripting?

Resources