我正在尝试使用 Wix 3.6 为所有用户创建快捷方式。我的 InstallScope perMachine , InstallPriviledges 提升。我建立这个代码确定。它运行正常。这是否为所有用户或仅为当前用户生成快捷方式,我需要更改哪些内容才能为所有用户创建快捷方式?
<DirectoryRef Id="DesktopFolder">
<Component Id="ApplicationDesktopShortcut" Guid="*">
<Shortcut Id="MyClient_DesktopShortcut" Name="My Client"
Description="My Client" Target="[INSTALLFOLDER]MyClient.exe"
WokingDirectory="INSTALLFOLDER" />
<RegistryValue Root="HKCU" Key="Software\MyServices\My Client\DesktopShortcut"
Name="installed" Type="integer" Value="1" KeyPath="yes" />
</Component>
</DirectoryRef>
由于 杰森