在 Wix 中使用 FirewallException api 将设置应用到 Win7 中的所有网络配置文件
我制作的 wix 安装程序使用 FirewallException api 将软件包的某些组件注册到 Windows 防火墙,以尝试阻止防火墙弹出窗口。
似乎在Windows7中,它仅注册用户运行安装程序时当前处于活动状态的网络配置文件(即工作/家庭/私人)。当用户更改网络配置文件并运行我们的应用程序时,他们会看到防火墙弹出窗口。
我们可以使用防火墙例外将设置应用于所有网络配置文件吗?我当前使用的语法是:
<fire:FirewallException Id="XXXX" Name="Program Name" Scope="any" File="WixFileRef"/>
An installer with wix I've made uses the FirewallException api to register some components of the package with the Windows firewall, in order to try and prevent firewall popups.
It seems that in Windows7, it only registers with exception for the network profile (ie Work/Home/Private) that is currently active when the user runs the installer. When the user changes network profile, and runs our application, they are presented with firewall popups.
Can we use the firewall exception to apply the settings to all Network Profiles? The syntax I'm currently using is:
<fire:FirewallException Id="XXXX" Name="Program Name" Scope="any" File="WixFileRef"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码未通过,但您可以使用 Profile 属性控制使用的配置文件。它在 WiX v3.5 及更高版本中可用。
Your code didn't come through but you can control the profile(s) used using the Profile attribute. It's available in WiX v3.5 and later.