How to Reset a ProtonMail Password

ProtonMail logo

Since ProtonMail is a secure email service that prioritizes privacy and security, resetting your password is a bit different from “regular” webmail providers like Gmail. You can do it, but here’s what you need to know.

ProtonMail has two password modes: single-password mode and two-password mode. If you haven’t enabled two-password mode, you don’t need to worry about this, as you’ll be using the default single-password mode.

In single-password mode, the same password is used to log in and decrypt your inbox. In two-password mode, you have one password for logging in (your account password) and another for decrypting your mailbox (your mailbox password). ProtonMail itself does not have access to any of your passwords, regardless of which mode you’re using.

ProtonMail Two-Password Mode

If you’re using two-password mode, changing either of your passwords will default you to single-password mode. When the password used to decrypt your mailbox is changed, you will no longer be able to read your old emails. If you remember it later, you can restore access to your older emails by recovering the decryption key.

Regardless of which password mode you’re using, changing your password will result in your older emails no longer being readable. You will still be able to see unencrypted data like the sender, subject line, and metadata, but you won’t be able to read the message body or access attachments.

When you create a new password, you’ll also create a new key used to decrypt data stored in your inbox. You will only be able to read any emails sent or received after the reset, since they will be encrypted using the new key.

Reset Your ProtonMail Password via Recovery Email

This method assumes that you set up a recovery email when you registered your ProtonMail account. To reset your account password, visit mail.protonmail.com and click on the “Get help” link below the “Login” button.

ProtonMail Login

Using two-password mode? To reset your mailbox password, log in using your account password. Then, on the “Decrypt Mailbox” screen, use the “Forgot Password” link, and follow the rest of the process as normal.

Reset ProtonMail Password

Click on “Reset Password” and enter your ProtonMail username and a recovery email. This email must match the one that you specified when signing up in the first place.

ProtonMail Recovery Email and Username

Confirm your decision in the box that appears and make sure that you understand that proceeding will prevent you from being able to decrypt the contents of your inbox. In the next step, you will be sent a recovery code, but be sure to leave the recovery web page open while waiting for the email to arrive.

Warning: This will wipe all the emails in your account. You’ll be able to access your account again, but all of your previously received emails will be gone. You will still receive emails sent to the address in the future.

confirm your password reset

Once you have the email, enter the recovery code, followed by the “Reset Password” button. Another window will appear warning you about what will happen to your inbox when you proceed with the next step.

ProtonMail Reset Password Recovery Code

Enter the word “DANGER” in capital letters into the box to confirm your decision, followed by the “Reset” button.

ProtonMail Confirm Reset

Finally, enter a new password, and make a note of it in a secure place (like a password manager). Hit “Reset Password” to complete the process. You can now head back to mail.protonmail.com and log in with your new password.

Reenable Additional Security When You’re Done

Resetting your password will disable two-password mode and two-factor authentication. If you want to carry on using these features, make sure that you reenable them via Settings > Account (two-password mode) and Settings > Security (two-factor authentication).

Enable Two-Factor Authentication in ProtonMail

[mai mult...]

How to Read a REG File and Check If It’s Safe

The REG file icon on a Windows 10 desktop.

On Windows, a .reg file contains a list of changes to the Windows Registry. These files are a quick way to make simple changes—but they can also be dangerous. Here’s how to see what a REG file does before you run it.

What Is a REG File?

The Windows Registry is a database where Windows and some third-party applications store settings and other data. Many options on Windows 10 can only be changed in the Windows Registry. Some options can also be changed in Group Policy—but only Professional, Enterprise, and Education editions of Windows 10 have access to that.

We cover a lot of “registry hacks”—changes to the Windows Registry—here at How-To Geek. You can change these settings yourself using the Registry Editor, but it takes some clicking. To speed things up, we also offer downloadable REG files you can run to make these changes.

REG files can be created in several ways—you can use the “Export” option in the Registry Editor or write the REG file by hand in a text editor like Notepad.

The Registry Editor on Windows 10.

Why REG Files Can Be Dangerous

REG files just contain a list of Registry changes. When you double-click the REG file, Windows will make the changes specified in the file.

If the REG file is from a trustworthy source and doesn’t have any mistakes in it, that’s fine. For example, you can write your own REG file to quickly make your favorite changes to any new Windows PC.However, a REG file can also do bad things. It can mess up various settings or delete parts of the Windows Registry when you run it.

How to View a REG File’s Contents

Before running a REG file, we recommend examining its contents. We’ll demonstrate how to do this, using our “LastActiveClick” registry hack, which makes a single click on a taskbar icon activate the last window you used from that program—no multiple clicks necessary.

To view the contents of a REG file, right-click it in File Explorer and select “Edit.” This will open it in Notepad.

Note: If you don’t see the “Edit” option, the REG file may be inside a ZIP archive. You may need to extract the REG file from the ZIP archive before continuing. You can just copy-and-paste or drag-and-drop it to another folder.

Right-click a REG file and select "Edit" in File Explorer.

You will see a warning before you open the file if you downloaded it from the web. As long as you clicked “Edit,” you can click “Run” to continue. It’s safe—you’re just opening a text file in Notepad.

Note: If you accidentally click “Merge” instead—or if you double-click the file—you will see a User Account Control window after clicking “Run.” Click “No” to the prompt if you’re not ready to add the contents of the file to your registry yet.

Click "Run" to open the file in Notepad.

How to Read a REG File

You’ll see the contents of the REG file displayed in Notepad. If it’s a simple registry hack, you should just see a few lines. Here’s what our Last Active Click registry hack looks like:

Windows Registry Editor Version 5.00

; created by Walter Glenn
; for How-To Geek
; article: https://www.howtogeek.com/281522/how-to-make-your-taskbar-buttons-always-switch-to-the-last-active-window/

[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"LastActiveClick"=dword:00000001

The first line, “Windows Registry Editor Version 5.00”, just lets you know what type of file this is.

In this file, lines two through four begin with a “;” character. The fifth and sixth lines are the meat of this particular file. The fifth line tells Windows to make a change at the following location, or “key,” in the registry:

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced

The sixth line tells Windows to create a DWORD value named “LastActiveClick” and set its value to “1”. (If the value already exists, Windows will set its value to “1”.)

We also have a registry file that undoes these changes. It differs by having this text instead:

[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"LastActiveClick"=-

The minus sign (“-“) tells Windows to delete the LastActiveClick value. REG files can continue many lines of changes, but they’ll all be in a similar format.

How to Know If a REG File Is Safe
We pair downloadable REG files with instructions for changing the setting on your own in the registry. If you would be comfortable making a change in the registry by hand, you should be comfortable with running a REG file that makes the same change.

If you don’t understand what the REG file does—and especially if you don’t trust its source—then don’t run it.

Tip: We don’t recommend you just trust us, either! Please, feel free to check our work: When you download a REG file from us, check its contents and ensure you’re comfortable with them before you run the file. It’s good to get in the habit of double-checking all REG files before you run them.

If you do trust the file, just double-click it—or right-click it and select “Merge.” Windows will ask you if you want to let the Registry Editor make changes to your computer. Agree and the contents of the registry file will be merged with your PC’s registry.

[mai mult...]

How to Check How Much Google Account Storage You Have Left

Every Google account comes with free storage, but if that’s not enough for you, more can be purchased. Regardless of how much you have, you probably want to keep tabs on how much you’re using. We’ll show you how.

Google offers two cloud storage options. You can stick with the free 15GB option that every account gets or upgrade to “Google One” and pay for more. Before we check how much storage you have left, it’s important to understand what counts toward it.

[mai mult...]