Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MSI Package HELP

Status
Not open for further replies.

dtorres

MIS
Sep 25, 2002
177
US
I have an MSI package that users double click on to install. I need to deploy to a few machines but I need it to a different drive rather than the C:\. The package looks for the C:\ and when it cannot find it, It goes to the next avaiable drive. I need to have it go to a specified drive, not the next available. Are there any swtiches I can use to run this from a RUN command or something?

Thank You

D
 
Currently Logged-on User:
MSIEXEC.exe /i mypackage.msi ALLUSERS=""

All Users:
MSIEXEC.exe /i mypackage.msi ALLUSERS="1"

Unattended Installations
The MSIEXEC command line can also configured to provide a completely silent installation using the following command line:

Silent Mode Installation:
MSIEXEC.exe /i mypackage.msi /q

Alternatively, the next command line will uninstall the application in silent mode:

Silent Mode Uninstallation:
MSIEXEC.exe /x mypackage.msi /q
 
I suppose I should read the question a bit more...

msiexec /i /sources\install_rfclient.msi sourcelist="\\ilife498\rfclient\850\english\win32\sources" /qn


Tim B
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top