Mar 10, 2008 · gpg --output doc --decrypt doc.gpg (i don't know gpg- but you should write here *.gpg or whatever command-wildcard it is to decrypt all the files.) copy *.* C:\A C:\B (this line copies all the files from A to B) cd C:\the directory which holds the logs gpg --output doc.gpg --encrypt (this must be the line you use to encrypt the logs) copy *.*

Aug 25, 2017 · Encrypt Files or Folders in Windows 10 Using EFS. Launch File Explorer and right-click the file or folder you want to encrypt and select Properties. In this example, I’m going to use a folder Mar 10, 2008 · gpg --output doc --decrypt doc.gpg (i don't know gpg- but you should write here *.gpg or whatever command-wildcard it is to decrypt all the files.) copy *.* C:\A C:\B (this line copies all the files from A to B) cd C:\the directory which holds the logs gpg --output doc.gpg --encrypt (this must be the line you use to encrypt the logs) copy *.* Right-click on the file or folder you wish to encrypt. 2. Click Properties selection at the bottom of the menu. 3. Click Advanced under the General tab. May 31, 2014 · gpg -d -o file.zip file.gpg But I cannot gpg to encrypt a folder Whatever command I tries it fails I can encrypt a single file no problems, I just type: gpg -e filename But how on earth do I tell gpg to encrypt an entire folder?

To encrypt a file using a GPG key you created, on the command line, enter (replace user_id with the email address you specified when you created the key and my_file with the name of the file to encrypt): gpg -e -r user_id my_file GPG will create an encrypted version of the file you specified; the encrypted file will have a .gpg file extension

May 09, 2011 How to Use 7-Zip to Encrypt Files and Folders

However, to answer your question specifically, you can certainly encrypt a single file with a passphrase and gpg: gpg -c /tmp/file > /tmp/file.gpg To encrypt a folder, you should use tar in conjunction with gpg: tar zcvf - /tmp/directory | gpg -c > /tmp/directory.tar.gz.gpg

GnuPG. GnuPG is by far the easiest way to encrypt files on Linux. It is the foundation for (almost) all … Full Guide to Encrypt File and Folder in Linux To enable Linux to encrypt file with a password or for Linux to encrypt a folder with a password, you need to follow different methods that we shall discuss below. How to encrypt a file in Linux Add the line to a configuration file called gpg.conf which is available in a hidden directory. Run this command and edit the gpg.conf in gedit as