Merge pull request #18 from Thumbscrew/master

Bring dev up to date.
This commit is contained in:
James 2020-01-30 14:25:14 +00:00 committed by GitHub
commit 6f7c9dde2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

Binary file not shown.

View File

@ -27,3 +27,11 @@ Get Windows Firewall log on a remote computer using the Remote Registry service
```powershell
Get-PSFirewallLog -LogProfile Public -ComputerName MyRemoteComputer -Verbose
```
Get the last 100 events from the Domain profile of a remote machine, inferring the path using the local machine's path (doesn't use Remote Registry service):
```powershell
Get-PSFirewallLog -LogProfile Domain -ComputerName MyRemoteComputer -InferPath -Tail 100
```
Get the last 100 events from the Private profile firewall log and follow the log:
```powershell
Get-PSFirewallLog -LogProfile Private -Tail 100 -Wait
```