Jump to content

Nero 7 Ultra only The Basic's.


keytotime

Recommended Posts


Hi to everybody.

All the above seems fine BUT is there anyway to install everything silently like we did Nero 6.

Personally i am not interested in removing and customizing. i Have a greek edition and i want to install all (except NeroScout if is possible but if i can disable it then no problem)

SO how i can do it.

If it seems too noobish for u sorry

Edited by masteripper
Link to comment
Share on other sites

@boogy: you can set your serial into PROPERTY sections in the default mst (for me 1036.mst because french package ...) (with adminstudio) and you replace the demo key by your serial ...

@all:

Why nero has cabbed all files ?? why has changed their distribution ? before, with nero6, all was okay ...

Edited by sonic
Link to comment
Share on other sites

At this point I find it most efficient to use AutoIt to compile a custom installer. Here is my autoit script.

; AutoIt options.
AutoItSetOption("TrayIconHide", 1)
AutoItSetOption("WinTitleMatchMode", 4)

; Verify only one instance of installer is running.
$installername = "Nero 7 AutoSetup"
If WinExists($installername) Then Exit
AutoItWinSetTitle($installername)

; Installation variables.
$regpath = @ScriptDir & "\Register.reg"
$installerpath = @ScriptDir & "\SetupX.exe"
$programpath = @ProgramFilesDir & "\Nero\Nero 7\Core\nero.exe"

; Verify installation file path.
If Not FileExists($installerpath) Then
SplashTextOn("Error", @CRLF & " Cannot find file:" & @CRLF & " " & $installerpath, 500, 90, -1, -1, 4, "Arial", 11, 11)
WinActivate("Error")
Sleep(4000)
SplashOff()
Exit
EndIf

; Verify registration file path.
If Not FileExists($regpath) Then
SplashTextOn("Error", @CRLF & " Cannot find file:" & @CRLF & " " & $regpath, 500, 90, -1, -1, 4, "Arial", 11, 11)
WinActivate("Error")
Sleep(4000)
SplashOff()
Exit
EndIf

; Verify application is not already installed.
If FileExists($programpath) Then
SplashTextOn("Error", @CRLF & @CRLF & "Ahead Nero 7 already installed.", 350, 90, -1, -1, -1, "Arial", 11, 11)
WinActivate("Error")
Sleep(4000)
SplashOff()
Exit
EndIf

; Start installation.
Run('regedit /s "' & $regpath & '"')
Run("SetupX.exe")

; Welcome dialog.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Installasjonsveiviseren installerer Nero 7 Demo på datamaskinen. Klikk Neste for å fortsette.")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Installasjonsveiviseren installerer Nero 7 Demo på datamaskinen. Klikk Neste for å fortsette.", "Button1")

; License agreement.
WinWait("Nero 7 Demo - Installasjonsveiviser", "License Agreement")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "License Agreement", "Button6")
Sleep(500)
ControlClick("Nero 7 Demo - Installasjonsveiviser", "License Agreement", "Button3")

; Customer Information.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Customer Information")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Customer Information", "Button1")

; Setup Type.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Setup Type")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Setup Type", "Button3")
Sleep(500)
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Setup Type", "Button5")

; Language selection.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Language selection")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Language selection", "Button3")

; Custom Setup.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Custom Setup")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Custom Setup", "Button4")

; Ready to Install the Program.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Ready to Install the Program")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Ready to Install the Program", "Button1")

; File Associations.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Please select file associations and other options")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Please select file associations and other options", "Button3")

; Installation Wizard Completed.
WinWait("Nero 7 Demo - Installasjonsveiviser", "Installation Wizard Completed")
ControlClick("Nero 7 Demo - Installasjonsveiviser", "Installation Wizard Completed", "Button1")

; Reboot dialog.
WinWait("Installasjonsinformasjon for Nero 7 Demo", "Du må starte systemet på nytt")
ControlClick("Installasjonsinformasjon for Nero 7 Demo", "Du må starte systemet på nytt", "Button2")

Exit

;eof

PS: this is for NORWEGIAN NERO 7 ONLY, you have to change the dialog info for your lanugage.

Register.reg is my Nero 7 registration info

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Ahead\Installation\Families\Nero 7\Info]
"Serial7"="*XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX"
"User"="Registered UserName"
"Company"="Registered Company Name"

To select what components should be INCLUDED or EXCLUDED simply modify Redist\Config\Conf.txt

Link to comment
Share on other sites

Disable NeroScout ...

regsvr32 /u "C:\Program Files\Fichiers communs\Ahead\Lib\MediaLibraryNSE.dll"

To disable Nero Scout, this is the post command method ... this remove the icon from "My Computer" ...

edit: change the path of Common Files ...

Why don't you use

regsvr32 /u "%commonprogramfiles%\Ahead\Lib\MediaLibraryNSE.dll"

?

Then it is language independent. (and less code)

BTW, I now use InstallRite to install Nero 7. My installer only installs Nero Burning Rom, CoverDesigner, CD-DVD Speed and DriveSpeed. It does not register NeroScout in the registry and does not create Autorun entries. And it is able to integrate tweaks, like "ShowSingleRecorderSpeed". Works just fine. Only problem is, that for every new Nero version, I will have to rebuild the installer. :wacko:

Yes!! But I'm not remember the varaible in fact ... i'm just fast edited my first post by a fast copY/paste ... I have edited ...

By the way I'm testing the neroscout eradication :thumbup direct by mst ...

Why companies force to install all features, even if they are new ?!

Link to comment
Share on other sites

Ok, I finally got some time and tried the method. It works very good. Now I'm just wondering about the Start Menu shortcuts. I now use a WinRAR SFX Archive and create the shortcuts with WinRAR. But the method is great. I can integrate registry tweaks, the key and can disable NeroScout quite easily. Thanks. This method is now better than mine before. I deleted the full Nero Home Components folder. My install does not need it. :D:D

Edited by Dynaletik
Link to comment
Share on other sites

is it possible for someone to purpose a MST file keeping just :

- nero basics (nero burning rom 7 + nero toolkits)

- nero cover designer

- no nero scout

?

it could be great :thumbup

because only "basics + no nero scout" and "basics + cover designer" MST are purposed.

a mix of them could be very interesting.

thx in advance.

:yes:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...