且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在没有许可协议步骤的情况下创建引导程序应用程序

更新时间:2022-11-03 14:03:27

假设您正在使用 WiX 标准 Bootstrapper 应用程序,您当前的 BootstrapperApplicationRef 可能如下所示:

Assuming that you are using the WiX Standard Bootstrapper Application, your current BootstrapperApplicationRef might look like this:

<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />

WixStandardBootstrapperApplication 具有三种变体,如文档中所述.HyperlinkLicense 是最简单的.它在欢迎页面上有一个许可证链接,而不是许可证页面.它允许您为许可证指定一个空 URL,在这种情况下它不会显示链接.例如,

WixStandardBootstrapperApplication has three variants as explained in the docs. HyperlinkLicense is the simplest. It has a license link on the welcome page instead of a license page. It allows you to specify an empty URL for the license, in which case it won't display the link. For example,

<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
  <bal:WixStandardBootstrapperApplication 
    LicenseUrl=""
    xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" />
</BootstrapperApplicationRef>