Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is the ZIP compression that is built into Windows XP/Vista/2003/2008 able to be scripted at all? What executable would I have to call from a BAT/CMD file? or is it possible to do it with VBScript?

I realize that this is possible using WinZip, 7-Zip and other external applications, but I'm looking for something that requires no external applications to be installed.

share|improve this question
There are various VBScript implementations available on Google, e.g. "Zip and UnZip Files Using the Windows Shell (XP, Vista, 2003 and 2008) and VBScript". I'm haven't tested these but it's most likely they only 'zip', not compress. – samjudson Aug 27 '08 at 14:11
what's the distinction you are drawing between zip and compress? – Cheeso Jul 30 '09 at 4:36
You can 'zip' files up into a single file without compressing them, much like 'tar' in unix. This allows you to distribute the files as a package, but does not reduce their size of disk space. – samjudson Aug 6 '09 at 15:22
its most likely they only 'zip', not compress. No, that's not right. The script there creates a zip file, with compression of the entries. – Cheeso Jan 24 '10 at 18:37

7 Answers

up vote 8 down vote accepted

There are VBA methods to zip and unzip using the windows built in compression as well, which should give some insight as to how the system operates. You may be able to build these methods into a scripting language of your choice.

share|improve this answer
7  
Caveat: The posted scripts rely on implementation-dependent behavior of the Windows shell and, for example, can easily break when third party compression software changes the default OLE verbs for ZIP archives. Also, the zipfldr.dll COM objects are not documented or supported for this use by MS. – Mihai Limbășan Nov 20 '08 at 19:22
Faux, OLE verbs on zip files does not interfere with above provided scripts. Not supporting (or documenting) it does not automatically mean that MS are going to break it. They might, but then they might document it too. – wqw Jul 12 '11 at 13:06

Yes, this can be scripted with VBScript. For example the following code can create a zip from a directory:

Dim fso, winShell, MyTarget, MySource, file
Set fso = CreateObject("Scripting.FileSystemObject")
Set winShell = createObject("shell.application")


MyTarget = Wscript.Arguments.Item(0)
MySource = Wscript.Arguments.Item(1)

Wscript.Echo "Adding " & MySource & " to " & MyTarget

'create a new clean zip archive
Set file = fso.CreateTextFile(MyTarget, True)
file.write("PK" & chr(5) & chr(6) & string(18,chr(0)))
file.close

winShell.NameSpace(MyTarget).CopyHere winShell.NameSpace(MySource).Items

do until winShell.namespace(MyTarget).items.count = winShell.namespace(MySource).items.count
    wscript.sleep 1000 
loop

Set winShell = Nothing
Set fso = Nothing

You may also find http://www.naterice.com/blog/template_permalink.asp?id=64 helpful as it includes a full Unzip/Zip implementation in VBScript.

If you do a size check every 500 ms rather than a item count it works better for large files. Win 7 writes the file instantly although it's not finished compressing:

set fso=createobject("scripting.filesystemobject")
Set h=fso.getFile(DestZip)
do
    wscript.sleep 500
    max = h.size
loop while h.size > max 

Works great for huge amounts of log files.

share|improve this answer
Does this work on Vista? I have been encountering some issues and am about ready to claim that Vista is the culprit. – Icode4food Nov 5 '10 at 22:55

Just for clarity: GZip is not an MS-only algorithm as suggested by Guy Starbuck in his comment from August. The GZipStream in System.IO.Compression uses the Deflate algorithm, just the same as the zlib library, and many other zip tools. That class is fully interoperable with unix utilities like gzip.

The GZipStream class is not scriptable from the commandline or VBScript, to produce ZIP files, so it alone would not be an answer the original poster's request.

The free DotNetZip library does read and produce zip files, and can be scripted from VBScript or Powershell. It also includes command-line tools to produce and read/extract zip files.

Here's some code for VBScript:

dim filename 
filename = "C:\temp\ZipFile-created-from-VBScript.zip"

WScript.echo("Instantiating a ZipFile object...")
dim zip 
set zip = CreateObject("Ionic.Zip.ZipFile")

WScript.echo("using AES256 encryption...")
zip.Encryption = 3

WScript.echo("setting the password...")
zip.Password = "Very.Secret.Password!"

WScript.echo("adding a selection of files...")
zip.AddSelectedFiles("*.js")
zip.AddSelectedFiles("*.vbs")

WScript.echo("setting the save name...")
zip.Name = filename

WScript.echo("Saving...")
zip.Save()

WScript.echo("Disposing...")
zip.Dispose()

WScript.echo("Done.")

Here's some code for Powershell:

[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll");

$directoryToZip = "c:\\temp";
$zipfile =  new-object Ionic.Zip.ZipFile;
$e= $zipfile.AddEntry("Readme.txt", "This is a zipfile created from within powershell.")
$e= $zipfile.AddDirectory($directoryToZip, "home")
$zipfile.Save("ZipFiles.ps1.out.zip");

In a .bat or .cmd file, you can use the zipit.exe or unzip.exe tools. Eg:

zipit NewZip.zip  -s "This is string content for an entry"  Readme.txt  src 
share|improve this answer

There are both zip and unzip executables (as well as a boat load of other useful applications) in the UnxUtils package available on SourceForge (http://sourceforge.net/projects/unxutils). Copy them to a location in your PATH, such as 'c:\windows', and you will be able to include them in your scripts.

This is not the perfect solution (or the one you asked for) but a decent work-a-round.

share|improve this answer
1  
The UnxUtils project does not seem to be maintained anymore (nothing new since 2007). The GNUWin32 project has more recent releases of GNU tools on Windows. It includes builds of InfoZip's zip/unzip. But it is better and safer to directly InfoZip build from their own source. – dolmen Mar 26 '11 at 23:00

to create a compressed archive you can use the utility MAKECAB.EXE

share|improve this answer
Not quite ZIP files, but still, it could be handy, thanks! – travis Feb 26 at 19:48

Personally I use 7-zip for my command line zipping needs. It supports standard .zip format, and also .7z format which in my experience also provides much better compression than .zip. The downside is that you need 7-zip to open .7z files.

share|improve this answer

There is a "compact" shell command for duing this

share|improve this answer
3  
This is just for marking (or removing) the NTFS compression flag. It does not create zip files. – Goyuix Sep 15 '09 at 0:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.