Files
powershell/Dennis_Scripts/Rejsekort.psm1
2023-03-09 09:06:25 +01:00

18 lines
378 B
PowerShell

function Search-CardClosureLogs {
[cmdletbinding()]
param(
[string]$Pattern
)
1..2 | % { Get-Item "\\rejk-p-bcm00$_\d-drive\ifsbosystem\log\cardclosure*" } | Select-String -Pattern $Pattern
}
function Get-CardClosureLogs {
[cmdletbinding()]
param(
)
1..2 | % { Get-Item "\\rejk-p-bcm00$_\d-drive\ifsbosystem\log\cardclosure*" }
}