Skip to content

Instantly share code, notes, and snippets.

@sub314xxl
Last active November 21, 2017 12:40
Show Gist options
  • Save sub314xxl/2f4eb5ea75befc4aeaa3529f83358a6b to your computer and use it in GitHub Desktop.
Save sub314xxl/2f4eb5ea75befc4aeaa3529f83358a6b to your computer and use it in GitHub Desktop.
$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