powershell升级防火墙
时间: 2023-07-29 07:08:17 浏览: 161
在 PowerShell 中,可以使用以下命令升级防火墙:
1. 升级 Windows 防火墙策略:
```powershell
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled True
```
上述命令将启用防火墙的 Domain、Public 和 Private 模式。
2. 开启特定端口:
```powershell
New-NetFirewallRule -DisplayName "Allow TCP Port 80" -Direction Inbound -Protocol TCP -LocalPort 80 -Action Allow
```
上述命令将允许传入的 TCP 流量通过端口80。
3. 允许特定应用程序:
```powershell
New-NetFirewallRule -DisplayName "Allow My Application" -Direction Inbound -Program "C:\Path\To\MyApplication.exe" -Action Allow
```
上述命令将允许特定应用程序通过防火墙。
请注意,对于更高级的防火墙配置和规则,请参考 Windows PowerShell 防火墙模块的文档。使用这些命令时,请确保以管理员权限运行 PowerShell。
阅读全文