We have a Windows Server 2008 R2 server. We installed gpg4win and it works. We can create public and secret keys and decrypt messages for those that have our public key.
The issue
The gnu install defaulted to my user profile and we would like it to be under a generic one.
We created a directory c:\gpg_keys
According to the documentation on the gnu web site:
gpg --homedir /my/path/
to make GnuPG create all its files in that directory. "
When we run this command this is windows install:
gpg --homedir c:\gpg_keys\ the return is:
gpg: keyring `c://gpg_keys//secring.gpg' created
gpg: keyring `c://gpg_keys//pubring.gpg' created
gpg: Go ahead and type your message ...
Here the process stops.
When we look at the target directory we have:
08/28/2013 05:14 PM 0 pubring.gpg
08/28/2013 05:14 PM 0 secring.gpg.lock
08/28/2013 05:14 PM 0 pubring.gpg.lock
08/28/2013 05:14 PM 0 secring.gpg
4 files of zero length are created.
Is there any way to get the target directory for home moved?
--homedir
works fine in Linux (tested in Xubuntu 22.04.1). I know that's not what you're using. – Highbinder