Search found 3 matches

by bstahl5012
Thu Mar 08, 2018 1:59 pm
Forum: AES Crypt
Topic: Encrypt files in folder
Replies: 4
Views: 8627

Re: Encrypt files in folder

to pass the password as a variable using Argument in PowerShell to AES this worked...

$arg2 = "-p $CryptPass"
by bstahl5012
Mon Mar 05, 2018 3:31 pm
Forum: AES Crypt
Topic: Encrypt files in folder
Replies: 4
Views: 8627

Re: Encrypt files in folder

Thanks for the reply. We are only going to use the Command Line function of AES Crypt since it is part of a process... So using PowerShell do you mean something like this? ForEach-Object { $app = 'C:\Program Files\AESCrypt_console_v310_x64\aescrypt.exe' $arg1 = '-e' $arg2 = '-p password' $arg3 = 'C:...
by bstahl5012
Thu Mar 01, 2018 9:12 pm
Forum: AES Crypt
Topic: Encrypt files in folder
Replies: 4
Views: 8627

Encrypt files in folder

I'm a newby with AES Crypt....
Is is it possible and/or how would I Encrypt all files in a Folder?
And Can it be done with PowerShell or would I use a Batch?
Thanks