我使用Wix 3.11构建了一个简单的MSI安装程序。它包括一个EXE和一个快捷方式,但快捷方式永远不会出现在桌面上。我没有错误地构建MSI,否则安装得很好,并且MSI日志文件中没有错误。我用Orca查看了MSI,我在他们的表中看到了快捷方式和桌面目录。思考?我已经尝试将ALLUSERS设置为1也无济于事。这是我的wxs文件:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" Name="Imaginary Product" Language="1033"
Version="1.2.3.4" Manufacturer="Company" UpgradeCode="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx">
<Package Id="*" InstallerVersion='300' Compressed='yes'/>
<Media Id="1" Cabinet="ImaginaryProduct.cab" EmbedCab="yes"/>
<?if $(sys.BUILDARCH)="x64" ?>
<?define Win64 = "yes" ?>
<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
<?else ?>
<?define Win64 = "no" ?>
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
<?endif ?>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="DesktopFolder" SourceName="Desktop">
<Component Id="MainExecutableShortcut" Guid="{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}">
<Shortcut Id="ImaginaryUIEXEShortcut" Name="Imaginary UI" Description="Runs Imaginary UI" Target="ImaginaryUI.exe" WorkingDirectory="ProductProgramFilesFolder"/>
<RemoveFolder Id="RemoveDesktopFolder" Directory="DesktopFolder" On="uninstall"/>
<RegistryValue Root="HKCU" Key="Software\Microsoft\ImaginaryUI" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
</Component>
</Directory>
<Directory Id="$(var.PlatformProgramFilesFolder)">
<Directory Id="ManufacturerProgramFilesFolder" Name="Company">
<Directory Id="ProductProgramFilesFolder" Name="Imaginary Product">
<Component Id="MainExecutable" Guid="{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}">
<File Id="ImaginaryUIEXE" Name="ImaginaryUI.exe" Vital="yes" Source=".\bin\$(var.Configuration)\ImaginaryUI.exe" KeyPath="yes"/>
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<Feature Id='MainApplication' Level='1'>
<ComponentRef Id="MainExecutable" Primary="yes"/>
<ComponentRef Id="MainExecutableShortcut" Primary="yes"/>
</Feature>
</Product>
</Wix>
更新:当快捷方式未指定和图标时,我在安装程序日志中看到了这一点:
Action start 16:27:50: CreateShortcuts.
MSI (s) (08:34) [16:27:50:522]: Note: 1: 2205 2: 3: Icon
MSI (s) (08:34) [16:27:50:522]: Note: 1: 2228 2: 3: Icon 4: SELECT `Name`, `Data` FROM `Icon`
MSI (s) (08:34) [16:27:50:522]: Note: 1: 2205 2: 3: MsiShortcutProperty
MSI (s) (08:34) [16:27:50:523]: Note: 1: 2205 2: 3: MsiShortcutProperty
Action ended 16:27:50: CreateShortcuts. Return value 1.
当我指定一个时,我看得更少:
MSI (s) (14:D0) [16:34:59:527]: Doing action: CreateShortcuts
MSI (s) (14:D0) [16:34:59:527]: Note: 1: 2205 2: 3: ActionText
Action start 16:34:59: CreateShortcuts.
MSI (s) (14:D0) [16:34:59:528]: Note: 1: 2205 2: 3: MsiShortcutProperty
MSI (s) (14:D0) [16:34:59:528]: Note: 1: 2205 2: 3: MsiShortcutProperty
Action ended 16:34:59: CreateShortcuts. Return value 1.
所以,没有失败的迹象。图标刚进入以太。
答案 0 :(得分:0)
我不确定这是否是您的问题,但要使用桌面文件夹,您只需将其定义为
<RemoveFolder Id="RemoveDesktopFolder" Directory="DesktopFolder" On="uninstall"/>
我认为你实际上是将快捷方式放在“C:\ Desktop \”中(假设TARGETDIR是C :)。所有System Folder Properties都应以相同的方式定义。
另外,从组件定义
中删除它.list .item-radio .radio-icon {
background-color: rgb(233, 233, 241);
background-image: url(http://i.imgur.com/lXzJ1eB.png);
color: white;
}
您不想删除Desktop文件夹,它不是您在安装中创建的内容,也不是您拥有的内容。此外,如果该文件夹中存在任何其他内容,则RemoveFolder将不会执行任何操作,并且基本上每个人的桌面文件夹中至少都有一个回收站,因此它永远不会执行任何操作。
我不确定为什么RemoveFolder用于其他快捷方式定义,例如startmenu。这可能是由于Windows安装程序如何工作,只有当包含Files的组件存在时才隐式删除文件夹。
答案 1 :(得分:0)
我很确定 Target 必须是 ID,而不是文件名。所以改变
Target="ImaginaryUI.exe"
到
Target="[#ImaginaryUIEXE]"