Is there a way to change the product code and name of msi (Project Setup) through a parameter something like TARGET DIR?
I need to install multiple version (DEV, QA, Stg and Prd) in same machine. So i run my msi in commandline.
C:\Installer\client.msi /qb /l* log.txt TargetDir="C:\Test\DEV" ProductCode={GUID1}" C:\Installer\client.msi /qb /l* log.txt TargetDir="C:\Test\QA" ProductCode={GUID2}" C:\Installer\client.msi /qb /l* log.txt TargetDir="C:\Test\STG" ProductCode={GUID3}" C:\Installer\client.msi /qb /l* log.txt TargetDir="C:\Test\PRD" ProductCode={GUID4}"
Current Problem:
Commands above are not working.