Add simple test case to run all repo EVTX files with DeepBlue.ps1

This commit is contained in:
Joshua Wright
2020-08-18 08:48:22 -04:00
parent 8cbb39a17d
commit 29daee42ce

2
t/runall.ps1 Normal file
View File

@ -0,0 +1,2 @@
Write-Host "Running DeepBlue.ps1 on all EVTX files to identify any syntax errors."
cd .. ; gci -path . -recurse -name "*.evtx" | % {.\DeepBlue.ps1 -File $_ | Out-Null }