Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

finding out silent install options for a MSI


2 replies to this topic

mayur_bm

mayur_bm
  • Full Members
  • 17 posts

Posted 28 December 2006 - 11:51


Is there any way to find out silent install options for a MSI by peeking in to MSI Database or MSI Install log??? rolleyes.gif I just eager to know.........................

Thanks,
mayur

Dominik Oberlin

Dominik Oberlin
  • Full Members
  • 12 posts

Posted 28 December 2006 - 13:06

  • In verbose logfile you find a line called "Command Line:" (acquisition phase), which have
    informations for the commandline from msiexec.exe.
    ...
    Command Line: REBOOTPROMPT=S REBOOT=ReallySuppress CURRENTDIRECTORY=C:\TEST CLIENTUILEVEL=2 CLIENTPROCESSID=1212 %HOMEPATH=\Documents and Settings\oberlind %HOMEDRIVE=C: %HOMESHARE= MYDIR=C:\BLABLA

  • And the Property UILEVEL contains extended informations from the User Interface level...
CODE
INSTALLUILEVEL_NONE    2  Completely silent installation.
INSTALLUILEVEL_BASIC   3  Simple progress and error handling.
INSTALLUILEVEL_REDUCED 4  Authored UI, wizard dialogs suppressed.
INSTALLUILEVEL_FULL    5  Authored UI with wizards, progress,


mayur_bm

mayur_bm
  • Full Members
  • 17 posts

Posted 28 December 2006 - 13:31

Thanks for the information......................... rolleyes.gif