Deleting Multiple Folders

  • Thread starter Thread starter Gerry
  • Start date Start date
G

Gerry

Problem: Someone Created about 1,000 Subfolders they are
all blank. I cannot delete the main folder, because it
says that its to big to delete.

What can i do?

its a windows 2000 Server, its not a Domain Controller.

Thanks in Advance.
 
Gerry said:
Problem: Someone Created about 1,000 Subfolders they are
all blank. I cannot delete the main folder, because it
says that its to big to delete.

What can i do?

its a windows 2000 Server, its not a Domain Controller.

Thanks in Advance.

- Start a Command Prompt
- Navigate to the parent folder
- Make dead sure you're in the right place
- Type this command:

for /d %d in (*.*) do rd /s /q "%d"
 
Back
Top