Answers for "how to unzip using unzip 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
2

linux unzip command

After installing the unzip utility, if you want to extract to a particular destination folder, you can use:

unzip file.zip -d destination_folder

If the source and destination directories are the same, you can simply do:

unzip file.zip
Posted by: Guest on June-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language