Skip to content

Instantly share code, notes, and snippets.

@AlexKasaku
Created August 21, 2015 10:08
Show Gist options
  • Save AlexKasaku/da82ab80d0cb3f782444 to your computer and use it in GitHub Desktop.
Save AlexKasaku/da82ab80d0cb3f782444 to your computer and use it in GitHub Desktop.
Removes empty folders
<#
.SYNOPSIS
Removes empty folders
#>
filter NoChildren {
if ($_.Children.Count -eq 0) {
$_
}
}
$itemsToRemove = Get-ChildItem -Recurse | Where TemplateName -eq "Redirect Folder" | NoChildren
foreach( $item in $itemsToRemove ) {
Write-Host $item.FullPath
$item | Remove-Item
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment