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

SETUP.EXE : Silent installation?


2 replies to this topic

Giurcanu Daniel

Giurcanu Daniel
  • Members
  • 51 posts

Posted 29 August 2003 - 13:16

setup.exe /S /V"/x "C:\My Work\MSIPack.msi" /qn"

neither

setup.exe /S /V"/x PROD_GUID /qn"

aren't working

while

msiexec /x "C:\My Work\MSIPack.msi" /qn

and

msiexec /x PROD_GUID /qn

are working fine

any ideeas?

PROBLEM SOLVED
setup.exe always add /i parameter , so it cannot be used for silent repair or remove

Edited by Giurcanu Daniel, 29 August 2003 - 14:54.


Art Middlekauff

Art Middlekauff
  • Members
  • 14 posts

Posted 29 August 2003 - 21:20

To run a silent install with setup.exe just do the following:

Setup.exe /s /v"/qn"

As indicated in the online help.

Edited by Art Middlekauff, 29 August 2003 - 21:22.


Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 29 August 2003 - 22:37

Did you try:

setup.exe /S /V"REINSTALL=ALL /qn"

and

setup.exe /S /V"REMOVE=ALL /qn"