2

I have built an .msi package from InstallShield and name it "Dell Printer Hub.msi". I run it from Command Line in Window 7 as below:

D:\package>msiexec /i "Dell Printer Hub.msi" /qn 

It's working in window 7. But when I run this Command Line in window 8, it's not working at all. I have tried "/qb", "/qr", "/qf" and they worked fine.

I also have tried "/quiet" but it's not worked in window 8.

How can i run .msi package from Command Line as silent mode in window 8. Please help!

vinhdq91
  • 31
  • 1
  • 6

2 Answers2

3

You should add /l*v install.log and the read the results to see why it isn't working. Odds are UAC is enabled and you are invoking this from a standard user command prompt. There could also be a design defect in the MSI that doesn't like Windows 8 and/or missing prereqs.

Christopher Painter
  • 54,556
  • 6
  • 63
  • 100
2

Are you sure that you launched the Command Prompt using the "Run as administrator" option?

EuSebyU
  • 119
  • 1
  • 6