How to Delete Large Folders Easily 🗑️ Tricks to Speed Up Windows 11
When you select a folder to delete in Windows 11, the operating system calculates the progress of the deletion. During this process, CPU and disk usage increases, resulting in a decrease in file deletion speed. 🐢
Even worse, these problems don't have an easy fix. Users must turn to the Command Prompt utility to quickly delete large folders in Windows 11. So, if your Windows 11 PC is taking longer than usual to delete large folders, here's what you can do. ⚡
This is because the content focuses on a specific trick to improve Windows 11 performance and usability by deleting large folders.
1. Delete Large Folders Quickly with Command Prompt
In this method, we will use the Command Prompt utility to delete large folders faster in Windows 11.
1. In the Windows 11 search, type Command Prompt. Then, right click on it and select Run as administrator.
2. Now, navigate to the folder you want to delete. Right-click on it and select Copy as path.
3. Switch to the Command Prompt utility and type CD followed by the path you copied.
For example: cd “D:\Games”
4. This will select the folder. Now type del /f/q/s *.* > null and press Enter.
5. If you want to go back one level in the folder path, type CD.. and press Enter.
6. Now, type the following command to delete the folder and all its subfolders and press Enter.
rmdir /q/s FOLDER-NAME
Important: Replaces 'FOLDER-NAME' with the real name of the folder you want to delete. 🗑️
In this method, we create a script and add it to the Registry. This will add a Quick Delete shortcut to the Windows 11 context menu. Here's what to do.
1. Open Notepad on your Windows 11 computer and paste the following lines.
@ECHO OFF ECHO ¿Eliminar carpeta: %CD%? PAUSE SET FOLDER=%CD% CD / DEL /F/Q/S "%FOLDER%" > NUL RMDIR /Q/S "%FOLDER%" EXIT
2. Click on File > Save As. Navigate to C:\Windows at the save prompt and save the file with the extension .bat. For example, delete_quick.bat.
3. Now open the Registry Editor from Windows 11 search. Then navigate to this path:
HKEY_CLASSES_ROOT\Directory\shell\
4. Right click on the Shell folder and select New > Key.
5. Name the new key as Quick Delete and press Enter.
6. Right-click on the Quick Delete key and select New > Key.
7. Name the new key as command and press Enter.
8. Double-click the default key on the right. At the Edit String prompt, enter the following line in the Value field and click OK.
cmd /c "cd %1 && delete_rapido.bat"
9. Now, navigate to the folder you want to delete. Right-click on it and select the 'Quick Delete' from the context menu.
This guide explains how to quickly delete large folders on a Windows 11 computer. Let us know if you need more help deleting large folders faster in Windows 11. Also, if you find this guide helpful, please share it with your friends. 😉