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
![]() ![]() |
Sep 23 2007, 03:54 AM Post
#161 | |
| Member ![]() ![]() Group: Members Posts: 151 Joined: 22-December 06 Member No.: 119086 | retalv, I haven't tested unattended mode that well. It looks like when running VERYSILENT the helper autoit script won't get launched. I look into Inno Documentation to overrrule this behaviour. Thanks for noticing this. Thanks Acheron for fixing and thanks retalv for explaining |
| | |
Sep 23 2007, 06:18 AM Post
#162 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 879 Joined: 28-June 04 From: Eerbeek Member No.: 23554 OS: XP Pro x86 |
I'm currently in the progress of further automating the Nero 7 SDK. This should make it easier to maintain such a large project, and perhaps it allows more functionality to be included in future versions (perhaps Nero 8).
|
| | |
Sep 24 2007, 05:39 AM Post
#163 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 709 Joined: 30-November 06 From: Behind you Member No.: 117138 OS: Vista Ultimate x64 |
Tested same installer in clean Vista installs x86 & x64 In x64 it works fine in x86 still same error. ![]() EDIT : Got it working now : CODE nero-7.10.1.0.exe /VERYSILENT SP- /SERIAL="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" A few post back someone posted this, but without the "/" : /SERIAL Now it works.... This post has been edited by sp00f: Sep 24 2007, 09:29 AM |
| | |
Sep 24 2007, 09:34 AM Post
#164 | |
| MultiBoot Freak ![]() ![]() Group: Members Posts: 177 Joined: 26-February 05 From: The Netherlands Member No.: 45325 OS: Vista Ultimate x86 | Tested same installer in clean Vista installs x86 & x64 In x64 it works fine in x86 still same error. ![]() EDIT : Got it working now : CODE nero-7.10.1.0.exe /VERYSILENT SP- /SERIAL="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" A few post back someone posted this, but without the "/" : /SERIAL Now it works.... TY m8 it works ! |
| | |
Sep 26 2007, 01:33 PM Post
#165 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 879 Joined: 28-June 04 From: Eerbeek Member No.: 23554 OS: XP Pro x86 |
I have finally updated Nero 7 SDK to latest version. Now the SDK also comes with a readme and overall I think it will be easier to compile the scripts. Nero7Lite-7.10.1.0_SDK.7z Be sure to first install the Inno Setup Clickonce package, or alternatively use offical Quickstart Pack and include ISPP manually. Inno_Setup_5.2.0_OneClick.7z |
| | |
Sep 26 2007, 03:28 PM Post
#166 | |
| Rick Steele ![]() ![]() Group: Members Posts: 207 Joined: 13-October 04 From: Ottawa, Ontario, Canada Member No.: 33639 OS: XP Pro x64 |
Thanks Acheron; the lite installed beautifully with absolutely no issues. I have no plans to uograde to Nero 8, but, have found no real viable alternatives-those you posted are nice, but, rough; I just cannot abide this bloat anymore so I will try to use your SDK; thanks a million.
|
| | |
Sep 26 2007, 05:32 PM Post
#167 | |
| Junior ![]() Group: Members Posts: 59 Joined: 31-May 07 Member No.: 141409 OS: XP Pro x86 |
Nice job Acheron thanks
|
| | |
Sep 27 2007, 05:24 PM Post
#168 | |
| Member ![]() ![]() Group: Members Posts: 202 Joined: 8-September 04 Member No.: 30418 |
Hi Acheron, How You figured out those three files needed to be added for videocd support? I just added all from dsf filter and was excluding one by one. Is there a simplier way? With nero8 i get this stupid sidebyside config error. No idea where to dig? Cause I am lost... Script is working fiine, though in nero lite eng code is not working correctly. I get error. Europe version code is really nice. Thanks a lot, Alex |
| | |
Sep 28 2007, 08:37 AM Post
#169 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 879 Joined: 28-June 04 From: Eerbeek Member No.: 23554 OS: XP Pro x86 |
Alex, what error do you get building? I did indeed register and unregister filters manually for testing which filters were involved when using video encoding options. I use the following regentries to add quick register and unregister functions to dlls, ocx and ax files: CODE Windows Registry Editor Version 5.00 ;Add Register / Unregister to Right Click Menu of .dll Files [HKEY_CLASSES_ROOT\dllfile\Shell\Register] @="Register" [HKEY_CLASSES_ROOT\dllfile\Shell\Register\command] @="regsvr32.exe /s \"%1\"" [HKEY_CLASSES_ROOT\dllfile\Shell\Register_Undo\command] @="regsvr32.exe /s /u \"%1\"" [HKEY_CLASSES_ROOT\dllfile\Shell\Register_Undo] @="Unregister" ;Add Register / Unregister to Right Click Menu of .ocx Files [HKEY_CLASSES_ROOT\dllfile\Shell\Register] @="Register" [HKEY_CLASSES_ROOT\ocxfile\Shell\Register\command] @="regsvr32.exe /s \"%1\"" [HKEY_CLASSES_ROOT\dllfile\Shell\Register_Undo] @="Unregister" [HKEY_CLASSES_ROOT\ocxfile\Shell\Register_Undo\command] @="regsvr32.exe /s /u \"%1\"" ;Add Register / Unregister to Right Click Menu of .ax Files [HKEY_CLASSES_ROOT\.ax] @="dllfile" |
| | |
Sep 28 2007, 03:44 PM Post
#170 | |
| Member ![]() ![]() Group: Members Posts: 202 Joined: 8-September 04 Member No.: 30418 |
Hi Acheron, When installing I got a mistake (see capture). It is very small mistake in the script, easi;y fixed from info in picture. Mistyping of some kind, that's all. Code error is more serious looking, happens while building, but I just took code from europe version and replaced it to eng version lite. It's on the line with word rollback as I recall. Mistyping again I quess but I decided to check script with code from europe version and it worked so Iquess mistake is in the code, not script., but as ir does not have nothing with functionality of Nero itself I decided not to dig, just to replace. I made installer for express and coverdesigner., only 24 mb, very solid and stable build so far. Thank You a lot for micromiser, it is fantastic, how do You know what to cut out? Can not figure it out. What soft else You are using? This idea with tutorial would be nice. All the best, Alex Attached File(s) |
| | |
Sep 28 2007, 03:48 PM Post
#171 | |
| Junior ![]() Group: Members Posts: 72 Joined: 8-November 05 From: Luebeck, Germany Member No.: 79081 |
Hi, maybe I missed some informations, but I don't know where I can get the files mentioned in "filelist.txt" from... I download the file "Nero-7.10.1.0_deu_trial.exe" - should I now install Nero and grab the files from...hmmm...from where? E.g. I don't have a folder called "DrWeb" or "Redist". Or should I extract it anywhere? And if, how should I extract it? BTW, I installed "Inno_Setup_5.2.0_OneClick" previously... Another question is, if the Nero Mirco RC7 is final? It's really small...what is missing or not functional? Sorry for this many questions, but I didn't find the answers to them in this thread! Thanks for your good work, Archeron, and keep on with it - and you other guys too... Best regards cool400 |
| | |
Sep 28 2007, 03:48 PM Post
#172 | |
| Member ![]() ![]() Group: Members Posts: 202 Joined: 8-September 04 Member No.: 30418 |
by the way to avoid this mistake, use Achron's micromise! Alex This post has been edited by Alex: Sep 28 2007, 03:49 PM Attached File(s) |
| | |
Sep 29 2007, 04:06 AM Post
#173 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 879 Joined: 28-June 04 From: Eerbeek Member No.: 23554 OS: XP Pro x86 | Hi, maybe I missed some informations, but I don't know where I can get the files mentioned in "filelist.txt" from... I download the file "Nero-7.10.1.0_deu_trial.exe" - should I now install Nero and grab the files from...hmmm...from where? E.g. I don't have a folder called "DrWeb" or "Redist". Or should I extract it anywhere? And if, how should I extract it? BTW, I installed "Inno_Setup_5.2.0_OneClick" previously... Another question is, if the Nero Mirco RC7 is final? It's really small...what is missing or not functional? Sorry for this many questions, but I didn't find the answers to them in this thread! Thanks for your good work, Archeron, and keep on with it - and you other guys too... Best regards cool400 The SDK is only for experts who want to modify Nero 7 Setup to their own needs. Normal users can just use the Nero 7.0.10.1 PreRelease version as linked in first post. @Alex, have you read the readme included? I think most of your errors are due to not following the guide. |
| | |
Sep 29 2007, 05:22 AM Post
#174 | |
| vLite & WPI Junkie :> Group: Supreme Sponsors Posts: 624 Joined: 18-September 04 From: Germany Member No.: 31388 OS: Windows 7 x64 |
I just wanted to say THANK YOU Acheron!!! The SDK is really nice. I got my german Lite Installer @ 26 MB now (29 MB before), 1 MB was the new InnoSetup Compression and the other 2 MB seem to be caused by the micromized files. Everything works! Very nice work! |
| | |
Sep 30 2007, 11:40 AM Post
#175 | |
| Member ![]() ![]() Group: Members Posts: 114 Joined: 7-March 04 From: Paris Member No.: 15504 OS: XP Pro x86 | by the way to avoid this mistake, use Achron's micromise! Alex I have exactly the same error window as you. I install nero lite with /VERYLSILENT switch on a unattended vista dvd. Then, I import this reg file : CODE Windows Registry Editor Version 5.00 ; User information [HKEY_LOCAL_MACHINE\SOFTWARE\ahead\Installation\Families\Nero 7\Info] "User"="Kal" "Company"="Kal" "Serial"="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" "MissingFilesState"="0" "EulaAccepted"="1" If I launch nero I get the FATAL ERROR window. If I remove the serial from the registry, then I can enter it manually with Nero ProductSetup. After that, It works like a charm. It just add the serial in the same registry location, except the key name is something like "Serial7_XXXXXXXX", but I can rename it to "Serial" without any problem. So, what's going on ? Thank you for your work Acharon, Kal This post has been edited by kal: Sep 30 2007, 11:42 AM |
| | |
Sep 30 2007, 11:54 AM Post
#176 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 879 Joined: 28-June 04 From: Eerbeek Member No.: 23554 OS: XP Pro x86 | by the way to avoid this mistake, use Achron's micromise! Alex I have exactly the same error window as you. I install nero lite with /VERYLSILENT switch on a unattended vista dvd. Then, I import this reg file : CODE Windows Registry Editor Version 5.00 ; User information [HKEY_LOCAL_MACHINE\SOFTWARE\ahead\Installation\Families\Nero 7\Info] "User"="Kal" "Company"="Kal" "Serial"="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" "MissingFilesState"="0" "EulaAccepted"="1" If I launch nero I get the FATAL ERROR window. If I remove the serial from the registry, then I can enter it manually with Nero ProductSetup. After that, It works like a charm. It just add the serial in the same registry location, except the key name is something like "Serial7_XXXXXXXX", but I can rename it to "Serial" without any problem. So, what's going on ? Thank you for your work Acharon, Kal Don't import your serial after setup! Activation is only done through Setup! This is no rocket science! This post has been edited by Acheron: Sep 30 2007, 12:07 PM |
| | |
Sep 30 2007, 11:56 AM Post
#177 | |
| Member ![]() ![]() Group: Members Posts: 114 Joined: 7-March 04 From: Paris Member No.: 15504 OS: XP Pro x86 | Activation is still a bit problematic, so I programmed the activation progress to only register once. It is best to use the /SERIAL="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" switch when using unattended. Manually importing regfiles won't work on a clean system! Ok thank you, i'm going to test it right now ! If I can make you a suggestion : edit your first post with avalaible switches, I forgot this one Thank you again for you reactivatity! Kal |
| | |
Sep 30 2007, 05:12 PM Post
#178 | |
| Friend of MSFN ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 709 Joined: 30-November 06 From: Behind you Member No.: 117138 OS: Vista Ultimate x64 | Activation is still a bit problematic, so I programmed the activation progress to only register once. It is best to use the /SERIAL="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" switch when using unattended. Manually importing regfiles won't work on a clean system! Ok thank you, i'm going to test it right now ! If I can make you a suggestion : edit your first post with avalaible switches, I forgot this one Thank you again for you reactivatity! Kal Read few posts back |
| | |
Sep 30 2007, 09:10 PM Post
#179 | |
| Member ![]() ![]() Group: Members Posts: 180 Joined: 17-January 07 Member No.: 122175 OS: XP Pro x86 |
Thanks Acheron for Nero 7 Lite and i have One question "How i can include Nero ImageDrive to this Package ? " Please Edit : please Acheron replay to me. did you see this post ? This post has been edited by NaDer_GenKO: Oct 1 2007, 01:18 PM |
| | |
Oct 1 2007, 04:48 AM Post
#180 | |
| Member ![]() ![]() Group: Members Posts: 114 Joined: 7-March 04 From: Paris Member No.: 15504 OS: XP Pro x86 |
Ok, I've tested /SERIAL switch and it seems there's a little issue to fix. Indeed, when I install it for the first time, there's no serial entry added to registry. But If I install it a second time, then a serial entry is correctly added. I do the installation during the first boot, in the "specialize" pass. Is there a way to use SetupX.exe silently to do the registration ? Kal |
| | |
![]() ![]() |
| Lo-Fi Version | Time is now: 21st November 2009 - 07:00 PM |