-1

I want to sell my pc but I want to delete everything on my SSD without being recoverable. How to do that. It's SATA 3 500 MB/S KINGSTON.

enter image description here

1 Answers1

-2

Click on Start menu and type cmd.exe. Run it as Administrator - click on on application right mouse button and select to Run as Administrator. Then type

format <ssd drive letter>: /fs:NTFS /p:3

for example

format d: /fs:NTFS /p:3

The switch /p:3 means that all data will be destroyed 3 times and sectors with data will be filled by zeros or random numbers. It is pretty securely.

AS_EVL
  • 7