How/Where do I run an mst (transform) file

I’ve tried running this from the run box and I get an “incorrect command line parameters” error:

msiexec /T “Lotus Notes 6.msi” /qn TRANSFORMS=“CreateTransformFile.mst”

How do I run this?

Background info - I’ve been given a task to see if I can do a network install for Lotus Notes. I’m creating a transform file so the users personal files will be on their desktop. All other Lotus Notes files should be on the network drive though. I’m not even sure if I’m going to be able to accomplish this task (I’m running across so many issues).

Help please :expressionless:

Subject: How/Where do I run an mst (transform) file…

See the help for lots more information: http://www-12.lotus.com/ldd/doc/domino_notes/Rnext/help6_admin.nsf/0/fe6415ece18b00ee85256c1d00391c3e?OpenDocument

To run a transform, using Technical documentation | Microsoft Learn as a guide, your command line should look something like this:

msiexec /i “Lotus Notes 6.msi” /qn TRANSFORMS=“CreateTransformFile.mst”

Assuming you’ve already made the transform using the IS Tuner for Lotus Notes, etc.

To do a admin install, where the program files etc, are on a network drive but the data files, etc are locally installed you would first need to made the admin image on the network. You will be prompted for a network location to install the files too.

msiexe /i “Lotus Notes 6.msi” /a

Then the clients would run the installer with this command line to install from the admin image on the network and invoke your tranform:

msiexec /i “Lotus Notes 6.msi” /qn TRANSFORMS=“CreateTransformFile.mst”

Subject: RE: How/Where do I run an mst (transform) file…

Thank you for responding!