Is there a way to do this? I have a folder structure as such:
A/
Folder/
B/
Folder/
C/
Folder/
D/
Folder/
And I want to delete all of the "Folder/"s, along with all of their contents. My first guess was
rmdir /S /Q *\Folder
but received an error on the *. This has come up a few times in the past days, so I figured I'd get the more efficient way than going into each folder, because that wasn't fun.