How can I create a single MSI installer file for many remote applications in Remote Desktop Services (RDS)?

Suppose I have 10 applications exposed via RDS. To make life easier I created MSI installer packages so users can "install" those applications. Currently I have 10 different MSI files which forces users to install 10 times. Is it possible to make all/some applications into a single MSI file?

(I don't control user machines so installing via GPO or other magic is out of the question).

link|improve this question
feedback

1 Answer

It's possible to chain multiple MSI packages so that they all install as one with Office 2003, so I'd guess that it's also generally possible with other apps. There's a KB article on it here which may give further useful info.

Failing that you could just provide a batch file that calls msiexec on the 10 different MSI packages. Run msiexec /? for more info on the various command-line parameters available.

link|improve this answer
thank you for the hint about office 2003 thing. Unfortunately I'm afraid I will not be able to use it just like that since my .msi files are available via web page. – Mikeon Nov 17 '09 at 8:32
feedback

Your Answer

 
or
required, but never shown