2 lines
196 B
PowerShell
2 lines
196 B
PowerShell
$s = 1..4 | % { get-item \\rejk-p-app00$_\d-drive\ifsbosystem\log\*.* } | where { $_.lastwritetime -gt (Get-Date).AddDays(-4) } | Select-String -Pattern 'InsertBlackListCard.*'
|
|
$s | Out-GridView |