Added Find-GPO WIP

This commit is contained in:
Przemyslaw Klys
2020-06-27 12:45:23 +02:00
parent 2286f0cb0b
commit 570b1cbc83
12 changed files with 368 additions and 62 deletions
+10
View File
@@ -0,0 +1,10 @@
Clear-Host
Import-Module "$PSScriptRoot\..\GPoZaurr.psd1" -Force
$Output = Get-GPOZaurrSysvol | ForEach-Object {
$Path = $_.Path
Get-ChildItem -Path $Path -ErrorAction SilentlyContinue -Recurse -ErrorVariable err -File | ForEach-Object {
Get-FileMetaData -File $_ -Signature -HashAlgorithm 'SHA256'
}
}
$Output | Format-Table