Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show extraction progress of 7zip inside cmd?

7z.exe do not show any extraction progress in cmd."C:\Program Files\7-Zip\7zG.exe" -y x -pPASSWORD "D:\Myfile.rar" Extracts the file with a GUI progress-bar. But I don't want a GUI progress bar. I want to show the progress in terms of percentage inside cmd. i.e, I want to use 7z.exe instead of 7zG.exe with percentage progress shown.

like image 642
Deb Avatar asked Jan 15 '14 17:01

Deb


1 Answers

You can use -bsp1 switch to view the progress

'C:\Program Files\7-Zip\7z.exe'  a  -bsp1
like image 55
justintjacob Avatar answered Sep 18 '22 06:09

justintjacob