If you're doing this regularly, a good alternative is to install on a separate partition and symlink it. Then to delete, you just quick format the partition.<p><pre><code> echo Y | format Z: /FS:NTFS /X /Q
</code></pre>
source: <a href="https://superuser.com/a/352321" rel="nofollow">https://superuser.com/a/352321</a><p>Also, on Windows 10 you can use Ubuntu bash and run rm -rf. I've read that it's faster, but haven't tested extensively.<p><i>Update</i>: I did a quick test with 100,000 files and the 'del /f/s/q foldername > nul' approach was about 50% faster than 'rm -rf' on my machine.