I have an exe which at the moment I run with a command prompt so it's a silent install and I need to create an msi from with the following:
My knowledge of creating MSI is has up to now been using advanced installer simple mode but I have never had to run scripts etc. I can't work out how to add in the installation commands or create an installation script.
Anyone have any idea how I create an msi with the above?
bla-2.7.exe /sp /verysilent /OU:specifiedOU /preferredactivationtype:auto
This will stub the client in without popping up any boxes at all. You
can then drop the below commands that you were using on it and have them
configure the client to the logged in users credentials
The following will need to be setup as a script to be ran once the client has been stubbed in (takes about 60 seconds for it to be stubbed).
"C:\Program Files\bla\blabla.exe" /userdisplayname %username% (this will pull the logged in user name)
"C:\Program Files\bla\blabla.exe" /autoactivate %username%@domainthatyouwish.com (this will pull the logged in username at the specified domain.com)
My knowledge of creating MSI is has up to now been using advanced installer simple mode but I have never had to run scripts etc. I can't work out how to add in the installation commands or create an installation script.
Anyone have any idea how I create an msi with the above?