What's the equivalent to 'rm -rf' with Windows command?
rmdir /s /q [directory]
Try:
DEL /Q /S /F <FILE/DIR>
or
DELETE /Q /S /F <FILE/DIR>
rmdir /s /q [directory]
Try:
DEL /Q /S /F <FILE/DIR>
or
DELETE /Q /S /F <FILE/DIR>