The really important thing about our firewall is the rules that are configured. function get-rule {
[ CmdletBinding ( ) ]
param ( )
BEGIN { } #begin
PROCESS {
$fw = New-Object -ComObject HNetCfg.FwPolicy2
$fw . Rules |
foreach { … Read the full text.