We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can I get command line arguments for the processing of the script MyProduct.msi arg1="abc" arg2="bcd"?
The text was updated successfully, but these errors were encountered:
You cannot access the arguments directly. Typically the arguments, as in your case, are propagated into the session properties:
msiexec.exe /i "C:\Example.msi" MY_PROP="myValue"
However, this mechanism works only for public properties - properties with fully capitalized names.
If it is what you are referring to then you access these properties just as any other msi properties.
var value = session["MY_PROP"] ;
Sorry, something went wrong.
Thanks
No branches or pull requests
Can I get command line arguments for the processing of the script
MyProduct.msi arg1="abc" arg2="bcd"?
The text was updated successfully, but these errors were encountered: