When you select a folder to delete on Windows 11, the operating system calculates the progress update. During this process, CPU and disk Usage spike, leading to slow file deletion speed.
Worse, these problems can’t be easily fixed, and users would have to rely on the Command Prompt utility to delete large folders quickly on Windows 11. So, if your Windows 11 PC takes longer than usual to delete large folders, here is what you can do.
1. Delete Large Folders Faster with Command Prompt
In this method, we will use the Command Prompt utility to delete large folders faster on Windows 11.
1. In Windows 11 Search, type Command Prompt. Next, right-click on Command Prompt 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. Now switch to the Command Prompt utility and type in cd followed by the path you’ve copied.
For example: cd “D:\Games”
4. This will select the folder. Now type del /f/q/s *.* > nul and press Enter.
5. If you want to return to 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: Replace the ‘FOLDER-NAME’ with the actual name of the folder you want to delete.
2. Delete Large Folders Faster From the Windows 11 Context Menu
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 you need to do.
1. Open Notepad on your Windows 11 computer and paste the following lines.
@ECHO OFF ECHO Delete Folder: %CD%? PAUSE SET FOLDER=%CD% CD / DEL /F/Q/S "%FOLDER%" > NUL RMDIR /Q/S "%FOLDER%" EXIT
2. Now click on the File > Save As. Navigate to the C:\Windows on the Save As Prompt and save the file with the .bat extension. For example, fast_delete.bat.
3. Now open the Registry Editor from the Windows 11 Search. Next, 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 Fast Delete and press Enter.
6. Right-click on the Fast Delete key and select New > Key.
7. Name the new key as command and press Enter.
8. Double-click on the default key on the right. On the Edit String prompt, enter the following line in the Value data field and click OK.
cmd /c "cd %1 && fast_delete.bat"
9. Now, navigate to the folder that you want to delete. Right-click on it and select the ‘Fast Delete‘ option 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 on Windows 11. Also, if you find this guide helpful, share it with your friends.