0

I need design a SSIS package to unzip files from a folder in Server.

The problem is there are no softwares like Winzip or Winrar installed on server.

Our IT dept doesn't installation of softwares on server so I am trying to figure out a way to do it.

billinkc
  • 59,250
  • 9
  • 102
  • 159
Santosh
  • 23
  • 1
  • 8

1 Answers1

1

.NET has the System.IO.Compression.ZipFile class to perform zip/unzip operations for the zip archive format. You could use a script task to unzip the file using ZipFile.

PKing
  • 106
  • 1
  • 4