What is the simplest way to forcefully delete a directory and all its subdirectories in PowerShell? I am using PowerShell V2 in Windows 7.
I have learned from severa
I used:
rm -r folderToDelete
This works for me like a charm (I stole it from Ubuntu).