cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
bornali
Level 5

Full UI installation command with passing parameter for setup.exe ?

Hi,
I am trying to install (setup.exe), build with Basic MSI IS2009 , while passing an argument. Is this possible?
It seems that passing of argument is possible for .msi

I tried the following
>setup.exe /v" /qn PROPERTIES_FILE=d:\myProperties"
This picks up the parameter BUT it is no UI install (/qn)

>setup.exe /v" /qb PROPERTIES_FILE=d:\myProperties"
>setup.exe /v" /qr PROPERTIES_FILE=d:\myProperties"
>setup.exe /v" /qf PROPERTIES_FILE=d:\myProperties"
do not work. I need the equivalent of /qf

thank you.
Labels (1)
0 Kudos
(1) Reply
Dan_Galender
Level 10

Since a full UI is the default, you don't need to specify it.

Setup.exe /v"PROPERTIES_FILE=d:\myProperties"


shoud be all you need. Although /qf should also have worked.
0 Kudos