The following commands will allow you to clear the contents of a folder, in this case the C:\Users folder, and exclude those folders you do not wish to delete:
$dirs – Get-ChildItem C:\Users -Exclude Public,Default,Administrator,”All Users”,”Default User”
$dirs | % {rd $_ -Recurse -Force}
This could be usedto clean up Remote Desktop Severs or Cirtix Servers
No comments yet... Be the first to leave a reply!