GPG Configuration on Windows for Secure Mail
Beginning | step 1 of 5 | Next
Install GPG
- Download GNU Privacy Guard
- Do "Right-click, Save As..." this file: gnupg.exe
- tip: If you want to read more about GPG see the GPG homepage
- Open (Run) that file to install GPG
- Download this GPG helper file (This makes it easier to run GPG)
- Do "Right-click, Save As..." this file: gpg.bat
- Save it to (or move it to) your HOME directory. If your username is foo then your HOME directory is C:\Users\foo
- You can now open a command window
- Start | All Programs | Accessories | Command Prompt
- list the contents of your HOME directory with dir (see screenshot below)
- You can make sure that gpg is installed (and the helper batch file works) by typing gpg --version
- Create a new GPG configuration directory
- This directory should be C:\Users\foo\AppData\Roaming\gnupg
- You can create it using Start | All Programs | Accessories | Windows Explorer
- Alternatively you can do this in the command window:
C:\Users\foo> mkdir AppData
- C:\Users\foo> cd AppData
- C:\Users\foo\AppData> mkdir Roaming
- C:\Users\foo\AppData> cd Roaming
- C:\Users\foo\AppData\Roaming> mkdir gnupg
- Download this GPG configuration file (insures a strong key will be created)
- Do "Right-click, Save As..." this file: gpg.conf
- Save it to (or move it to) your GPG configuration directory you just created.
- It should be located at C:\Users\foo\AppData\Roaming\gnupg\gpg.conf
- If you want to know why this configuration is important please see OpenPGP for Debian
- Go back to your HOME directory
- C:\Users\foo\AppData\Roaming> cd \Users\foo
- C:\Users\foo>
- Proceed to the Next step