mirror of
https://github.com/wangdage12/Snap.Hutao.git
synced 2026-02-18 02:42:15 +08:00
修复KeyPath问题
This commit is contained in:
@@ -1,55 +1,79 @@
|
|||||||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
||||||
<Package Name="Snap.Hutao"
|
<Package
|
||||||
Manufacturer="Millennium Science Technology R-D Inst"
|
Name="Snap.Hutao"
|
||||||
Version="1.0.0.0"
|
Manufacturer="Millennium Science Technology R-D Inst"
|
||||||
UpgradeCode="121203be-60cb-408f-92cc-7080f6598e68"
|
Version="1.0.0.0"
|
||||||
Scope="perMachine">
|
UpgradeCode="121203be-60cb-408f-92cc-7080f6598e68"
|
||||||
|
Scope="perMachine">
|
||||||
|
|
||||||
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
||||||
<MediaTemplate EmbedCab="yes" />
|
<MediaTemplate EmbedCab="yes" />
|
||||||
|
|
||||||
<Feature Id="ProductFeature" Title="Snap.Hutao" Level="1">
|
<Feature Id="ProductFeature" Title="Snap.Hutao" Level="1">
|
||||||
<ComponentGroupRef Id="MainAppComponents" />
|
<ComponentGroupRef Id="MainAppComponents" />
|
||||||
<ComponentRef Id="ApplicationShortcut" />
|
|
||||||
<ComponentRef Id="DesktopShortcuts" />
|
|
||||||
</Feature>
|
|
||||||
</Package>
|
|
||||||
|
|
||||||
<Fragment>
|
<!-- 快捷方式组件 -->
|
||||||
<StandardDirectory Id="ProgramFiles64Folder">
|
<ComponentRef Id="ApplicationShortcut" />
|
||||||
<Directory Id="INSTALLFOLDER" Name="Snap.Hutao" />
|
<ComponentRef Id="DesktopShortcut" />
|
||||||
</StandardDirectory>
|
</Feature>
|
||||||
|
</Package>
|
||||||
|
|
||||||
<StandardDirectory Id="ProgramMenuFolder">
|
<!-- 安装目录 -->
|
||||||
<Directory Id="ApplicationProgramsFolder" Name="Snap Hutao" />
|
<Fragment>
|
||||||
</StandardDirectory>
|
<StandardDirectory Id="ProgramFiles64Folder">
|
||||||
|
<Directory Id="INSTALLFOLDER" Name="Snap.Hutao" />
|
||||||
|
</StandardDirectory>
|
||||||
|
|
||||||
<StandardDirectory Id="DesktopFolder" />
|
<StandardDirectory Id="ProgramMenuFolder">
|
||||||
</Fragment>
|
<Directory Id="ApplicationProgramsFolder" Name="Snap Hutao" />
|
||||||
|
</StandardDirectory>
|
||||||
|
|
||||||
<Fragment>
|
<StandardDirectory Id="DesktopFolder" />
|
||||||
<Component Id="DesktopShortcuts" Directory="DesktopFolder" Guid="*">
|
</Fragment>
|
||||||
<Shortcut Id="DesktopShortcut_Normal"
|
|
||||||
Name="Snap Hutao"
|
|
||||||
Description="Snap Hutao Client"
|
|
||||||
Target="[INSTALLFOLDER]Snap.Hutao.exe"
|
|
||||||
WorkingDirectory="INSTALLFOLDER" />
|
|
||||||
|
|
||||||
<RegistryValue Root="HKLM" Key="Software\Snap.Hutao" Name="DesktopShortcutInstalled" Type="integer" Value="1" KeyPath="yes" />
|
<!-- 桌面快捷方式 -->
|
||||||
</Component>
|
<Fragment>
|
||||||
</Fragment>
|
<Component Id="DesktopShortcut" Directory="DesktopFolder" Guid="*">
|
||||||
|
|
||||||
<Fragment>
|
<Shortcut
|
||||||
<Component Id="ApplicationShortcut" Directory="ApplicationProgramsFolder" Guid="*">
|
Id="DesktopShortcut_Normal"
|
||||||
<Shortcut Id="ApplicationStartMenuShortcut"
|
Name="Snap Hutao"
|
||||||
Name="Snap Hutao"
|
Description="Snap Hutao Client"
|
||||||
Description="Snap Hutao Client"
|
Target="[INSTALLFOLDER]Snap.Hutao.exe"
|
||||||
Target="[INSTALLFOLDER]Snap.Hutao.exe"
|
WorkingDirectory="INSTALLFOLDER" />
|
||||||
WorkingDirectory="INSTALLFOLDER" />
|
|
||||||
|
|
||||||
<RemoveFolder Id="CleanUpShortCut" Directory="ApplicationProgramsFolder" On="uninstall" />
|
<!-- KeyPath 必须是 HKCU,因为快捷方式安装到用户目录 -->
|
||||||
|
<RegistryValue
|
||||||
|
Root="HKCU"
|
||||||
|
Key="Software\Snap.Hutao"
|
||||||
|
Name="DesktopShortcutInstalled"
|
||||||
|
Type="integer"
|
||||||
|
Value="1"
|
||||||
|
KeyPath="yes" />
|
||||||
|
</Component>
|
||||||
|
</Fragment>
|
||||||
|
|
||||||
<RegistryValue Root="HKLM" Key="Software\Snap.Hutao" Name="StartMenuShortcutInstalled" Type="integer" Value="1" KeyPath="yes" />
|
<!-- 开始菜单快捷方式 -->
|
||||||
</Component>
|
<Fragment>
|
||||||
</Fragment>
|
<Component Id="ApplicationShortcut" Directory="ApplicationProgramsFolder" Guid="*">
|
||||||
|
|
||||||
|
<Shortcut
|
||||||
|
Id="ApplicationStartMenuShortcut"
|
||||||
|
Name="Snap Hutao"
|
||||||
|
Description="Snap Hutao Client"
|
||||||
|
Target="[INSTALLFOLDER]Snap.Hutao.exe"
|
||||||
|
WorkingDirectory="INSTALLFOLDER" />
|
||||||
|
|
||||||
|
<RemoveFolder Id="CleanUpShortCut" Directory="ApplicationProgramsFolder" On="uninstall" />
|
||||||
|
|
||||||
|
<!-- KeyPath 依然必须改为 HKCU -->
|
||||||
|
<RegistryValue
|
||||||
|
Root="HKCU"
|
||||||
|
Key="Software\Snap.Hutao"
|
||||||
|
Name="StartMenuShortcutInstalled"
|
||||||
|
Type="integer"
|
||||||
|
Value="1"
|
||||||
|
KeyPath="yes" />
|
||||||
|
</Component>
|
||||||
|
</Fragment>
|
||||||
</Wix>
|
</Wix>
|
||||||
|
|||||||
Reference in New Issue
Block a user