使用WiX安装后是否可以提示重启机器?

发布于 2024-08-15 02:47:08 字数 26 浏览 5 评论 0原文

使用WiX安装后是否可以提示重启机器?

Is it possible to prompt for restarting the machine after installation using WiX?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

窗影残 2024-08-22 02:47:08
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>

    <Product
        Name = 'Sample App'
        Id = 'PRODUCT-GUID-HERE'
        UpgradeCode = 'UPGRADE-GUID-HERE'
        Language = '1033'
        Version = 'YOUR-APP-VERSION-HERE'
        Manufacturer = 'YOU!'>

        <InstallExecuteSequence>
            <ScheduleReboot After="InstallFinalize"/>
        </InstallExecuteSequence>
    </Product>
</Wix>

我想我明白了。

<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>

    <Product
        Name = 'Sample App'
        Id = 'PRODUCT-GUID-HERE'
        UpgradeCode = 'UPGRADE-GUID-HERE'
        Language = '1033'
        Version = 'YOUR-APP-VERSION-HERE'
        Manufacturer = 'YOU!'>

        <InstallExecuteSequence>
            <ScheduleReboot After="InstallFinalize"/>
        </InstallExecuteSequence>
    </Product>
</Wix>

I think I got it.

旧瑾黎汐 2024-08-22 02:47:08

是的。有关 REBOOT,请参阅文档 Windows Installer 中的 属性。

IE:

<Property Id="REBOOT"><![CDATA[Force]]></Property>

Yes. See the documentation for the REBOOT property in Windows Installer.

i.e.:

<Property Id="REBOOT"><![CDATA[Force]]></Property>
末骤雨初歇 2024-08-22 02:47:08

使用安装程序的 Product.wxs 文件中 WiX 的 REBOOT 属性来获取重新启动提示。语法是:

<Property Id="REBOOT" Value="Force"></Property>

Use the REBOOT property of WiX in the Product.wxs file of your setup to get a restart prompt. The syntax is:

<Property Id="REBOOT" Value="Force"></Property>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文