Updated psd to version 0.3. Updated README.

This commit is contained in:
James 2019-11-29 11:46:44 +00:00
parent a57e5ef79a
commit 1a07e1750e
2 changed files with 4 additions and 0 deletions

Binary file not shown.

View File

@ -26,4 +26,8 @@ Get-PSFirewallLog -LogProfile Domain
Get Windows Firewall log on a remote computer using the Remote Registry service to get the log path: Get Windows Firewall log on a remote computer using the Remote Registry service to get the log path:
```powershell ```powershell
Get-PSFirewallLog -LogProfile Public -ComputerName MyRemoteComputer -Verbose Get-PSFirewallLog -LogProfile Public -ComputerName MyRemoteComputer -Verbose
```
Get the last 100 events from the Private profile firewall log and follow the log:
```powershell
Get-PSFirewallLog -LogProfile Private -Tail 100 -Wait
``` ```