3

Instead of using Right-Click/Send To/Compress (Zipped) Folder.

I am using Windows Server 2003 Enterprise Edition.

Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311
the_lotus
  • 135

5 Answers5

7

I would highly recommend 7zip for command-line archiving in windows. It is incredibly simple yet extremely feature rich, I have many a script that rely on it. Check out some CLI examples.

TJ L
  • 1,947
4

Although I would recommend using 7-zip as tj111 recommended, to use the built in folder compression use the compact.exe command. This is installed in the \windows\system32 folder on Windows XP. See compact.exe /? for command line reference.

heavyd
  • 65,321
3

I just saw this on ServerFault.com:

https://serverfault.com/questions/39071/does-windows-have-a-built-in-zip-command-for-the-command-line

It's not built in to windows, but it's in the resource kit

C:>compress /?

Syntax:

COMPRESS [-R] [-D] [-S] [ -Z | -ZX ] Source Destination COMPRESS -R [-D] [-S] [ -Z | -ZX ] >Source [Destination]

Description: Compresses one or more files.

Parameter List: -R Rename compressed files.

-D Update compressed files only if out of date.

-S Suppress copyright information.

-ZX LZX compression. This is default compression.

-Z MS-ZIP compression.

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.

Examples: COMPRESS temp.txt compressed.txt COMPRESS -R . COMPRESS -R *.exe *.dll >compressed_dir

Hondalex
  • 1,844
2

using zip and unzip on the windows command line

however, this is not about the 'built-in windows file compression tool', you'll have to download 2 executables (zip and unzip, free)

0

I use Info-Zip (open source zip/unzip command line utility) and in order to increase the speed of my windows searches, gzip the resulting zip files.

Dave
  • 614