/build/static/layout/Breadcrumb_cap_w.png

Ahead Software Nero

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 4.4k  |  Created: 04/11/2008

Average Rating: 0
Nero has 1 inventory records, 2 Questions, 0 Blogs and 0 links. Please help add to this by sharing more!

Deployment Tips (8)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 4 / 5 (Somewhat Difficult) based on 5 ratings
Most Commonly Reported Deployment Method
Windows Installer with Custom Transform (MST)
122
Note
I created a transform with following properties
AGREETOLICENSE=Yes
EULA_AGREEMENT=1
SERIALNUM_USERVAL=XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX

I set the Feature Level to 999 for features I needed to install.

Install using following command line:
SetupX.exe NERO_SCOUT="FALSE" /qb! /NORESTART TRANSFORMS="AHD-Nero-8.1-R01-4224.mst"

v8.10.21 has a known pending reboot issue:
"A system reboot was requested by previous software installation (e.g. a Windows update).

This has apparantly been fixed in later versions.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
122
Command Line
Created the following script to uninstall nero silently without it rebooting:

msiexec /X Data\Nero.msi /qb- /norestart DONOTRUNSETUPX="1" STARTPARAM="CallFromExe"
msiexec /X {3921A67A-5AB1-4E48-9444-C71814CF3027} /qb-
msiexec /X {56C049BE-79E9-4502-BEA7-9754A3E60F9B} /qb-
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
120
Note
Very Similar to Above
Packaged Nero 8.3.2.1

Edited the 1031.mst (As I was Packaging the German Version)
Added/Edited Properties :
SERIALNUMBER - XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX
USERNAME - Your User Name
COMPANYNAME - Your Company Name
SERIALNUM_USERVAL - XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX
REBOOTYESNO - NO
REBOOT - REALLYSUPPRESS
SERIALNUM_CORRECT - YES
AGREETOLICENSE - YES
INCLANGUAGES - DEU
DESKTOP_SHORTCUT - 0
EULAACCEPTED - 1
NO_FILEASSOC - NeroPhotoSnapED1EAF52, NeroShowTimeD773A6E2, NeroCoverDesigner7CE8D626 (Stops associations of jpg,gif,wmf,avi etc with nero applications)
NSC_DEFAULT_OFF - TRUE
NSC_OPT - FALSE

Set the Level Of NeroToolBar6231A394 to 0 In The Feature Table to stop the toolbar installing

Command To Install :
<FullPath to source>\SetupX.exe NERO_SCOUT="FALSE" /NORESTART TRANSFORMS="<Path To Transform>\Nero 8 - 8.3.2.1.mst" /QB-!

Full Rights were applied to HKLM\Software\Nero for Users (In A Locked Down Env)

For Uninstall A VB Script/Wise EXE Script File That
- Used A Copy of Neros General-CleanTool that ran silently
- TASKKILLS - NMINDEXINGSERVICE.EXE, NMINDEXSTORESVR.EXE & NBSERVICE.EXE
- Removed Files Left Behind in C:\Program Files\Nero, C:\Program FIles\NeroInstall.bak & c:\Program Files\Common Files\Nero
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
120
Note
To bypass the "Please Register Your Copy Of nero" Screen - you must rename the following 2 files AFTER they have been installed to the machine :

NOSProductRegistration.dll
NOSMyNeroRegistration.dll

They are located in the C:\Program Files\Nero\Nero8\OnlineServices Folder...

Please note that just renaming them in the FILE table of the transform will not bypass the Registration Screen...
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Note
To install a single feature of the Nero 8 MSI with an MST, it would be easier to use the ADDLOCAL property. For instance, installing only the Nero Burning ROM feature, the commandline would be:

MSIEXEC /I Nero.msi TRANSFORMS=Nero.mst ADDLOCAL=NeroBurningRomBCAFF604 /qb

Don't know about other package programs, but in WPS it's easy to use this property inside the MSI/MST. Use the Set Property action in the MSI Script section, and define it there. This is useful when using Active Directory or any other deployment method that make the use of properties on the commandline impossible.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
8
Note
I created a custom Action in a Transform file (vbScript, embedded Code) to Install the Burnrights and rename the Registration files.

Section --> Execute Immediate; after Install Finalize

Code:
Dim strProgramF
Dim strPath
Dim Command
Dim wshshell
Dim objFSO
Dim strRegFile1
Dim strRegFile2

Set WshShell = CreateObject("Wscript.Shell")
strProgramF = WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ProgramFilesDir")
strPath = strProgramF & "\Nero\Nero8\Nero Toolkit\NeroBurnrights.exe"

'only for Errorhandling
'MsgBox strPath
'************* Set Burnrights *****************************
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(strPath) Then
WshShell.Run Chr(34) & strPath & chr(34) & " /all /sec_class", 1, True
'wshshell.Popup "Datei " & strPath & " existiert."
Else
'wshshell.Popup "File " & strPath & " doesnt exist."
End If
'********************** Rename File To Register ****************
' locate File to Rename
strRegFile1 = strProgramF & "\Nero\Nero8\OnlineServices\NOSMyNeroRegistration.dll"
strRegFile2 = strProgramF & "\Nero\Nero8\OnlineServices\NOSProductRegistration.dll"

'for ErrorHandling
'msgbox strRegFile1 & strRegFile2

' Chek if File Exist and Rename File
If objFSO.FileExists(strRegFile1) Then
objFSO.MoveFile strRegFile1, strProgramF & "\Nero\Nero8\OnlineServices\_NOSMyNeroRegistration.dll"
Else
'wshshell.Popup "File " & strRegFile1 & " doesnt exist."
End If
If objFSO.FileExists(strRegFile2) Then
objFSO.MoveFile strRegFile2, strProgramF & "\Nero\Nero8\OnlineServices\_NOSProductRegistration.dll"
Else
'wshshell.Popup "File " & strRegFile2 & " doesnt exist."
End If
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
2
Note
If your unattended setup of seems to prompt you endlessly with errors while registering Nero's dll's, you may have a problem with SideBySide Assemblies. Installing VisualC++2005 Redistributable prior to Nero should solve the issue. You will see EventID 59 and 32 from Source 'SideBySide' in System Eventlog in such a case. The setup using the GUI will work without problems.

The complete error message is:

"Unable to register xyz.dll. Error code -2147010895"
"This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. Error=14001, FACILITY=7"

Experienced with Nero 8 Essentials OEM running under Windows XP Pro.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Command Line
silent install:
SetupX.exe /qn SERIALNUMBER="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" EULAACCEPTED="1"
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (1)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Versions

Nero

Version

8

Questions & Answers (2)

Questions & Answers related to Ahead Software Nero

3
ANSWERS
34
ANSWERS

Blogs (0)

Blog posts related to Ahead Software Nero

Reviews (0)

Reviews related to Ahead Software Nero

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ