PSWinFW/README.md

37 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

2019-11-01 08:20:21 +00:00
# **PSWinFW (beta)**
**Note: Module is WIP. Testing is done in a domain environment (not sure how it will fair on standalone machines). Pull Requests welcome.**
## **Description**
A powershell module for retrieving Windows Firewall logs and displaying them in a nicer, more useful format.
## **Installation**
```
git clone https://github.com/Thumbscrew/PSWinFW.git
2019-11-06 15:34:42 +00:00
Import-Module PSWinFW
2019-11-01 08:20:21 +00:00
```
## **Example Usage**
Get last 1000 Windows Firewall log lines at a specific path:
```powershell
Get-PSFirewallLog -Path C:\Windows\system32\logfiles\firewall\pfirewall.log -Tail 1000
```
Get Windows Firewall log by specifying the log directory and filename separately:
```powershell
Get-PSFirewallLog -LogDirectory C:\Windows\system32\logfiles\firewall\ -LogFileName domainfw.log
```
Get Windows Firewall log by retrieving the path automatically from the registry on the local machine:
```powershell
Get-PSFirewallLog -LogProfile Domain
```
Get Windows Firewall log on a remote computer using the Remote Registry service to get the log path:
```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
2019-11-01 08:20:21 +00:00
```