Wix为所有用户/每台计算机创建非公告的快捷方式


81

在WIX中,如何在allusers配置文件中创建一个非公告的快捷方式?到目前为止,我只能通过广告快捷方式来完成此操作。我更喜欢不公开的快捷方式,因为您可以转到快捷方式的属性并使用“查找目标”。

在教程中,我已经看到使用注册表值作为快捷方式的键路径。问题是他们使用HKCU作为根。当使用HKCU时,另一个用户卸载了该程序(因为已为所有用户安装了该程序),注册表项被留下。当我使用HKMU作为根目录时,出现ICE57错误,但是当另一个用户卸载程序时,密钥将被删除。我似乎被迫使用HKCU,尽管HKMU的行为似乎正确(每用户对所有用户)。

当我尝试创建非公告的快捷方式时,我遇到各种ICE错误,例如ICE38,ICE43或ICE57。我见过的大多数文章都建议“只是忽略冰错误”。必须有一种方法可以创建不公开的快捷方式,而不会产生ICE错误。

请发布示例代码以获取工作示例。

Answers:


113

不好意思回答我自己的问题。

最近,我偶然发现了有关DISABLEADVTSHORTCUTS属性的信息。我使用公告的快捷方式创建了一个安装,并将DISABLEADVTSHORTCUTS属性设置为1,这会生成非公告的快捷方式。这绕过了ICE43错误因为广告的快捷方式可以使用文件作为键所以。由于已设置DISABLEADVTSHORTCUTS,因此Windows Installer会将这些广告发布的快捷方式替换为常规快捷方式。

我将Package Element的InstallScope属性设置为“ perMachine”。这会将ALLUSERS属性设置为1。然后,ProgramMenuFolderDesktopFolder的值将解析为“所有用户”配置文件。

对于在ProgramMenuFolder下创建的文件夹,有一个RemoveFolder和RegistryValue元素。我看到的示例(ex1ex2)使用HKCU作为RegistryValue的根。我将此根目录更改为HKMU,这取决于ALLUSERS的值而解析为HKCU或HKLM。

简而言之,将DISABLEADVTSHORTCUTS设置为1时,您发布的快捷方式不会产生ICE错误,但是在安装后将转换为非发布的快捷方式。带有根HKMU的RegistryValue对于密钥路径来说是合适的,只要它不是非广告快捷方式的密钥路径即可。

<?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>

答案中的细节真的很不错。在浏览WiX文档和示例时,我发现这非常有帮助。谢谢!
戴夫

7
好答案。但是,假设我在一个单独的组件中有一个桌面快捷方式(因为我有条件地安装了它)。IIUC这样的快捷方式无法发布。如果即使使用DISABLEADVTSHORTCUTS尝试添加Advertise =“ yes”,我也会收到错误CNDL0035。您能看到一种使用HKMU注册表项制作此类快捷方式的方法吗?
marcin 2011年

9
如果您找到了一个好的解决方案,那么回答您自己的问题根本不是礼节,而且我非常感谢您所做的一切-并为启动提供了很好的答案。+1!
fzwo 2012年

不要将图标引用到可执行文件。图标被复制到特殊目录(Windows \ Installer \ {GUID})中,快捷方式将使用此位置的图标(即不是来自INSTALLDIR中的可执行文件),因此最好使用单独的图标文件。
德米特里·阿扎拉耶夫

非常感谢。我花了几个小时来解决这个问题。没有关于DISABLEADVTSHORTCUTS的线索。
杰森·休斯

8

尽管此帖子过时,但包含的信息非常有用,并且看起来仍然很活跃。我想指出的是,一般而言,您不需要为快捷方式设置虚拟注册表项!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>

请注意,这会将快捷方式与可执行文件放到一个组件中。如果这让您感到困扰,那么您可以使用虚拟注册表项(如非常详细地解释的可接受的自我回答)。


1
请记住将<Property Id =“ DISABLEADVTSHORTCUTS” Value =“ 1” />添加到Product元素
sartoris

@sartoris,这应该添加到答案中。没有它就行不通。
Alex Zhukovskiy

2

看看Alex Shevchuk撰写的《从MSI到WiX,第10部分-快捷方式》

或Rob Menching的博客文章如何创建卸载快捷方式(并通过所有ICE验证)。

基本上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>

9
您的示例使用“ HKCU”作为键路径。如果一个用户安装了该应用程序,而另一用户删除了该应用程序,则注册表项将保留在后面。发布的第一个链接使用HKCU作为注册表项。第二个使用文件作为密钥路径,这会导致ICE43和ICE57错误。
麦当劳2010年

1
注册表项,是的。但是不是快捷方式本身:)
saschabeaumont 2010年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.