Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I am using a batch file to install a msi package in windows vista. I have used both the below

commands.

msiexec.exe -i "ObjectiveNavigator7.4.4.msi" /q /norestart

msiexec.exe /i "ObjectiveNavigator7.4.4.msi" /q /norestart

Nothing get installed, but if i install manually, the installation was successfull.

I think its due to UAC. How to overcome this issue. 'Run As Administrator' also does not work.

Thanks,

Jothiprasad
Posted
Comments
Dr.Walt Fair, PE 3-Dec-10 22:21pm    
Specifically what do you think the UAC is interfering with?

TRY THIS MSIEXEC /QN /I "<PATH><SOURCE>.msi" REBOOT=REALLYSUPPRESS

You can also run msiexec ObjectiveNavigator7.4.4.msi /? for supported commands, but the creator of the .msi had to add support for it.
 
Share this answer
 
Try this msiexec.exe /a <path>.msi /qn
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900