vote up 2 vote down star

I'm creating an installer msi file using the Windows Installer XML toolkit. When installing the created msi file, a shortcut placed under the ProgramMenuFolder folder results in a shortcut for the Administrator user only. How do I let the installer create a shortcut under the All Users profile, so that everyone on the machine has the shortcut?

flag

3 Answers

vote up 1 vote down check

Stuart Preston's blog has a good description of how to do this:

Installing a shortcut for "All Users"

link|flag
vote up 1 vote down

In the Package element, add an InstallScope attribute like this:

InstallScope='perMachine'
link|flag
vote up 0 vote down

Simple define ALLUSERS=1 to force a per-machine installation.

  <Property Id="ALLUSERS"><![CDATA[1]]></Property>
link|flag
You should use InstallScope='perMachine' instead – Shay Erlichmen Apr 30 at 20:43
Doesn't that just set the ALLUSERS property anyway? At least that's what is indicated in the documenation.. – sascha May 1 at 0:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.