How To Delete Files From External Hard Drive On Windows 11?
To delete files from an external hard drive on Windows 11, you can follow these steps:
- Connect your external hard drive to your Windows 11 computer.
- Open File Explorer by pressing
Windows
+E
or by clicking on the "File Explorer" icon in the taskbar. - Navigate to the external hard drive where you want to delete files or folders.
- Select the individual files or folders you wish to remove by clicking on them, then press
Delete
on your keyboard or right-click on the selection and choose "Delete" from the context menu.
If you encounter files or folders that cannot be deleted due to permission issues, ownership restrictions, or write protection, follow these additional steps:
Change Permissions:
- Right-click the problematic file or folder, select "Properties."
- Go to the "Security" tab.
- Grant yourself (or your account) full control over the file or folder by selecting your user account and specifying the desired permissions.
Remove Write Protection:
Connect the external hard drive to another computer, if possible.
Open Command Prompt in Administrator mode (
Windows
+X
, then click "Command Prompt (Admin)").Run the following command:
diskpart
Enter the disk number corresponding to your external hard drive (
list disk
andselect disk #
where # is your drive number).Execute the command
attributes disk clear readonly
to remove read-only attribution on the drive.Exit
diskpart
using the commandexit
.Type
exit
in Command Prompt to close it.
Take Ownership:
- Open Command Prompt as Administrator and enter
diskpart
. - Identify the external hard drive's disk number using the
list volume
command. - Type
select volume [number]
where [number] is the drive number corresponding with your external hard drive. - Type
assign
to assign a drive letter if needed. - Type
take ownership /F:
followed by<file_system_letter> /I:
then<folder_name>
, replacing<file_system_letter>
with the drive's letter and<folder_name>
with the directory name where the problematic file or folder is located. - Close the Command Prompt.
- Open Command Prompt as Administrator and enter
Forcefully Delete or Wipe the Hard Drive:
- To forcefully delete all contents, use the
rmdir [folder_name]
command (backslashes and quotes are required) replacing[folder_name]
with the folder you want to remove. - To wipe the entire drive, use third-party software like MiniTool Partition Wizard (refer to the mentioned search engine results for specific steps if needed).
- To forcefully delete all contents, use the
Please verify the availability and accuracy of each method if you decide to remove data permanently, as the search results may not indicate the most recent and reliable delete file actions.