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

Multiple property value input in cmdline arguments


2 replies to this topic

cendy

cendy
  • Full Members
  • 4 posts

Posted 10 March 2009 - 13:41

Hi,

How can we input multiple property values for an MSI while invoking via command line with silent mode option.



KathyMorey

KathyMorey
  • Full Members
  • 111 posts

Posted 11 March 2009 - 14:04

MyProduct.msi PROP1=value1 PROP2=value2 PROP3=value3 /q

or

C:\Windows\system32\msiexec.exe /i"MyPRoduct.msi" PROP1=value1 PROP2=value2 PROP3=value3 /q
Kathy Morey
Synergy Software Engineer
ProfitStars, a Jack Henry Company
kmorey@profitstars.com

cendy

cendy
  • Full Members
  • 4 posts

Posted 12 March 2009 - 05:53

Thanks Kathy