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

Hello, everyone!


2 replies to this topic

BlueTulip

BlueTulip
  • Members
  • 11 posts

Posted 11 September 2006 - 04:06

I've some MSI packages, so i develop a application to install them
automatically,
So my question is how can i change some properties in MSI package
in runtime,
i mean, for example:
ths msi package have define the target installation location
is C:\Program Files\....,

I dont want modify the MSI itself, but I want to intall it to other
places, like D:\SomeFolder.

how can i do this?
thanks!

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 11 September 2006 - 08:12

Did you try setting the property on the command line, like:
msiexec.exe /i your.msi TARGETDIR="C:\Program Files\...."

Alternatively you could create a transform (.mst)

P.S.: "Hello, everyone!" is not a very useful topic title. I almost deleted your post because I thought it was spam.

BlueTulip

BlueTulip
  • Members
  • 11 posts

Posted 13 September 2006 - 04:01

Sorry, Sir:)
I will do a corect title next time.

I will try your suggestion.
I am not familiar with transform, i must have a research about it.