Encrypt from the Command Line
Data Loader offers an encryption utility to secure passwords specified in configuration
files. While Data Loader does not handle encryption directly, data in transit is encrypted when
using a secure connection such as HTTPS.
When running Data Loader in batch mode from the command line, you must encrypt the following configuration parameters:
- sfdc.password
- sfdc.proxyPassword
- Open a command prompt, and navigate to the bin subfolder of your Data Loader installation folder.
- Run encrypt.bat.
- At the command line, follow the prompts provided to execute the following actions.
- Generate a key: -k [path to key
file]
Generates a key file, and saves it in %userprofile%\.dataloader\dataLoader.key if the path is not specified. Store this file with care as you use it for encryption and decryption.
- Encrypt text: -e <plain text>
<path to key
file>
Generates an encrypted version of the text. Provide a key file for the encryption.
- Decrypt text: -d <encrypted text>
<path to key file>
Decrypts the text using the key file.
- Generate a key: -k [path to key
file]