Hi
Using the Windows 8.x command prompt, how do I decompress a zip file with the Microsoft commands?
Thanks
Bye
Decompress a zip file using the Windows 8.x command prompt
Moderator: DosItHelp
Re: Decompress a zip file using the Windows 8.x command prom
check this - https://github.com/npocmaka/batch.scrip ... /zipjs.bat :
more info here:
http://stackoverflow.com/questions/2804 ... th-batch-f
Code: Select all
call zipjs.bat unzip -source C:\myDir\myZip.zip -destination C:\MyDir
more info here:
http://stackoverflow.com/questions/2804 ... th-batch-f
Re: Decompress a zip file using the Windows 8.x command prom
npocmaka_ wrote:check this - https://github.com/npocmaka/batch.scrip ... /zipjs.bat :Code: Select all
call zipjs.bat unzip -source C:\myDir\myZip.zip -destination C:\MyDir
more info here:
http://stackoverflow.com/questions/2804 ... th-batch-f
This is the only solution for Windows 8.x or there are other solutions more direct, as a Powershell command or an exe command, to do this?
Thanks
Bye
Re: Decompress a zip file using the Windows 8.x command prom
On windowd 8* yo have better solutions as you have .NET 4.5 which have real zipping classes (earlier versions have only gzipstreams that can be used only with single files),
And so they are accessible through powershell.There are more than enough examples in MSDN.
https://msdn.microsoft.com/en-us/librar ... e(v=vs.110).aspx
And so they are accessible through powershell.There are more than enough examples in MSDN.
https://msdn.microsoft.com/en-us/librar ... e(v=vs.110).aspx