MSFN Forum: Nero 7.2.0.3 - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
  • 5 Pages +
  • « First
  • 2
  • 3
  • 4
  • 5
  • You cannot start a new topic
  • You cannot reply to this topic

Nero 7.2.0.3 New AutoIt Script required. Rate Topic: -----

#51 User is offline   Sanjay 

  • Member
  • PipPip
  • Group: Members
  • Posts: 273
  • Joined: 13-August 04

Posted 12 May 2006 - 02:51 PM

View Postsalawinder, on May 12 2006, 11:38 PM, said:

Sanjay,

If you are changing the script in a way that makes it better for everyone, and post it as a script yourself!

I haven't tested your additions, so can't be 100% sure they are working (my test system is working on something else), so if you have tested them, post it as an improvement.

Thanks salawinder, but the reason I requested you to add the registry tweaks was that I am not sure how the additions may effect the rest of the script, since I don't really know anything about scripting. Although I have been adding these on my own in all the different versions of the script so far and they have always worked for me. Infact since these are registry tweaks and not really linked to the script itself they should still work as they always have even with all older versions and builds.

Anyhow, before I go claiming any credit and posting my modified version of the script, I have just run into a problem with the latest script posted by you. During the install the following error message comes up:

Attached File  Install_Error.jpg (40.33K)
Number of downloads: 69

I don't think that the error is related to anything that I have added, although I may be wrong. Since, like I said earlier I don't know too much about scripting. But while going thru the script in trying to figure out if there was something I did to cause the error, I think I may have identified the problem in the script.

It seems that the following typo may be the problem:

; De-Select Nero Recode
If StringUpper( $Opt6 = ) "N" Then  <--- THE LINE WITH THE POSSIBLE TYPO
	Sleep( $DelayTime )
	MouseClick ( "left" , 62 , 222 , 1 , 1 )
	MouseClick ( "left" , 62 , 286 , 1 , 1 )
EndIf

Based on what I have observed in the rest of the script, shouldn't the code read like this?

; De-Select Nero Recode
If StringUpper( $Opt6 ) = "N" Then  <--- THE LINE WITH THE POSSIBLE TYPO
	Sleep( $DelayTime )
	MouseClick ( "left" , 62 , 222 , 1 , 1 )
	MouseClick ( "left" , 62 , 286 , 1 , 1 )
EndIf

This post has been edited by Sanjay: 12 May 2006 - 03:18 PM



#52 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,615
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 12 May 2006 - 02:59 PM

View PostSanjay, on May 13 2006, 06:51 AM, said:

View Postsalawinder, on May 12 2006, 11:38 PM, said:

Sanjay,

If you are changing the script in a way that makes it better for everyone, and post it as a script yourself!

I haven't tested your additions, so can't be 100% sure they are working (my test system is working on something else), so if you have tested them, post it as an improvement.

Thanks salawinder, but the reason I requested you to add the registry tweaks was that I am not sure how the additions may effect the rest of the script, since I don't really know anything about scripting. Although I have been adding these on my own in all the different versions of the script so far and they have always worked for me. Infact since these are registry tweaks and not really linked to the script itself they should still work as they always have even with all older versions and builds.

Anyhow, before I go claiming any credit and posting my modified version of the script, I have just run into a problem with the latest script posted by you. During the install the following error message comes up:

Attached File  Install_Error.jpg (40.33K)
Number of downloads: 69

I don't think that the error is related to anything that I have added although I may be wrong since like I said earlier I don't know too much about scripting. But going thy the script in trying to figure out if there was something I did to cause the error I think I may have identified the problem in the script.

It seems that the following typo may be the problem:

; De-Select Nero Recode
If StringUpper( $Opt6 = ) "N" Then  <--- THE LINE WITH THE POSSIBLE TYPO
	Sleep( $DelayTime )
	MouseClick ( "left" , 62 , 222 , 1 , 1 )
	MouseClick ( "left" , 62 , 286 , 1 , 1 )
EndIf

Based on what I have observed in the rest of the script, shouldn't the code read like this?

; De-Select Nero Recode
If StringUpper( $Opt6 ) = "N" Then  <--- THE LINE WITH THE POSSIBLE TYPO
	Sleep( $DelayTime )
	MouseClick ( "left" , 62 , 222 , 1 , 1 )
	MouseClick ( "left" , 62 , 286 , 1 , 1 )
EndIf




Same here, yes that will do it just move the = to sort it.

Cheers
MC.

#53 User is offline   Sanjay 

  • Member
  • PipPip
  • Group: Members
  • Posts: 273
  • Joined: 13-August 04

Posted 12 May 2006 - 03:16 PM

View PostSanjay, on May 13 2006, 02:21 AM, said:

I don't think that the error is related to anything that I have added, although I may be wrong. Since, like I said earlier I don't know too much about scripting. But while going thru the script in trying to figure out if there was something I did to cause the error, I think I may have identified the problem in the script.

It seems that the following typo may be the problem:

; De-Select Nero Recode
If StringUpper( $Opt6 = ) "N" Then  <--- THE LINE WITH THE POSSIBLE TYPO
	Sleep( $DelayTime )

Based on what I have observed in the rest of the script, shouldn't the code read like this?

; De-Select Nero Recode
If StringUpper( $Opt6 ) = "N" Then  <--- THE LINE WITH THE POSSIBLE TYPO
	Sleep( $DelayTime )

I edited the offending typo and tried the script again. The problem seems to be solved and there are no more errors. Also the whole install went smoothly and everything seems to be in perfect order so far.

I am attaching the final script, which has some small contributions from me.

Now modified for 'Nero 7.2.3.2'

Attached File  AutoIt_Nero_7.x.au3 (12.43K)
Number of downloads: 28

This post has been edited by Sanjay: 25 July 2006 - 11:46 AM


#54 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,615
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 12 May 2006 - 03:18 PM

Yep,all solid here, probably as perfect as seven gets to date anyway.

Cheers
MC.

#55 User is offline   Floppy 

  • Member
  • PipPip
  • Group: Members
  • Posts: 124
  • Joined: 06-August 04

Posted 13 May 2006 - 01:30 AM

My question might be a bit off..but, the script from Autoit works on the English ver. of Nero.
I live in Norway...... :whistle:
Is it possible to do the Install in English, so that the script works? :}

#56 User is offline   salawinder 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 20-May 04

Posted 13 May 2006 - 02:30 AM

Floppy,

Glowy has made a Dutch version of the script, and there are differences, mainly what text the script looks for during the installation. A Norwegian script would need to be modified to look for the text on the Norwegian installer.

If you'd like to voulenteer to make a Norwegian version.....


Alternatively you should be able to use the English or Dutch versions of the script with the English or Dutch installers and they 'should' work fine!



View PostSanjay, on May 12 2006, 03:16 PM, said:

I edited the offending typo and tried the script again. The problem seems to be solved and there are no more errors. Also the whole install went smoothly and everything seems to be in perfect order so far.

I am attaching the final script, which has some small contributions from me.

Attachment attachment


Sanjay,

Thanks for spotting this, and adding your contributions. Like I say anybody can help out!

#57 User is offline   Floppy 

  • Member
  • PipPip
  • Group: Members
  • Posts: 124
  • Joined: 06-August 04

Posted 13 May 2006 - 05:02 AM

""If you'd like to voulenteer to make a Norwegian version....."""

Hmmm, maybe I will look in to it...

Thank's for responding.

#58 User is offline   frasuperbike 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 24-February 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 15 May 2006 - 04:04 AM

I have modified the script for Italian version of nero but i have added two features that (i think) are importants for all.

First modification is launch a reg file of nero. Why? In this way all i nero's windows during installation have the same title (for new installation of nero in a clear windows and for an update of a existing nero installation)

the second modification is one control that change installation in a case that nero is installed on the system and we want to upgrade it.

I have one problem with selection of companent...
anyone have a correct selection that go fine???

thank

Sorry for my english

Attached File(s)



#59 User is offline   salawinder 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 20-May 04

Posted 15 May 2006 - 05:37 AM

View Postfrasuperbike, on May 15 2006, 04:04 AM, said:

I have modified the script for Italian version of nero but i have added two features that (i think) are importants for all.

First modification is launch a reg file of nero. Why? In this way all i nero's windows during installation have the same title (for new installation of nero in a clear windows and for an update of a existing nero installation)

the second modification is one control that change installation in a case that nero is installed on the system and we want to upgrade it.

I have one problem with selection of companent...
anyone have a correct selection that go fine???

thank

Sorry for my english


frasuperbike,

Thanks for your input!

The first modification should not bee needed though, I saw that the title bar changed during the installation, and realised that if people were installing different versions the title bar would differ even more, so I set the option WinTitleMatchMode to look for a part of the title, so in your case it would look for just "Installazione guidata" throughout the script, rather than "Nero 7 Ultra Edition - Installazione guidata", then even if the title bar changes the "Installazione guidata" should remain the same.

I think you 2nd modification is for people who are upgrading from an earlier version of Nero, if this is correct (and presuming it works) that's okay, but the intention of my script is for use during an unattended install, so this shouldn't be an issue. I'll leave it out of my script, but if it works for you, all the better!

Thanks.

Thanks.

#60 User is offline   frasuperbike 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 24-February 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 15 May 2006 - 06:04 AM

View Postsalawinder, on May 15 2006, 01:37 PM, said:

View Postfrasuperbike, on May 15 2006, 04:04 AM, said:

I have modified the script for Italian version of nero but i have added two features that (i think) are importants for all.

First modification is launch a reg file of nero. Why? In this way all i nero's windows during installation have the same title (for new installation of nero in a clear windows and for an update of a existing nero installation)

the second modification is one control that change installation in a case that nero is installed on the system and we want to upgrade it.

I have one problem with selection of companent...
anyone have a correct selection that go fine???

thank

Sorry for my english


frasuperbike,

Thanks for your input!

The first modification should not bee needed though, I saw that the title bar changed during the installation, and realised that if people were installing different versions the title bar would differ even more, so I set the option WinTitleMatchMode to look for a part of the title, so in your case it would look for just "Installazione guidata" throughout the script, rather than "Nero 7 Ultra Edition - Installazione guidata", then even if the title bar changes the "Installazione guidata" should remain the same.

I think you 2nd modification is for people who are upgrading from an earlier version of Nero, if this is correct (and presuming it works) that's okay, but the intention of my script is for use during an unattended install, so this shouldn't be an issue. I'll leave it out of my script, but if it works for you, all the better!

Thanks.

Thanks.


The second modification is used for the unattended installation...(i use it in the "WPI CD"). But with my prove i can't install nero without launch reg file before...i don't know why. with this way nero go fine in all situation...

For the problem of components? I have did a prove to set Y all components but nothing...after installation nero was installed without all componets???

This post has been edited by frasuperbike: 15 May 2006 - 06:05 AM


#61 User is offline   salawinder 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 20-May 04

Posted 15 May 2006 - 06:27 AM

frasuperbike,

The problem with saying Yes to all components, I think is partly to do with you Upgrading or re-installing Nero - if you put n for the component the script de-selects it, but if you put a y it does nothing! this is again because this was planned for fresh installations.

#62 User is offline   frasuperbike 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 24-February 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 15 May 2006 - 06:43 AM

View Postsalawinder, on May 15 2006, 02:27 PM, said:

frasuperbike,

The problem with saying Yes to all components, I think is partly to do with you Upgrading or re-installing Nero - if you put n for the component the script de-selects it, but if you put a y it does nothing! this is again because this was planned for fresh installations.


i have the same problem for new clear installation...sigh sigh... now i doing another prove to verify...

#63 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,615
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 03 September 2006 - 03:37 AM

Just a quick one know Im turning over an old thread but has anyone reconfigured the latest nero release using autoit yet?

Cheers
MC.

#64 User is offline   MGadAllah 

  • Brain Voice
  • PipPipPipPipPip
  • Group: Banned
  • Posts: 786
  • Joined: 03-January 06

  Posted 10 September 2006 - 06:04 PM

Hi all:
Nero-7.2.7.0 is out, I've tried to configure the script to work with it but did not make, every time it stops at different places, when it did stopped I was clicked on mouse to go on, so some screen was going fine and other were stopped, the following are the screen stop to go on:
- Accept EULA screen
- Choosing language (I've downloaded the english version only)
- Custom Setup (it did choosed the components to install)
- Settings ... Please select file association and other options (there are two tabs here underbelow one for Photos and the other one for options)
- setuppx ... the window that ask about restart pc or not
so can you help me with this issue?
Thanks
Mohamed

This post has been edited by mgadallah: 12 September 2006 - 07:29 AM


#65 User is offline   MGadAllah 

  • Brain Voice
  • PipPipPipPipPip
  • Group: Banned
  • Posts: 786
  • Joined: 03-January 06

  Posted 12 September 2006 - 02:51 AM

Any reply yet :whistle:

#66 User is offline   Sangi 

  • Newbie
  • Group: Members
  • Posts: 34
  • Joined: 29-November 05

  Posted 29 September 2006 - 08:08 AM

Hi All,

As you will have noticed Nero 7.5.1.1 is out and the previous script works no more :( :( :(

I tried to adjust the old script both in terms of the page ordering, which has changed significantly, and mouse clicks - the numbers there have also changed - to no avail...

So here's my plea: does anyone know how to fix this?

I've attached my modified, non-working script below in the hopes that it may serve as an inspiration to others, but sadly it gets stuck right after the programme is extracted! :realmad:


Salawinder? Glowy? Sanjay? Anyone?


PLEASE HELP!!!

Attached File(s)



#67 User is offline   salawinder 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 20-May 04

Posted 29 September 2006 - 08:47 AM

Hi Sangi,

I have to say I haven't been following the development (I'm still using 6.6!), but will grap this version and have another look at the script.

Might be a couple of days, but I'll be working on it!

#68 User is offline   Sangi 

  • Newbie
  • Group: Members
  • Posts: 34
  • Joined: 29-November 05

  Posted 29 September 2006 - 09:35 AM

Thanks Salawinder, I'll wait for as long as it takes!
Bye for now.

:thumbup

#69 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,615
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 29 September 2006 - 01:52 PM

Yeah thanks had a few attempts myself not very succesfull to date & have stuck with the previous vers so far, working on it when I have time.

#70 User is offline   salawinder 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 20-May 04

Posted 03 October 2006 - 05:09 AM

OK, here goes:

I have re-done the script for 7.5.1.1, and have changed the way the custom configuration options are selected, so if you say you DO want a feature it will change it accordingly (the previous script ony deselected items not chosen).

Nero checks for the presence of SP2 and DirectX 9.0c, if they are not there it prompts you to install them. This IS NOT handled by this script, so you will need to make sure you have these installed before you run this script.

Left in from the old script is a batch of settings which alter options in the running of the program (overburn, verify, etc.) these may or may not work with this version (I haven't had time to test them, and I never used them before). You will notice this section by the large & obvious comment section before it! If others are prepaired to test these options and let me know if they work (or if they don't) and any additional options (or alternatives), I will add them to the script.

Needless to say, you must enter your Name, Company & Serial Details, and choose the options you want to install.

I have tested this script with the Ultra version of the program, if any users have problems with other versions, get in touch and I will try to modify it accordingly.

As usual, any feedback is appreciated, and I will endeavour to rectify faults as soon as pssible, but if anyoine else wants to chip in, feel free!

Attached File(s)



Share this topic:


  • 5 Pages +
  • « First
  • 2
  • 3
  • 4
  • 5
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy