View Single Post
Old 05-18-2014, 03:24 AM   #55
sbdomo
Enthusiast
sbdomo began at the beginning.
 
Posts: 27
Karma: 10
Join Date: Jan 2014
Device: ipad
Hello,
On my PC with WinRar, I use a batch file (for exemple convert.bat) to convert my cbr to cbz with this code:
Code:
ren *.cbr *.rar
"C:\Program Files\WinRAR\winrar" cv -y *.rar
ren *.zip *.cbz
In winrar's default parameters, you must use zip as default format and you must put the good path for winrar (see : http://en.helpdoc-online.com/winrar_.../helpcmdcv.htm).

If you want delete cbr/rar files you can add:
Code:
@echo Press CTRL-C if you don't wan't your RAR's removed!
pause
del *.rar
sbdomo is offline   Reply With Quote