134

I have a batch file that outputs a text file. I thought it would be nice if I could zip it up too.

This will be used in an uncontrolled environment, so I can't make assumptions about the presence of third-party software products such as 7-Zip, etc. This needs to use Windows' now-built-in capability to zip files.

Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
Aaron Bush
  • 1,483
  • 2
  • 11
  • 7
  • 1
    can you utilize Powershell or WSH scripting? that might be the only way to use Windows' builtin zip handling from the commandline. otherwise, as Molly points out, you need a 3rd-party tool. – quack quixote Feb 19 '10 at 19:59
  • 2
    so you send someone a batch file and you can not send him some tiny statically linked gzip.exe? – akira Feb 19 '10 at 22:16
  • The OP's question is an excellent one (@quackquixote 's strange accusation notwithstanding). Since Windows does provide this as a single click under SendTo, there *ought* to be a command usable in a BAT file. So it's a good question even if the answer is No and one has to (ridiculously) resort to using a third-party tool that may or may not be equivalent. – Jon Coombs Dec 24 '14 at 00:33
  • This is [link](http://blog.dabasinskas.net/creating-zip-archive-from-a-batch-script/) by Tomas has a well written script to zip contents of a folder. To make it work just copy the script into a batch file and execute it by specifying the folder to be zipped(source). No need to mention destination directory as it is defaulted in the script to Desktop ("%USERPROFILE%\Desktop") – Abhijeet Jan 11 '16 at 02:46
  • 4
    The simpliest would be, in a cmd prompt : `powershell.exe Compress-Archive file-to-zip.txt zippedfile.zip` (it works with folder too) – ThomasGuenet Sep 05 '17 at 08:33
  • This question is now [linked from SS64](https://ss64.com/nt/compress.html)! (SS64 is a prime reference.) – Peter Mortensen Jun 07 '20 at 11:32

14 Answers14

96

Here is an all batch file solution (a variation of my other answer) that will zip a file named c:\ue_english.txt and put it in C:\someArchive.zip:

set FILETOZIP=c:\ue_english.txt

set TEMPDIR=C:\temp738
rmdir %TEMPDIR%
mkdir %TEMPDIR%
xcopy /s %FILETOZIP% %TEMPDIR%

echo Set objArgs = WScript.Arguments > _zipIt.vbs
echo InputFolder = objArgs(0) >> _zipIt.vbs
echo ZipFile = objArgs(1) >> _zipIt.vbs
echo CreateObject("Scripting.FileSystemObject").CreateTextFile(ZipFile, True).Write "PK" ^& Chr(5) ^& Chr(6) ^& String(18, vbNullChar) >> _zipIt.vbs
echo Set objShell = CreateObject("Shell.Application") >> _zipIt.vbs
echo Set source = objShell.NameSpace(InputFolder).Items >> _zipIt.vbs
echo objShell.NameSpace(ZipFile).CopyHere(source) >> _zipIt.vbs
echo wScript.Sleep 2000 >> _zipIt.vbs

CScript  _zipIt.vbs  %TEMPDIR%  C:\someArchive.zip

pause

Write access is required to the parent of the folder stored in TEMPDIR. As this is often not the case for the root of drive C TEMPDIR may have to be changed.

Write access is also required for the folder the .bat script is in (as it generates a file there).

Also, please note that the file extension for the compressed file must be .zip. Attempts to use another extension may result in a script error. Instead, generate the .zip file and rename it.

Oreo
  • 111
  • 4
Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
  • 3
    @quack I was holding out in the hope of some obscure command that I didn't know about. I can see how you might find that a difficult requirement if one doesn't exist, didn't mean to put anybody out. – Aaron Bush Mar 02 '10 at 13:56
  • @PeterMortensen: It may or may not be interesting to see how much this is simplified with Powershell. [Here is a 5 line example](http://serverfault.com/a/201604/10885), but there also exists a `write-zip` cmdlet that can be downloaded from the [Pscx](http://www.codeplex.com/Pscx). – Tamara Wijsman Nov 29 '11 at 13:54
  • I used the zip.exe and cywin1.dll (3mb) to satisfy the ZIP and usage is one line... from the zip itself of using some batch code. I know can use a php bancompile'd with argv and pass a file to it. Sounds cool. "A zip from windows command line" is an old science fiction movie, right? – m3nda Dec 10 '13 at 06:59
  • Why do we have to use a temp folder `TEMPDIR`? I think your intention is to wrap the file `FILETOZIP` by a folder right? – Nam G VU Oct 15 '14 at 02:11
  • @Peter Mortensen, I know this is an old thread, and this is almost what I'm looking for. Is there an option to compress one big file into smaller chunks? – JohnG May 18 '16 at 16:21
  • can this be customized to receive parameters from node.js execute command, name of the source folder and destination of the zip file – user2727195 Jul 12 '16 at 19:13
41

It is possible to zip files without installation of any additional software (I have tested it). The solution is:

Run this in a command-line window to create a ZIP file named C:\someArchive.zip containing all files in folder C:\test3:

CScript  zip.vbs  C:\test3  C:\someArchive.zip

Where file zip.vbs contains:

' Get command-line arguments.
Set objArgs = WScript.Arguments
Set FS = CreateObject("Scripting.FileSystemObject")
InputFolder = FS.GetAbsolutePathName(objArgs(0))
ZipFile = FS.GetAbsolutePathName(objArgs(1))

' Create an empty ZIP file.
CreateObject("Scripting.FileSystemObject").CreateTextFile(ZipFile, True).Write "PK" & Chr(5) & Chr(6) & String(18, vbNullChar)

Set objShell = CreateObject("Shell.Application")

Set source = objShell.NameSpace(InputFolder).Items

objShell.NameSpace(ZipFile).CopyHere(source)

' Required to let the ZIP command execute
' If this script randomly fails or the ZIP file is not complete,
' just increase to more than 2 seconds
wScript.Sleep 2000

I haven't tested it for paths and file names containing spaces. It may work if quotes are put around the command line parameters.


How it works: the built-in zip functionality in Windows (Windows XP and later?) is exposed through COM interfaces from the Windows shell, explorer.exe - that is the "Shell.Application" part. This COM interface can be used from a VBScript script because such a script can access COM components. To make the script fully self-contained it creates an empty ZIP file to get started (one could also create an empty ZIP file and copy it to the target system along with the VBScript script).

VBScript has been installed by default in every desktop release of Microsoft Windows since Windows 98.

CScript.exe is part of Windows Script Host. Windows Script Host is distributed and installed by default on Windows 98 and later versions of Windows. It is also installed if Internet Explorer 5 (or a later version) is installed.

Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
34

Windows 10 build 17063 or later is bundled with tar.exe which is capable of working with ZIP files from the command line.

tar.exe -xf archive.zip

Or to create a ZIP archive:

tar.exe -a -cf Test.zip Test
Frederik
  • 103
  • 3
venimus
  • 1,898
  • 2
  • 15
  • 11
  • 6
    Only correct with the `-a` option when creating. Otherwise it assumes a plain tar archive. – Keilaron Jul 17 '20 at 04:41
  • 1
    wow .. this works but is not documented anywhere as far as I can see – kofifus Jul 26 '21 at 05:57
  • 2
    switches are documented here: https://www.freebsd.org/cgi/man.cgi?query=bsdtar&sektion=1 .. -a stands for "auto-compress" where the format is deduced from the extention – kofifus Jul 26 '21 at 06:06
11

If you are open to using PowerShell, zip capabilities are available in .NET 2.0 (PowerShell is .NET). Here's an a example (source) credit to Mike Hodnick:

########################################################
# out-zip.ps1
#
# Usage:
#    To zip up some files:
#       ls c:\source\*.txt | out-zip c:\target\archive.zip $_
#
#    To zip up a folder:
#       gi c:\source | out-zip c:\target\archive.zip $_
########################################################

$path = $args[0]
$files = $input

if (-not $path.EndsWith('.zip')) {$path += '.zip'} 

if (-not (test-path $path)) { 
  set-content $path ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18)) 
} 

$ZipFile = (new-object -com shell.application).NameSpace($path) 
$files | foreach {$zipfile.CopyHere($_.fullname)}
Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
Beaner
  • 3,621
  • 1
  • 20
  • 16
  • This is basically the same thing as the CScript code in other answers. No .NET features are used (and .NET doesn't have ZIP support anyway). I suspect this might also be sensitive to the timing issue. – Robert Schmidt Feb 25 '14 at 08:14
  • 3
    The .NET System.IO.Compression.ZipFile class was added in version 4.5 . – Concrete Gannet Nov 24 '14 at 08:00
6

There is a single, simple cmd.exe command for this (through PowerShell v5.0+).

To zip:

powershell Compress-Archive -LiteralPath 'C:\mypath\testfile.txt' -DestinationPath "C:\mypath\Test.zip"

To unzip:

powershell Expand-Archive -LiteralPath "C:\mypath\Test.Zip" -DestinationPath "C:\mypath" -Force

Sources:

Special thanks to @Ramhound.

Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
cowlinator
  • 734
  • 1
  • 8
  • 16
  • Please do not post the same answer to multiple questions. If the same information really answers both questions, then one question (usually the newer one) should be closed as a duplicate of the other. You can indicate this by [voting to close it as a duplicate](https://superuser.com/help/privileges/close-questions) or, if you don't have enough reputation for that, [raise a flag](https://superuser.com/help/privileges/flag-posts) to indicate that it's a duplicate. Otherwise tailor your answer to this question and don't just paste the same answer in multiple places. – DavidPostill Apr 21 '20 at 21:49
  • Who is "@Ramhound"? Can you provide a link? – Peter Mortensen Jun 07 '20 at 11:36
  • They are a stack exchange user, somewhere. I don't have a link. – cowlinator Jun 10 '20 at 00:07
6

You can eliminate the risk of timing out during compression by polling for existence of the compression dialog window. This method also handles the user cancelling out of the compression window.

objShell.NameSpace(ZipFile).CopyHere(source)

' Wait for compression window to open
set scriptShell = CreateObject("Wscript.Shell")
Do While scriptShell.AppActivate("Compressing...") = FALSE   
   WScript.Sleep 500 ' Arbitrary polling delay
Loop  

' Wait for compression to complete before exiting script
Do While scriptShell.AppActivate("Compressing...") = TRUE   
   WScript.Sleep 500 ' Arbitrary polling delay
Loop
sblair
  • 12,617
  • 6
  • 48
  • 77
George Yockey
  • 77
  • 1
  • 1
  • 1
    +1. Those code monkey-style "`.Sleep(whatever)`" make me sick. – ivan_pozdeev Jun 25 '13 at 14:30
  • 2
    If I am running a vbs with the above logic for waiting, how will this be handled if being launched via a scheduled task (where no user is physically logged in.) – Wes Jun 27 '13 at 22:05
5

If you are able to install the Resource Kit Tools, you will find a command line tool called COMPRESS that can create compressed archive files like zip.

Microsoft (R) File Compression Utility  Version 5.00.2134.1
Copyright (C) Microsoft Corp. 1990-1999.  All rights reserved.

Compresses one or more files.

COMPRESS [-r] [-d] [-z] Source Destination
COMPRESS -r [-d] [-z] Source [Destination]

  -r            Rename compressed files.
  -d            Update compressed files only if out of date.
  -zx           LZX compression.
  -z            MS-ZIP compression.
  -zq[n]        Quantum compression and optional level
                (in range 1-7, default is 4).
  Source        Source file specification.  Wildcards may be used.
  Destination   Destination file | path specification.
                Destination may be a directory.
                If Source is multiple files and -r is not specified,
                Destination must be a directory.
cowgod
  • 1,854
  • 3
  • 15
  • 23
3

If on Windows 8 or Windows Server 2012 you'll have PowerShell and .NET 4.5, so you can do this:

zip.ps1 (usage: -directory <directory to zip up> -name <zip name>):

param (
    [string]$directory,
    [string]$name
)

Add-Type -Assembly System.IO.Compression.FileSystem
[System.IO.Compression.ZipFile]::CreateFromDirectory($directory, $name, [System.IO.Compression.CompressionLevel]::Optimal, $false)

zip.bat (if you need a helper to call PowerShell for you, the directory is first argument and the ZIP name second):

@Echo Off
powershell -ExecutionPolicy ByPass -Command "& '%~dpn0.ps1' -directory '%1' -name '%2'"
Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
Hashbrown
  • 2,782
  • 4
  • 32
  • 47
3
'Keep script waiting until compression is done
Do Until objShell.NameSpace( ZipFile ).Items.Count = objShell.NameSpace( InputFolder ).Items.Count
    WScript.Sleep 200
Loop
Gnoupi
  • 8,108
  • 9
  • 43
  • 59
  • exactly what i was looking for.. but it does give me an error "missing on empty Zip file" – Sonic Soul Apr 03 '14 at 21:25
  • For some reason this never increments, if I print `objShell.NameSpace( ZipFile ).Items.Count` inside the loop, it's always 0 even though the zip file is created and it has the expected contents inside... – Thom Nichols Apr 27 '15 at 20:20
2

This is a mutation of the accepted answer. I do a ton of automation tasks on up to thousands of files at a time, so I can't just sleep for 2 seconds and not care about it. I gleaned the workaround here, which is also similar to Jiří Kočara's answer here.

This will cause the destination folder to be pinged every 200 ms, which is approximately as fast as Microsoft says to check for file system updates.

Set parameters = WScript.Arguments
Set FS = CreateObject("Scripting.FileSystemObject")
SourceDir = FS.GetAbsolutePathName(parameters(0))
ZipFile = FS.GetAbsolutePathName(parameters(1))
CreateObject("Scripting.FileSystemObject").CreateTextFile(ZipFile, True).Write "PK" & Chr(5) & Chr(6) & String(18, vbNullChar)
Set shell = CreateObject("Shell.Application")
Set source_objects = shell.NameSpace(SourceDir).Items
Set ZipDest = shell.NameSpace(ZipFile)
Count=ZipDest.Items().Count
shell.NameSpace(ZipFile).CopyHere(source_objects)
Do While Count = ZipDest.Items().Count
    wScript.Sleep 200
Loop
Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
2

Multiple files / directories with simplified code.

cscript zip.vbs target.zip sourceFile1 sourceDir2 ... sourceObjN

zip.vbs file

Set objArgs = WScript.Arguments
ZipFile = objArgs(0)

' Create empty ZIP file and open for adding
CreateObject("Scripting.FileSystemObject").CreateTextFile(ZipFile, True).Write "PK" & Chr(5) & Chr(6) & String(18, vbNullChar)
Set zip = CreateObject("Shell.Application").NameSpace(ZipFile)

' Add all files/directories to the .zip file
For i = 1 To objArgs.count-1
  zip.CopyHere(objArgs(i))
  WScript.Sleep 10000 'REQUIRED!! (Depending on file/dir size)
Next
Olc
  • 29
  • 2
1

As of Build 1803 (March 2018), Windows includes tar.exe at C:\Windows\System32\tar.exe. Tar can be used to create and extract zip files. Type tar /? for more info.

cowlinator
  • 734
  • 1
  • 8
  • 16
1

Here's my attempt to summarize built-in capabilities in Windows for compression and uncompression - How can I compress (/ zip ) and uncompress (/ unzip ) files and folders with batch file without using any external tools? - with a few given solutions that should work on almost every Windows machine.

As regards to the shell.application and WSH, I preferred the JScript one as it allows a hybrid batch/JScript file (with .bat extension) that does not require temporary files. I've put unzip and zip capabilities in one file plus a few more features.

Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
npocmaka
  • 1,259
  • 12
  • 12
-5

The Windows command line now provides the COMPACT command which, as far as I can tell, is native to Windows. That should meet the requirements requested unless I missed something.

Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
  • 11
    `compact` existed since XP and is a tool to manage NTFS compression – Oliver Salzburg May 31 '13 at 20:06
  • @user228211 your answer is excellent fit for this question "use windows built-in zip capability". It should be one of the top answers due to simplicity and direct match to questions. Not sure why people are downvoting???? – LMSingh Feb 28 '20 at 22:31