Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home » Storage

How to Completely Wipe Your Hard Drive? 7 Possible Ways

Bhishu AcharyaBy Bhishu AcharyaApril 24, 2023
How-to-Wipe-Your-Hard-Drive

If you’re looking to sell your working computer, just deleting the files or performing a quick format on the hard drive isn’t enough. This is because the data is not actually erased and can be recoverable using specialized software. It means the buyer can potentially gain access to your previous files.

Fortunately, there are different ways to completely wipe a hard drive, which permanently erases the files. This way, your data becomes unrecoverable or at least makes it difficult to recover.

Table of Contents

  • Before You Begin
  • Full Format Your Hard Drive
  • Using Diskpart Utility
  • Factory Reset With Clean Drive
  • Using Windows Installation Media
  • Using Third-Party Hard Drive Wiping App
  • Secure Erase in Manufacturer Software
  • Physically Destroy the Drive

Before You Begin

First, let’s begin by understanding a few technical terms—delete, erase, wipe, and shred. The words might appear synonymous, but they are different concepts when talking about hard drives.

  • Deleting: It refers to temporarily hiding the items. This means it’s not at all difficult to get them back. A common example is recovering deleted files from Windows Recycle Bin.
  • Erasing: It refers to permanently deleting all the data from the drive. However, it’s still possible to recover data using advanced recovery tools.
  • Wiping and shredding: It means erasing data such that they become unrecoverable. The former works by overwriting every sector of the HDD with zeros or random bits, while the latter refers to the physical destruction of the drive.

Important: Make sure you back up all the important files and folders before proceeding forward. Since we are going to wipe the drive completely, your data will be permanently deleted and there won’t be an option to retrieve them later.

With that, let me guide you through every possible way of wiping the data ensuring the minimal possibility of data recovery.

Full Format Your Hard Drive

Before moving on with the necessary steps, you need to know that two options are available here—Full and Quick format. Usually, most of us rely on the latter method believing it removes all the files and folders in a much shorter time. 

However, this is a myth as normal formatting only deletes the address files that point to the actual data location (meaning data is not erased). Clearly, this will not wipe the hard drive completely as you can recover the items using appropriate software.

On the other hand, full format erases the address files and fixes the bad sectors. Most importantly, it wipes all the data by rewriting every sector with zeros making it unrecoverable using normal techniques (but still possible when advanced software is used).

Note: You cannot format the hard drive containing the live Windows. If you’re actually looking to wipe this drive, directly move to the third or fourth option where I’ve discussed how to do so using system reset and Windows Installation Media.

  1. Use Windows + X and select Disk Management from the list.
  2. Get to the target disk and right-click on each partition and select Format. If you only have one partition, you may simply format that one.
    format partition
  3. In the Format dialogue box, make sure the ‘Perform a quick format’ option is unchecked before hitting Ok.
    full format dialogue box
  4. Press Ok in the confirmation prompt to start the full format. You can even check the Status field to examine the progress.
    ok to format partition
  5. Once all the drives are formatted, right-click on each partition again. This time, choose Delete Volume.
    delete each volume
  6. Click on the Yes button to confirm your action.
    yes to delete volume
  7. You should now be left with a single unallocated partition. Right-click on it and pick New Simple Volume.
    new simple volume
  8. In the New Simple Volume Wizard, hit Next to continue.
    new simple volume wizard
  9. Specify the volume size and press Next.
    select size in new simple volume wizard
  10. Assign the drive letter and click Next.
    assign drive letter in new simple volume wizard
  11. Again, make sure the ‘Perform a quick format’ option is unchecked and hit Next.
    full format in new simple volume wizard
  12. Press Finish and your wiped hard drive should now be ready to use.
    finish in new simple volume wizard

Additional Tip: If you’re looking for a Command Prompt command to wipe your HDD, you may use format <drive>: /P:2. This will perform two phases of zero-writes ensuring you can’t recover the data using simple recovery techniques.

Using Diskpart Utility

This command-line disk partitioning utility gives you overall control of your storage drive with simple and easy-to-use commands. While we had to format and delete each partition of the HDD one by one in the earlier method, the Diskpart command will perform all these tasks in a single line.

Note that two options are available to erase the files and partitions—clean and clean all. While the former erases the partitions and data, the latter wipes out everything from the drive, ensuring each sector on the disk is zeroed.

  1. Open Command Prompt and execute the diskpart command.
    dispart command in command prompt
  2. Press Yes in the UAC prompt to launch the Diskpart command-line utility.
    yes to launch dispart cli
  3. Now, start running the below Diskpart commands in succession:
    list disk [lists all the drives in your computer]
    select disk <disk_number> [specifies to select the disk as per its number]
    clean all [wipes all the data inside the disk drive including the partitions]
    create partition primary [creates a primary partition on the current disk]
    format fs=ntfs [formats the partition into NTFS]
    convert MBR or convert GPT [optional]
    assign [a letter will be automatically assigned]
    exit [exits from the Diskpart CLI]
    diskpart to wipe hard drive

Factory Reset With Clean Drive

If you’re looking to give away your PC, factory resetting is a must. But very few are aware of the appropriate procedure. Most remain unaware of the hidden “Clean Drive” feature.

If you don’t enable it during the resetting process, your data will only be deleted but not wiped. I definitely recommend it as Microsoft also confirms that this makes data recovery harder.

  1. Open the Settings app using Windows + I shortcut.
  2. Next, go to System > Recovery.
    system recovery
  3. From the Recovery Options section, press the Reset PC option.
    reset pc button
  4. Once the Reset PC window opens, select Remove Everything.
    remove everything
  5. Next, pick Local Reinstall.
    local reinstall
  6. In the Additional Settings window, click on Change Settings.
    change settings
  7. Enable the Clean data option. As it states, this will take hours to complete the Windows installation. But it makes sure your data becomes hard to recover, which is exactly what we are looking for.
    clean data
  8. Once that’s done, hit the Confirm button.
  9. Then, press Next.
    additional settings next
  10. Finally, hit the Reset button and this will start the factory resetting process.
    reset button to reset pc

Using Windows Installation Media

If you’re looking to wipe out the drive containing live Windows, it’s not possible to fully format or clean it using the aforementioned techniques.

The only way to achieve this is by creating a Windows Installation Media (a bootable USB flash drive will do) and clean installing the operating system.

  1. Boot your computer using a Windows Installation Media.
  2. In the Windows Setup screen, select your language, time, currency format, and input method. Then, hit Next.
    windows setup first screen next
  3. In the next screen, press the Install Now button.
    install now
  4. After the setup starts, you should get a screen to activate Windows. Enter your product key and press Next.|
    product key screen
  5. Next, pick the OS you’re going to install and click Next.
    pick os screen
  6. Accept the license terms and click Next.
    accept license terms windows installation
  7. Now, here comes the important step. In the Installation Type, make sure you choose the custom option.
    pick custom option
  8. Now, start formatting all the partitions.
    format all partitions
  9. Then, delete all the partitions.
    delete all partitions
  10. Once only the drive with unallocated space remains, click on New.
    new option in windows setup hard drive partition
  11. Then, enter the size and hit Apply.
    set size and apply
  12. Once the confirmation prompt pops up, press Ok to continue.
    ok to create new system partitions
  13. After Windows assigns additional partitions, they should pop up on the screen. Press Next to move forward. While you’re at this, ensure you’ve picked the primary partition.
    next after drive partition windows setup
  14. Finally, wait for the Windows installation to complete.
    wait for windows to install windows setup

Using Third-Party Hard Drive Wiping App

All the options we explored above zero fill the hard drive making it difficult to recover old data. However, there are specialized applications that work by overwriting existing data with random bits multiple times making it impossible to retrieve them.

These are called data destruction or data sanitization software. Here are some popular ones to try out—DBAN, KillDisk, Secure Eraser, Disk Wipe, Hardwipe, etc. For some of these data-wiping tools, you require creating a bootable USB.

Secure Erase in Manufacturer Software

secure erase option in wd dashboard
Santize and User Erase Options in WD Dashboard

Whether you’re using an HDD or SSD, your manufacturer provides a dedicated application that lets you erase data much more conveniently. The Secure Erase option is mainly for SSDs as it has limited write cycles, and the overwriting technique would be a bad idea.

Since the traditional approach will hamper its lifespan, it’s better to use the Secure Erase feature provided by your manufacturer. All you have to do is download the app from the official website (if you haven’t already).

For example, Samsung offers its users with Samsung Magician program. Likewise, Western Digital’s Dashboard allows you to erase the drive using Sanitize or User Erase. However, if you’re trying to wipe the boot drive, you require a bootable USB drive.

Physically Destroy the Drive

physically destroy hard drive
Shredding Magnetic Platters with a Hammer

Even though all the options I’ve mentioned above are great ways to wipe the hard drive, data recovery can still be possible using sophisticated data recovery algorithms. Since wiping is never 100% accurate, the final option would be physically destroying the drive.

Well, there are different techniques to achieve this. Some users have tried exposing the magnetic platters to powerful magnets, heat, and even water immersion! However, you can’t be 100% sure this method will wipe the data. Additionally, you would have to give extra effort, which could be time-consuming.

That being said, the best option would be completely destroying the platters using a hammer. Once you shred the HDD into pieces, getting the data back becomes impossible.

However, the physical destruction of the mechanical drive is not the best approach and should always be your final choice (only when you’re not going to use the HDD again).

how-to
Bhishu Acharya
  • Twitter
  • LinkedIn

Bhishu Acharya is a technical content writer at TechNewsToday. He specializes in monitors, laptops, storage devices, and other peripherals. Apart from computer hardware, you can also find his how-to and troubleshooting articles on Windows, internet, security, and networking. Ever since getting his hands on a personal computer, Bhishu started exploring its internal components at just 10. His growing curiosity led him to undertake the Computer Science & Information Technology degree and is just a year away from graduation. While balancing his study and work life for over four years, he has harnessed different sets of technical skills. With his expertise, he is now dedicated to helping netizens looking for hardware and software-related fixes. Today, Bhishu’s proficiency extends beyond computer hardware. In his spare time, he enjoys coding and learning new programming languages. You can contact him at bhishu@technewstoday.com

Related Posts

raid drivers

How to Download and Install RAID Drivers ( AMD & Intel )

August 17, 2023
asus raid

ASUS RAID Setup: A Complete Guide

August 22, 2023
gigabyte raid

How To Configure RAID On Gigabyte Motherboard

September 20, 2023
boot order asus

Changing Boot Order on ASUS BIOS: A Step-by-Step Guide

July 27, 2023
how to remove write protection on usb drive

How to Remove Write Protection on USB Drive?

July 17, 2023
sd card not showing up

SD Card Not Showing Up on PC? Try These 6 Fixes

July 5, 2023
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
how to turn off hardware acceleration

How to Turn Off Hardware Acceleration

September 27, 2023
motherboard chipset

Understanding Motherboard Chipset and Its Importance

September 20, 2023
Naval-Warfare-Games

Best Naval Warfare Games

September 18, 2023
You may also like
printer-not-printing

How to Fix a Printer That’s Not Printing

September 26, 2023
Share Location With Friends and Family

Share Location With Friends and Family (iPhone and Android)

September 18, 2023
how-to-print-without-a-printer

How to Print Without a Printer

September 18, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Our Team
  • Editorial Guidelines
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday, editor@technewstoday.com | Tech Central Pvt. Ltd.

Type above and press Enter to search. Press Esc to cancel.