Delete All Files and Folders Under a Folder

Very simple to do with Powershell, Open a powershell command prompt and type:

Remove-Item c:\DirYouWantToDelete\* -recurse -force

Share