What's the equivalent to 'rm -rf' with Windows command?

Solution 1:

rmdir /s /q [directory]

Solution 2:

Try:

DEL /Q /S /F <FILE/DIR>

or

DELETE /Q /S /F <FILE/DIR>