> I downloaded GPG W32 1.0.6-2 on a Windows machine. > I started gpg from the command line and It created C:\gnupg. > I have GPG running on another windows machine (I think is version 1.0.4) so I > tried to import my keys.
I'm confused by the version numbers you indicate. They sound like they're prehistoric, unsupported and simply too old to use. > import: > gpg --allow-secret-key-import "secdretkey.txt" It should be: gpg --allow-secret-key-import --import "secretkey.txt" You are allowing secret key import, but not actually importing. You're invoking the default action, which for keys is displaying them, not importing them. So you need to specify that the wanted action is --import. Good luck, Peter. -- I use the GNU Privacy Guard (GnuPG) in combination with Enigmail. You can send me encrypted mail if you want some privacy. My key is available at <http://digitalbrains.com/2012/openpgp-key-peter> _______________________________________________ Gnupg-users mailing list [email protected] http://lists.gnupg.org/mailman/listinfo/gnupg-users
