LoginSignup
0
0

PowerShellを使ってディレクトリ内のZipをまとめて解凍する

Posted at

目的

備忘です。PowerShellを使ってディレクトリ内のZipをまとめて解凍するやり方がわからなかったので。7Zip使えればいけるけど、大量にあると窓出るまで時間かかるので、進んでるかどうかもわからんし・・・

環境

  • Windows11 Pro

コード

Get-ChildItem *.zip | Expand-Archive -DestinationPath .\ 

必要に応じて

Get-ChildItem *.zip | Expand-Archive -DestinationPath .\ -Force 

REFERENCEs

さいごに

お疲れ様でした!

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