我正在使用Wix 3.9和Wix-edit 0.7.5 / Notepad ++为我的应用程序创建MSI安装程序。我想在已安装的文件夹中创建卸载快捷方式。例如:
C:\MySoftware\Uninstall.lnk
我尝试了一些方法,但在所有情况下,当我通过该链接卸载软件时,程序文件夹C:\MySoftware
不会被删除。以其他方式卸载按预期工作。
首先,我尝试将其创建为<Directory>
标记内的Component。看起来有点hacky,因为我必须添加<CreateFolder>
:
<Directory Id="MYINSTALLDIR" Name="MySoftware">
<!-- my files... -->
<Component Id="ABC" Guid="PUT-GUID-HERE">
<CreateFolder/> <!-- have to add this -->
<Shortcut Id="UninstallProduct" Name="Uninstall MySoftware" Description="Uninstalls MySoftware" Target="[System64Folder]msiexec.exe" Arguments="/x [ProductCode]"/>
</Component>
</Directory>
<Feature Id="DefaultFeature" Title="Main Feature" Level="1">
<!-- some references... -->
<ComponentRef Id="ABC" />
</Feature>
我还尝试将<CreateFolder/>
替换为<RemoveFolder Id="MYINSTALLDIR" On="uninstall" />
,结果相同。
另一次尝试:
<DirectoryRef Id="ApplicationProgramsFolder">
<Component Id="StartMenuShortcuts" Guid="*">
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall" />
<RegistryValue Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Type="string" Value="" />
<Shortcut Id="UninstallProduct1" Name="Uninstall MySoftware" Description="Uninstalls MySoftware" Target="[System64Folder]msiexec.exe" Arguments="/x [ProductCode]"/>
<Shortcut Id="UninstallProduct2" Name="Uninstall MySoftware" Description="Uninstalls MySoftware" Target="[System64Folder]msiexec.exe" Arguments="/x [ProductCode]" Directory="MYINSTALLDIR" />
</Component>
</DirectoryRef>
此处,除了具有相同的结果外,我在构建时收到警告:file.wxs(31) : warning LGHT1076 : ICE57: Component 'StartMenuShortcuts' has both per-user and per-machine data with an HKCU Registry KeyPath.
。
如何创建可在不影响卸载行为的情况下使用的快捷方式?我不知道它是否有所作为,但我需要在没有管理员权限的情况下工作(我正在使用<Package ... InstallScope="perUser" InstallPrivileges="limited">
)。
我知道我可以创建一个.lnk文件并将其添加到项目中,但我不愿意,因为那时我不得不担心在每个项目上更新它的GUID。
答案 0 :(得分:4)
出现问题是因为您没有为msiexec设置工作目录,然后它将使用当前目录,引发错误2911(无法删除该文件夹)。
添加对WindowsFolder
的引用:
<Directory Id="MYINSTALLDIR" Name="MySoftware">
...
<Directory Id="WindowsFolder" Name="WindowsFolder" />
</Directory>
然后修改添加属性WorkingDirectory="WindowsFolder"
的快捷方式:
<Shortcut Id="UninstallProduct" Name="Uninstall MySoftware"
Description="Uninstalls MySoftware" Target="[System64Folder]msiexec.exe"
Arguments="/x [ProductCode]" WorkingDirectory="WindowsFolder" />