web-dev-qa-db-ja.com

cmdコマンドでファイルを解凍(7-Zip)

CMDでファイルを解凍しようとしました。

それで、winzip(およびcmdへのプラグイン)、winrar、7-Zipをインストールします。

しかし、CMDで コマンドを実行 しようとすると:

7z e myzip.Zip

次のエラーが表示されます。

7z is not recognized as an internal or external command

さらに、7-zのフォルダーを環境変数に追加しました(プロパティ->詳細設定->環境変数->ユーザー変数->パスを選択し、C:\Program Files\7-Zipを追加します

理由は何ですか?

49
Adam Sh

コマンドプロンプトで次の操作を行うと、ユーザー環境変数に追加しても問題なく機能します。

set PATH=%PATH%;C:\Program Files\7-Zip\
echo %PATH%
7z

出力(または同様のもの-Windows 7を実行している私のラップトップ上にあるもの)として表示されるはずです。

C:\Users\Phillip>set PATH=%PATH%;C:\Program Files\7-Zip\

C:\Users\Phillip>echo %PATH%
C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Wi
ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\
WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\To
ols\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Fil
es (x86)\QuickTime\QTSystem\;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Notepad+
+;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\7-Zip\

C:\Users\Phillip>7z

7-Zip [64] 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18

Usage: 7z <command> [<switches>...] <archive_name> [<file_names>...]
       [<@listfiles...>]

<Commands>
  a: Add files to archive
  b: Benchmark
  d: Delete files from archive
  e: Extract files from archive (without using directory names)
  l: List contents of archive
  t: Test integrity of archive
  u: Update files to archive
  x: eXtract files with full paths
<Switches>
  -ai[r[-|0]]{@listfile|!wildcard}: Include archives
  -ax[r[-|0]]{@listfile|!wildcard}: eXclude archives
  -bd: Disable percentage indicator
  -i[r[-|0]]{@listfile|!wildcard}: Include filenames
  -m{Parameters}: set compression Method
  -o{Directory}: set Output directory
  -p{Password}: set Password
  -r[-|0]: Recurse subdirectories
  -scs{UTF-8 | WIN | DOS}: set charset for list files
  -sfx[{name}]: Create SFX archive
  -si[{name}]: read data from stdin
  -slt: show technical information for l (List) command
  -so: write data to stdout
  -ssc[-]: set sensitive case mode
  -ssw: compress shared files
  -t{Type}: Set type of archive
  -u[-][p#][q#][r#][x#][y#][z#][!newArchiveName]: Update options
  -v{Size}[b|k|m|g]: Create volumes
  -w[{path}]: assign Work directory. Empty path means a temporary directory
  -x[r[-|0]]]{@listfile|!wildcard}: eXclude filenames
  -y: assume Yes on all queries
84
Phil Street

Phil Streetの投稿について:

64ビットOSを実行している場合、デフォルトのx64ではなく、32ビットプログラムフォルダーに実際にインストールされる場合があります。 7-Zipがインストールされている場所を確認し、Program Files (x86)にある場合は、代わりにこれを使用してみてください。

PATH=%PATH%;C:\Program Files (x86)\7-Zip
6
mike

パスがC:\ Program Files\7-Zipの.exeファイルを指していることを確認します(binディレクトリにある場合があります)

1
shreyas

Windows 10では、管理者としてバッチファイルを実行する必要がありました。

0
Ulysses Alves