Read the post carefully: "OWNERS of Nero 6.....".The package allows you to change the serial to your personal copy. Naturally you would, wouldn't you? I cetainly did.You now that this is not LEGAL ???

Moderators: Hacker, petermad, Stefan2, white
Possibly because The Creator was too busy congratulating himself at his cleverness to remember to add instructions to correct the reg file??So then why is a SERIAL in the RegFile in the pakage ?
Code: Select all
menu25=-Convert 7Z/ZIP/CAB/LHA/TAR/TGZ/BZ2/YZ1/BGA/RAR/ACE archives
menu26=Convert to 7Z
cmd26=com_convert
param26=""%P%N" 7z"
menu27=Convert to ZIP
cmd27=com_convert
param27=""%P%N" zip"
menu28=Convert to RAR
cmd28=com_convert
param28=""%P%N" rar"
menu29=--
Code: Select all
@echo off
FOR ....... read the lines of the given temporary file list
com_convert "%1" %2
Try this:TychoBarfy wrote:Code: Select all
FOR ....... read the lines of the given temporary file list com_convert "%1" %2
If there's someone with better batch knowledges - like Sheepdog- he could write a loop into the batch which takes
"all needed parameters of some marked files" from a temporary list.
Code: Select all
FOR /F "tokens=*" %%i in (%1) do com_convert "%%i" %2
That's right.TychoBarfy wrote:Holger, some small questions. %1 stands for the temporary file list %L in TC?
Code: Select all
menu24=--
menu25=-Convert archives
menu26=To 7Z ...
cmd26=cconv3
param26=%L 7z
....
menu36=To ZIP ...
cmd36=cconv3
param36=%L zip
menu37=--
Code: Select all
@ECHO OFF
FOR /F "tokens=*" %%I IN (%1) DO com_convert "%%I" %2
Code: Select all
@ECHO OFF
SETLOCAL
SET PATH=%PATH%;C:\PathToArcView
FOR /F "tokens=*" %%I IN (%1) DO com_convert "%%I" %2
ENDLOCAL