我使用下面的代码将本地应用的防火墙规则导出到.csv。
$Rules=(New-object –comObject HNetCfg.FwPolicy2).rules
$Rules | export-csv test.csv -NoTypeInformation
此脚本不会导出通过GPO应用的fw规则。如何将GPO应用规则导出以进行导出?
答案 0 :(得分:2)
在Win8 / Server2012及更高版本:
Get-NetFirewallRule -PolicyStore RSOP
在旧系统上,您可以解析gpresult
或RSOP xml。例如,对于入站规则:
$xmlpath = "C:\example.xml"
& gpresult.exe /x C:\example.xml
$xml = [xml](Get-Content $xmlpath)
($xml.DocumentElement.ComputerResults.ExtensionData.extension |
? {$_.type -like "*firewall*"}).inboundfirewallrules | Export-Csv test.csv -NoTypeInformation