I have the following problem:
I use 7-Zip in my SSIS 2012 package.
So I created the Execute Process task and put there:
WorkingDirectory: C:\Program Files\7-Zip\ (it's correct, double checked it)
Executable: 7z.exe
Argumnets: e "C:\Data\B1\Arch.7z" -so > "C:\Data\B1\Arch.7z.dat"
It means that I want to put all unzipped data to the file (stdout) Arch.7z.dat.
When I run the package I got the following error: Cannot use absolute pathnames for this command This error is thrown by 7-Zip.
But when I run the same command from command line it work correctly:
C:\Program Files\7-Zip>7z.exe e "C:\Data\B1\Arch.7z" -so > "C:\Data\B1\Arch.7z.dat"
What is the problem there?
Thanks Mik