How to remove the password from an SSD in a HP ProBook?

Apparently someone found it funny to password protect the SSD harddisk of one of our HP ProBook laptops, and now the laptop is unable to boot. Of course the password is unknown to us, but I'd like to reformat the disk so we can reinstall the laptop.

When I boot the laptop, I get the message "3F0 error - Device not found". I took out the harddisk and placed it in a Dell Optiplex 7010, which upon boot asks for the password as well.

If I connect the SSD via a USB adapter, I can see the partitions and format them, but afterwards the drive is still not accessible.

Booting the laptop with a linux live distribution gives me the same result - I can see the partitions just fine, so the drive seems to work.

How do I either remove the password, or more likely, reformat the SSD so I can reinstall the laptop?

Thanks!

16

2 Answers

The purpose of an on-disk password is to prevent access to the data, not to render the drive inoperable.

This means that the only way that you can return the hardware to service is by erasing the drive from scratch, using the on-controller ATA Secure Erase command.

You can boot a Linux live CD and then use the hdparm command to do this.

If a password is already set, you simply proceed with initiating the erasure with a new password that you select. Using your own arbitrary password will only work for the purpose of initiating a new erasure, not for any other commands that require a password.

# hdparm --user-master u --security-set-pass [password] /dev/sdX
# hdparm --user-master u --security-erase [password] /dev/sdX 

(where the 'X' in 'sdX' will vary depending on your hardware).

5

I suggest you try a Windows system tool called diskpart.

Press "Win+R" to open the run dialog box and input "diskpart" then you can press Enter to open that. You should note that diskpart requires the administrator rights.

Wait a minute and then input "list disk" in the cmd console. The programme will return the disks that have been connected to the PC and their labels.

If the SSD you want to format is labelled as Disk 1, then input"select disk 1". Programme will return like : the disk 1 is selected disk now. (PLEASE MAKE SURE THE DISK YOU SELECTED IS DEFINITELY YOUR TARGETED SSD RATHER THAN OTHER DRIVE)

Then input "clean" and execute the command. If everything went smoothly, programme will return like Diskpart has clean the disk successfully.

Then you can format it in system tools like "diskmgmt.msc" or any other ways.

Hopefully all above useful.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like