mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-08-28 19:27:28 +00:00
13 lines
416 B
PowerShell
13 lines
416 B
PowerShell
function Remove-GPOZaurrOrphanedSysvolFolders {
|
|
[cmdletBinding(SupportsShouldProcess)]
|
|
param(
|
|
[int] $LimitProcessing = [int32]::MaxValue
|
|
)
|
|
Get-GPOZaurrSysvol | Where-Object {
|
|
if ($_.Status -eq 'Orphaned GPO') {
|
|
$_
|
|
}
|
|
} | Select-Object | Select-Object -First $LimitProcessing | ForEach-Object {
|
|
Remove-Item -Recurse -Force -LiteralPath $_.Path
|
|
}
|
|
} |