0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

windows11でzipファイルの解凍ができない場合の対処法

Last updated at Posted at 2024-06-10

現象

ダウンロードしてきたzipファイルを右クリック→すべて展開で解凍しようとするとエラーが起こる。

原因

ファイルが大きすぎるため。
windows標準のzipツールでは2GB以上のzipファイルは解凍できないらしい

対処方法

他のzipツールを用いるなど様々あるが、今回はExpand-Archiveコマンドレットを用いた。
※コマンドレット:PowerShellで標準で利用可能なコマンドのこと

以下のコマンドをpower shellから実行すると解凍できる

Expand-Archive -Path {zipのパス} -DestinationPath {展開先のディレクトリ}

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?