Answers for "unzip command in command prompt"

2

How to unzip a file using the cmd?

echo unzi started
powershell -Command "Expand-Archive -Path advanced-systemcare-setup.zip -DestinationPath $env:USERPROFILEDesktop"
echo done
pause
Posted by: Guest on October-17-2020
1

cmd unzip windows

# Unzip files of the current directory calling the Powershell
powershell -Command "Get-ChildItem . -Filter *.zip | Expand-Archive -DestinationPath . -Force"
Posted by: Guest on September-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language