AndiBellstedt / NPSLogFile

Module for interpreting NPS/IAS Logfiles in PowerShell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

NPSLogFile - Getting insights from network policy services

Plattform Information
PowerShell gallery PowerShell Gallery PowerShell Gallery PowerShell Gallery
GitHub GitHub release GitHub
GitHub issues
GitHub last commit (branch)
GitHub last commit (branch)

Description

A PowerShell module for parsing nps/ias log files.

Basically, the module only contains only one command:

Get-NPSLog

This command takes single logfile, as well as Pipelineinput from Get-ChildItem (dir), parse trough the files and put out records as well formed objects.

Usage

Basically, the intended usage is a construct of

dir *logfolder* | Get-NPSLog | Export-CSV

or somthing like

$logRecords = dir *logfolder* | Get-NPSLog
$logRecords | ft
$logRecords | ogv
$logRecords | select-object * | Out-GridView

Installation

Install the module from the PowerShell Gallery (systemwide):

Install-Module NPSLogFile

or install it only for your user:

Install-Module NPSLogFile -Scope CurrentUser

Notes

All cmdlets are build with

  • powershell regular verbs
  • pipeling availabilties
  • verbose and debug channel logging

About

Module for interpreting NPS/IAS Logfiles in PowerShell

License:MIT License


Languages

Language:PowerShell 100.0%Language:C# 0.0%