|
Post Number: 1
|
highend 

Group: Members
Posts: 5
Joined: Aug. 2007
|
 |
Posted on: Aug. 23 2007,19:50 |
|
 |
Hi,
does the latest UltraISO have command line parameters to compress an .iso image to .isz format and vice versa (from .isz to iso with a dialog that asks for the password?
Btw password... Which encryption method is used for the stored registry entry (for the password)?
Tia, Highend
|
 |
|
|
Post Number: 2
|
|
Post Number: 3
|
|
Post Number: 4
|
|
Post Number: 5
|
xoben 

Group: Super Administrators
Posts: 2200
Joined: Nov. 2004
|
 |
Posted on: Aug. 27 2007,09:11 |
|
 |
QUOTE Is 1 the heaviest compression or is 6? 1 - Fastest 6 - Heavy
QUOTE Regarding -encrypt x, I assume 1 is AES128, 2 is AES192, and 3 is AES256?
2 - AES128 3 - AES192 4 - AES256
Edited by xoben on Aug. 27 2007,09:14
|
 |
|
|
Post Number: 6
|
Galapo 

Group: Members
Posts: 37
Joined: Oct. 2006
|
 |
Posted on: Aug. 27 2007,18:13 |
|
 |
Thanks xoben for that information.
I'm going to change a few batch files now knowing this...
Thanks, Galapo.
|
 |
|
|
Post Number: 7
|
picurael 

Group: Members
Posts: 1
Joined: Jul. 2008
|
 |
Posted on: Jul. 21 2008,07:09 |
|
 |
thank you for this info, I didn't find it in ultraiso's help file (iso2isz command line argument parameter), and I didn't think it would be on their website's help page because I have the last version.. fortunately I found this forum thread on google. thanks again. ultraiso is one of my favorite software and i wish I had the money to afford buying it because it deserves supporting.
|
 |
|
|
Post Number: 8
|
Obsidian-step 

Group: Members
Posts: 1
Joined: May 2011
|
 |
Posted on: May 12 2011,18:09 |
|
 |
Hi. May it possible to compress Folder to *isz from shell?
|
 |
|
|
Post Number: 9
|
zsqzsqzsq 

Group: Members
Posts: 2
Joined: Apr. 2012
|
 |
Posted on: May 18 2012,04:07 |
|
 |
@echo off rem 本批处理作用是为了把现成的ISO文件转换成ISZ文件 title ISO2ISZ echo 正在把%1文件从ISO格式转换为ISZ格式...
if exist "%ProgramFiles%\UltraISO\UltraISO.exe" ( if not exist "%ProgramFiles%\UltraISO\ISO2ISZ.CMD" COPY "%~f0" "%ProgramFiles%\UltraISO\ISO2ISZ.CMD" goto DO_ISO2ISZ )
if exist "%ProgramFiles(x86)%\UltraISO\UltraISO.exe" ( if not exist "%ProgramFiles(x86)%\UltraISO\ISO2ISZ.CMD" COPY "%~f0" "%ProgramFiles(x86)%\UltraISO\ISO2ISZ.CMD" goto DO_ISO2ISZ ) else ( echo "UltraISO程序不存在!" pause goto END )
:DO_ISO2ISZ if exist "%ProgramFiles%\UltraISO\UltraISO.exe" set ULTRAISO="%ProgramFiles%\UltraISO\UltraISO.exe" if exist "%ProgramFiles(x86)%\UltraISO\UltraISO.exe" set ULTRAISO="%ProgramFiles(x86)%\UltraISO\UltraISO.exe"
%ULTRAISO% -compress 6 -bin2isz %1 -output "%~dpn1.isz" rem 使用%ULTRAISO% -compress 6 -input %1 -output "%~dpn1.isz"压缩得到的ISZ文件解压缩出现来的文件会与原文件检验码不一致(ultraiso版本9.5.2.2836)
if %errorlevel% neq 0 ( echo %1压缩失败! del "%~dpn1.isz" pause goto END )
rem 按道理说,压缩后返回errorlevel为0,就说明压缩成功;可为了保险起见,还想在ISZ测试成功后再删除原ISO文件。 rem %ULTRAISO% -verify "%~dpn1.isz" if %errorlevel% equ 0 ( echo %1压缩成功! del %1 )
:END
rem 右键菜单调用该批处理的注册表,请根据X64,X86对路径作相应的修改。 rem Windows Registry Editor Version 5.00 rem rem [HKEY_CLASSES_ROOT\.iso] rem @="UltraISO" rem rem [HKEY_CLASSES_ROOT\UltraISO\shell\ISO2ISZ] rem @="压缩为ISZ格式" rem rem [HKEY_CLASSES_ROOT\UltraISO\shell\ISO2ISZ\command] rem @="\"C:\\Program Files (x86)\\UltraISO\\ISO2ISZ.cmd\" \"%1\"" rem
|
 |
|
|
Post Number: 10
|
zsqzsqzsq 

Group: Members
Posts: 2
Joined: Apr. 2012
|
 |
Posted on: May 18 2012,04:09 |
|
 |
I want to know how to test .ISZ via command line.
|
 |
|
|
|