Last active
November 21, 2017 12:40
-
-
Save sub314xxl/2f4eb5ea75befc4aeaa3529f83358a6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Path = "C:\123\" # Путь к корневому каталогу с подкаталогами сканирования, которые нельзя удалять | |
$Dirs = Get-ChildItem -Path $Path # Занесение списка неудаляемых каталогов в массив для дальнейшей обработки | |
ForEach ($Dir in $Dirs) {$SubDirs = Get-ChildItem $Dir.PSPath | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue} # Удаление содержимого неудаляемых каталогов методом перебора всех каталогов из массива |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment