web-dev-qa-db-ja.com

7-ZipがDOSプロンプトまたはコマンドラインから機能しない

7-Zipをインストールしましたが、Windowsからは動作しますが、DOSプロンプトやコマンドラインからは動作しません。

7z e  max_logs_can_messages.tgz

収量:

'7z' is not recognized as an internal or external command,
operable program or batch file.
4
jdl

マシンのPATHにバイナリを追加する必要があります

詳細はこちらをご覧ください: http://www.7-Zip.org/faq.html

7
Screenack

7-Zipを次のような既知のパスにコピーできます。

C:\Windows\system32
C:\Windows
C:\Windows\System32\Wbem

または、フルパスで7-Zipを呼び出します。

C:\Program Files\7-Zip\7z.exe

またはあなたは物事を行う スクリーンアックは言った ;)

2
syss

7-ZipフォルダーをPATHに追加する必要があります。

setx /M path "%path%;C:\Program Files\7-Zip\"

または、 Easy 7-Zip の場合:

setx /M path "%path%;C:\Program Files\Easy 7-Zip\"
1
andymnc

7-ZipをシステムPATH環境変数として登録する必要があります。 Windows 7および8でこれを行う簡単な方法は、コマンドラインから実行することです。

setx path "%path%;C:\Program Files\7-Zip"
1
Chris Halcrow

cmdまたはgit bashで圧縮中-次のようなエラーが発生する

7z:command not found 

solution:

  • マシンに7zをインストールする
  • 環境変数->ユーザー変数でパスを設定します
  • パス->編集->新規(パスを追加-C:\ Program Files\7-Zip)-> OK

Now to use 7z in git Bash

  • C:\ Program Files\7-Zipに移動し、7z.exeファイルをコピーします
  • C:\ Program Files\Git\usr\binに移動し、7z.exeファイルを貼り付けます

これで、Git Bashで7zを使用できるようになります

0
DHEERAJ