以编程方式修改 Windows Server 2008 R2 中的防火墙规则

发布于 2024-08-21 00:20:10 字数 92 浏览 7 评论 0原文

我希望能够以编程方式在 Windows Server 2008 R2 中启用、禁用和创建防火墙规则。 从 .Net/PowerShell 修改防火墙规则的对象模型是什么?

I want be able to programmatically enable, disable, create firewall rules in Windows Server 2008 R2.
What is the object model to modify the firewall rules from .Net/PowerShell?

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

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

发布评论

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

评论(2

深海里的那抹蓝 2024-08-28 00:20:10

可能有一组 WMI 类用于此目的,但我想指出您可以使用 PowerShell 中现有的命令行实用程序 netsh.exe。执行:

netsh firewall /?

查看其选项。

There is probably a WMI set of classes for this but I wanted to point out that you can use the existing command line utility netsh.exe from PowerShell. Execute:

netsh firewall /?

To see its options.

独自唱情﹋歌 2024-08-28 00:20:10

还有使用COM:

$fw=new-object -com hnetcfg.fwmgr

There's also using COM:

$fw=new-object -com hnetcfg.fwmgr
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文