mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-07-26 11:49:17 +00:00
10 lines
349 B
PowerShell
10 lines
349 B
PowerShell
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 |