Windows Explorer(少なくともWindows XP以降)はZipファイルの基本的なサポートをいくつか備えているため、同等のコマンドラインがあるはずですが、その兆候を見つけることができません。
Windows(XP、Vista、7、8、2003、2008、2013)には組み込みのコマンドラインZipツールが付属していますか、それともサードパーティのツールを使用する必要がありますか?
これはWindowsには組み込まれていませんが、 Resource Kit Tools にCOMPRESS
として含まれています。
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.
例:
COMPRESS temp.txt compressed.txt
COMPRESS -R *.*
COMPRESS -R *.exe *.dll compressed_dir
私が知っていることではありません。サードパーティのツールに関する限り、7Zipにはかなりのコマンドラインインターフェースがあり、バイナリはアプリのアプリのディレクトリにあるアプリと一緒に配布できるので、事前にインストールしておく必要はありません。
Powershellはそうします。見る:
Windows PowerShellでファイルを圧縮してから、Windows Vistaサイドバーガジェットをパッケージ化する
.Net 4.5にはこの機能が組み込まれており、PowerShellで利用できます。 Server 2012、Windows 8を使用しているか、.Net 4.5を手動でインストールする必要があります。
[Reflection.Assembly]::LoadWithPartialName("System.IO.Compression.FileSystem")
$Compression = [System.IO.Compression.CompressionLevel]::Optimal
$IncludeBaseDirectory = $false
$Source = "C:\Path\To\Source"
$Destination = "C:\CoolPowerShellZipFile.Zip"
[System.IO.Compression.ZipFile]::CreateFromDirectory($Source,$Destination,$Compression,$IncludeBaseDirectory)
スーパーユーザーサイトで見つかった別の解決策は、.batファイルでWindowsネイティブcomオブジェクトを使用します。