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?
|
|
Stuart Preston's blog has a good description of how to do this: |
||
|
|
|
|
In the Package element, add an InstallScope attribute like this:
|
||
|
|
|
|
Simple define ALLUSERS=1 to force a per-machine installation.
|
||||
|
