This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -Version 3 | |
param ( | |
[string]$lognames | |
) | |
#reading security log requires elevated privileges so only read Application and System for now | |
[string[]]$logname = $("Application", "System" ) | |
if ($lognames) | |
{ |