-1

我可以在 wix 的 setup 项目中编写注册表项和值,代码如下:

<RegistryKey Id="WinApp" Root="HKLM" Key="Software\App\[ProductName]" Action="createAndRemoveOnUninstall" >
      <RegistryValue Type="string" Name="InstallName" Value="[ProductName]" Action="write" KeyPath="yes"></RegistryValue>
    </RegistryKey>

我该如何在引导程序项目中做?

4

1 回答 1

7

Bundles不要修改机器状态。注册表项应放置在链接包之一中,以作为安装事务的一部分。

于 2013-04-26T04:01:31.233 回答