Search
 
SCRIPT & CODE EXAMPLE
 

POWERSHELL

powershell display firewall rules name

Get-NetFirewallRule -Direction OutBound -Action Block -Enable True |
Format-Table -Property Name,
DisplayName,
DisplayGroup,
@{Name='Protocol';Expression={($PSItem | Get-NetFirewallPortFilter).Protocol}},
@{Name='LocalPort';Expression={($PSItem | Get-NetFirewallPortFilter).LocalPort}},
@{Name='RemotePort';Expression={($PSItem | Get-NetFirewallPortFilter).RemotePort}},
@{Name='RemoteAddress';Expression={($PSItem | Get-NetFirewallAddressFilter).RemoteAddress}},
Enabled,
Profile,
Direction
Comment

PREVIOUS NEXT
Code Example
Powershell :: Take ownership of a folder 
Powershell :: powershell -executionpolicy bypass -file 
Powershell :: powershell replace character in string 
Powershell :: How to download jira attachments using curl 
Gdscript :: godot get global position 3 
Gdscript :: godot 2d set position to mouse 
Clojure :: how to make a range clojure 
Clojure :: folding at home linuxserver.io 
Lisp :: elisp return type 
Assembly :: using shape property in flutter for circular corner 
Assembly :: vba hello world 
Assembly :: ARM assembly divide by 2 
Assembly :: import svg in google slides 
Assembly :: links in markdown 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: js on page ready 
Javascript :: open ilnk target js 
Javascript :: refresh window js 
Javascript :: jquery accept only excel file 
Javascript :: check if a variable is undefined jquery 
Javascript :: media query js 
Javascript :: change input placeholder text jquery 
Javascript :: get current url js 
Javascript :: convert to objectid mongoose 
Javascript :: javascript async delay 
Javascript :: javascript refresh page every 30 seconds 
Javascript :: how to change a css variable with javascript 
Javascript :: hide header react navigation 
Javascript :: listing dir by nodejs 
Javascript :: javascript celcius to farenheit 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =