I have problem with Unzipping a Password Protected file in a SSIS Package.
I Always use Execute Process task But this time After the package download zip file from ftp it must unzip it then i use it as flat file.
now the problem is i can’t unzip the file cause its password protected.i have the password of file but i don’t now how to use it.
is there a command line or some thing?
I have problem with Unzipping a Password Protected file in a SSIS Package. I
Share
Finally find it…
use a execute process task and set parameter as below:
executable : C:\Program Files\WinRAR\WinRAR.exe…..(winrar location)
Arguments : e -o+ -ppassword “filename”……..i.e e -o+ -p12345 “D:\TRFolder\TR0426.zip”
Working Directory : D:\TRFolder ……. UnzipPath
peace