全てのフォルダをひとつずつ圧縮
for /d %%f in (*) do (powershell -command "Compress-Archive -Path %%f -DestinationPath %%f.zip")
ZIPファイルををまとめて解凍
for %%f in (*.zip) do (powershell -command "Expand-Archive -Path %%f -DestinationPath %%~na/../")
Go to list of users who liked
More than 1 year has passed since last update.
全てのフォルダをひとつずつ圧縮
for /d %%f in (*) do (powershell -command "Compress-Archive -Path %%f -DestinationPath %%f.zip")
ZIPファイルををまとめて解凍
for %%f in (*.zip) do (powershell -command "Expand-Archive -Path %%f -DestinationPath %%~na/../")
Register as a new user and use Qiita more conveniently
Go to list of users who liked