Dear Sirs and Madams,
question concerning SSIS and 7zip: I need to zip various csv files that are on a server
\\X , that different to development and production server. On this data server, files need to be compressed and then deleted. I use 7zip for compressing. 7zip Portable is on the data server
\\X. From developement environment everything works out fine, but on production environment fails 7 zip , even though the rest of the task (del *.csv) is beeing done. The process task looks like this:
"set remote_path=\\X
NET USE S: %remote_path%
S:\test.zip S:\*.csv
del S:\*.csv
NET USE /DELETE /Yes S: "
Help is apreciated, have been spending some time looking on the Internet...