Long command line for msi script install
hi guys
I have a product to install (genevalogic vision 6) and it takes a really long command line.
I want to put this into wisescript to create an .exe so none of the end users can see the serial numbers and so on. the problem I'm having is that the command line seems to be too long for the area i can enter it into.
is there any other way i can extend this or execute it a different way?
the command line im trying to enter is . . . (with censored info of course)
msiexec /quiet /i "Source\Genevalogic Vision 6 01.msi" MESETUPTYPE=MASTER MEMASTERPASSWORD=******* MESERIAL=****-*********************-****** MESTARTUPTYPE=MANUAL USERNAME="user name here" COMPANYNAME="company"
and it only let me enter this much - msiexec /quiet /i "Source\Genevalogic Vision 6 01.msi" MESETUPTYPE=MASTER MEMASTERPASSWORD=******* MESERIAL=****-*********************-*
im using wise package studio 5.6
thanks for any suggestions
I have a product to install (genevalogic vision 6) and it takes a really long command line.
I want to put this into wisescript to create an .exe so none of the end users can see the serial numbers and so on. the problem I'm having is that the command line seems to be too long for the area i can enter it into.
is there any other way i can extend this or execute it a different way?
the command line im trying to enter is . . . (with censored info of course)
msiexec /quiet /i "Source\Genevalogic Vision 6 01.msi" MESETUPTYPE=MASTER MEMASTERPASSWORD=******* MESERIAL=****-*********************-****** MESTARTUPTYPE=MANUAL USERNAME="user name here" COMPANYNAME="company"
and it only let me enter this much - msiexec /quiet /i "Source\Genevalogic Vision 6 01.msi" MESETUPTYPE=MASTER MEMASTERPASSWORD=******* MESERIAL=****-*********************-*
im using wise package studio 5.6
thanks for any suggestions
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
jonasm
19 years ago
Posted by:
Foleymon
19 years ago
What you can do with this is define the commands as a variable and use that. For example.
Set Variable COMMANDS and enter: MESETUPTYPE=MASTER MEMASTERPASSWORD=******* MESERIAL=****-*********************-****** MESTARTUPTYPE=MANUAL USERNAME="user name here" COMPANYNAME="company"
Then just execute the line like this.
msiexec /quiet /i "Source\Genevalogic Vision 6 01.msi" %COMMANDS%
Set Variable COMMANDS and enter: MESETUPTYPE=MASTER MEMASTERPASSWORD=******* MESERIAL=****-*********************-****** MESTARTUPTYPE=MANUAL USERNAME="user name here" COMPANYNAME="company"
Then just execute the line like this.
msiexec /quiet /i "Source\Genevalogic Vision 6 01.msi" %COMMANDS%
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.