Help - Search - Members - Calendar
Full Version: Nero Help Please.
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
sweettalkin_woma
using this in batch file
ECHO installing Nero 63117
start/wait %systemdrive%\Install\nero63117.exe /SILENT /NOREBOOT /****KEY****/WRITE_SN


still need to enter key after install any ideas please.
STW
Sanjay
QUOTE (sweettalkin_woma @ Oct 24 2004, 01:26 AM)
using this in batch file
ECHO installing Nero 63117
start/wait %systemdrive%\Install\nero63117.exe /SILENT /NOREBOOT /****KEY****/WRITE_SN

still need to enter key after install any ideas please.
STW

You probably need to add 'SN=' before the actual KEY.
CODE
ECHO installing Nero 63117
start/wait %systemdrive%\Install\nero63117.exe /SILENT /NOREBOOT /SN=****KEY****/WRITE_SN
sweettalkin_woma
Thanks i will try that smile.gif
Fast reply.
STW.
DLF
I'm using exactly same version as you and my syntax works perfectly. Note the differences between mine and yours.

ECHO.
ECHO Installing Nero Burning ROM V6
ECHO Please wait...
start /wait %systemdrive%\install\Applications\Nero\Nero63117.exe /silent /noreboot /no_ui /sn=XXXX-XXXX-XXXX-XXXX-XXXX-XXXX /write_sn

N.B. Syntax should all be on same line. But space limits split it here.
Incroyable HULK
Lois, What kind of key do you have?

if you have an OEM key you cannot use this switch /sn=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx and you should put your key in a .reg file

CODE
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Ahead\Nero - Burning Rom\Info]
"User"="Something"
"Company"="Something"
"Serial6"="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx"


and call this file before your installation of nero (example with RunOnceEx.cmd)

CODE
REG ADD %KEY%\001 /VE /D "Nero Burning ROM 6.6.0.0" /f
REG ADD %KEY%\001 /V 1 /D "REGEDIT /S %systemdrive%\install\Applications\Nero\register.reg" /f
REG ADD %KEY%\001 /V 2 /D "%systemdrive%\install\Applications\Nero\nero.exe /silent /noreboot /no_ui" /f
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.