Hey,
I'm trying to compress and encrypt a file using a batch script and
gnuwin32.
So far, I've been able to use the zip command to compress, but the
encryption is giving me some trouble.
"zip -e" will prompt me for a password, but I want to automate the
inclusion of a password.
I tried this:
zip -e file.zip file
echo qwerty
echo qwerty
as well as without the "echo".
Does anyone have any clue on what I can do?
Thanks