在WIX中,如何在allusers配置文件中创建非广告的快捷方式?到目前为止,我只能通过广告快捷方式实现这一目标。我更喜欢非广告的快捷方式,因为您可以转到快捷方式的属性并使用“查找目标”。
在我看过的教程中,使用注册表值作为快捷方式的keypath。问题是他们使用HKCU作为根。使用HKCU时,另一个用户卸载程序(因为它是为所有用户安装的),注册表项会被遗忘。当我使用HKMU作为根时,我收到ICE57错误,但当另一个用户卸载该程序时,该密钥将被删除。尽管HKMU似乎表现正常(每用户对所有用户),但我似乎被推向使用HKCU。
当我尝试创建未广告的快捷方式时,我会收到各种ICE错误,例如ICE38,ICE43或ICE 57.我见过的大多数文章建议“只是忽略冰错误”。必须有一种方法来创建未公布的快捷方式,而不会产生ICE错误。
请发布示例代码以获取工作示例。
答案 0 :(得分:105)
对不起,如果回答我自己的问题是不礼貌的话。
最近我偶然发现了DISABLEADVTSHORTCUTS property的信息。我创建了一个带有广告快捷方式的安装,并将DISABLEADVTSHORTCUTS属性设置为1,从而生成了未公布的快捷方式。这会绕过ICE43 errors,因为广告的快捷方式可以使用文件作为密钥路径。由于已设置DISABLEADVTSHORTCUTS,Windows Installer将使用常规快捷方式替换这些广告快捷方式。
我将Package Element's InstallScope属性设置为“perMachine”。这会将ALLUSERS属性设置为1. ProgramMenuFolder和DesktopFolder的值将解析为所有用户配置文件。
对于在ProgramMenuFolder下创建的文件夹,有一个RemoveFolder和RegistryValue元素。我见过的例子(ex1,ex2)使用HKCU作为RegistryValue的根。我将此根更改为HKMU,根据ALLUSERS的值,该根解析为HKCU或HKLM。
简而言之,当DISABLEADVTSHORTCUTS设置为1时,您公布的快捷方式不会产生ICE错误,但会在安装时转换为未公布的快捷方式。具有根HKMU的RegistryValue适用于KeyPath,只要它不是非通告快捷方式的密钥路径。
<?xml version="1.0" encoding="utf-8"?>
<!-- This example is based on SampleFirst by Gábor DEÁK JAHN, Tramontána:
http://www.tramontana.co.hu/wix/lesson1.php#1.3
Original SampleFirst:
http://www.tramontana.co.hu/wix/download.php?file=samples/samplefirst.zip&type=application/zip -->
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Name="Foobar 1.0" Id="YOURGUID-21F1-4026-ABD2-7CC7F8CE4D18" UpgradeCode="YOURGUID-AFA4-46C6-94AA-EEE3D104F903" Language="1033" Codepage="1252" Version="1.0.0" Manufacturer="Acme Ltd.">
<Package Id="*" Keywords="Installer" Description="Acme's Foobar 1.0 Installer" Comments="Foobar is a registered trademark of Acme Ltd." Manufacturer="Acme Ltd." InstallerVersion="100" Languages="1033" Compressed="yes" SummaryCodepage="1252" InstallScope="perMachine" />
<Media Id="1" Cabinet="Sample.cab" EmbedCab="yes" DiskPrompt="CD-ROM #1" />
<Property Id="DiskPrompt" Value="Acme's Foobar 1.0 Installation [1]" />
<Property Id="DISABLEADVTSHORTCUTS" Value="1" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder" Name="PFiles">
<Directory Id="Acme" Name="Acme">
<Directory Id="INSTALLDIR" Name="Foobar 1.0">
<Component Id="MainExecutable" Guid="YOURGUID-3E4F-47A2-86F1-F3162E9C4798">
<File Id="FoobarEXE" Name="FoobarAppl10.exe" DiskId="1" Source="FoobarAppl10.exe" KeyPath="yes">
<Shortcut Id="startmenuFoobar10" Directory="ProgramMenuDir" Name="Foobar 1.0" WorkingDirectory="INSTALLDIR" Icon="Foobar10.exe" IconIndex="0" Advertise="yes" />
<Shortcut Id="desktopFoobar10" Directory="DesktopFolder" Name="Foobar 1.0" WorkingDirectory="INSTALLDIR" Icon="Foobar10.exe" IconIndex="0" Advertise="yes" />
</File>
</Component>
<Component Id="HelperLibrary" Guid="YOURGUID-C7DA-4C02-A2F0-A6E089FC0CF3">
<File Id="HelperDLL" Name="Helper.dll" DiskId="1" Source="Helper.dll" KeyPath="yes" />
</Component>
<Component Id="Manual" Guid="YOURGUID-FF92-4BF4-A322-819A3B2265A0">
<File Id="Manual" Name="Manual.pdf" DiskId="1" Source="Manual.pdf" KeyPath="yes">
<Shortcut Id="startmenuManual" Directory="ProgramMenuDir" Name="Instruction Manual" Advertise="yes" />
</File>
</Component>
</Directory>
</Directory>
</Directory>
<Directory Id="ProgramMenuFolder" Name="Programs">
<Directory Id="ProgramMenuDir" Name="Foobar 1.0">
<Component Id="ProgramMenuDir" Guid="YOURGUID-D1C2-4D76-BA46-C6FA79862E77">
<RemoveFolder Id="ProgramMenuDir" On="uninstall" />
<RegistryValue Root="HKMU" Key="Software\[Manufacturer]\[ProductName]" Type="string" Value="" KeyPath="yes" />
</Component>
</Directory>
</Directory>
<Directory Id="DesktopFolder" Name="Desktop" />
</Directory>
<Feature Id="Complete" Level="1">
<ComponentRef Id="MainExecutable" />
<ComponentRef Id="HelperLibrary" />
<ComponentRef Id="Manual" />
<ComponentRef Id="ProgramMenuDir" />
</Feature>
<Icon Id="Foobar10.exe" SourceFile="FoobarAppl10.exe" />
</Product>
</Wix>
答案 1 :(得分:5)
虽然这篇文章相当陈旧但它包含非常有用的信息并且看起来仍然活跃。我想指出,一般来说,您的快捷方式不需要虚拟注册表项! AFAIK这是WiX教程,不是MSI或认证要求。这是一个没有reg键的例子:
<Fragment Id="Folders">
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="MyApp">
</Directory>
</Directory>
<Directory Id="ProgramMenuFolder">
<Directory Id="MyAppStartMenuDir" Name="MyApp"/>
</Directory>
</Directory>
</Fragment>
<Fragment Id="Components">
<Component Id="MyAppComp" Directory="INSTALLFOLDER" ...>
<!--The advertise flag below is to bypass ICE errors in WiX, the actual shortcut will not be advertises if those are disabled globally with DISABLEADVTSHORTCUTS-->
<File ..." KeyPath="yes">
<Shortcut Id="MyAppStartMenuLink" Directory="MyAppStartMenuDir" Advertise="yes" ... />
</File>
<RemoveFolder Id="StartMenuDirRemoved" Directory="MyAppStartMenuDir" On="uninstall" />
</Component>
</Fragment>
请注意,这会将您的快捷方式与可执行文件放在一个组件中。如果这困扰你,那么使用虚拟注册表项(如在很好解释接受的自我回答中)。
答案 2 :(得分:2)
请看Alex Shevchuk的From MSI to WiX, Part 10 - Shortcuts。
或Rob Menching的博客文章How to create an uninstall shortcut (and pass all the ICE validation).
基本上ICE57比较烦人......但这是我用于桌面快捷方式的(似乎工作)代码:)
<Component Id="DesktopShortcut" Directory="APPLICATIONFOLDER" Guid="*">
<RegistryValue Id="RegShortcutDesktop" Root="HKCU" Key="SOFTWARE\My App\1.0\settings" Name="DesktopSC" Value="1" Type="integer" KeyPath="yes" />
<Shortcut Id="desktopSc" Target="[APPLICATIONFOLDER]MyApp.exe" Directory="DesktopFolder" Name="My Applications" Icon="myapp.ico" IconIndex="0" WorkingDirectory="APPLICATIONFOLDER" Advertise="no"/>
<RemoveFolder Id="RemoveShortcutFolder" On="uninstall" />
<Condition>DT_SHORTCUT=1</Condition>
</Component>