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
![]() ![]() |
Feb 10 2008, 08:34 PM Post
#1 | |
| Newbie Group: Members Posts: 12 Joined: 6-January 07 Member No.: 120689 |
I can't reg. my tuneup utilities 2008, here is my code for reg and install: CODE ['%cdrom%\\Install\\TuneUp\\TU2008ES.exe /qn'] ['%cdrom%\\Install\\TuneUp\\key08.reg'] and reg file for put my data in regedit CODE Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0] "Company"="XXXXXXX" "UserName"="XXXXXXX" "InstallPath"="C:\\Program files\\TuneUp Utilities 2008\\" "InstallDate"=hex:fa,ba,d1,7d,f8,47,e3,40 "LaunchedUpdateWizard"=dword:00000000 "RemindAgainAfter"=hex:00,00,00,00,9c,85,18,41 "UseCounter"=dword:00000001 "RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" but didn't work, please help me!!! |
| | |
Feb 10 2008, 11:44 PM Post
#2 | |
| Senior Member ![]() ![]() ![]() ![]() Group: Members Posts: 626 Joined: 4-February 05 From: God's Own Country Member No.: 43021 OS: Windows 7 x86 |
i was working 4 2006 ver. but some times it workd for me on tune up 2007 try adding the .reg file b4 the install of tuneup |
| | |
Feb 11 2008, 05:07 AM Post
#3 | |
| Senior Member ![]() ![]() ![]() ![]() Group: Members Posts: 618 Joined: 8-February 07 Member No.: 125681 OS: XP Pro x86 |
This works (after installation): CODE [HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0] "Company"="XXX" "UserName"="XXX" "LaunchedUpdateWizard"=dword:00000000 "RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" "RegRemindOn"=hex:00,00,00,00,9c,85,18,41 "RemindAgainAfter"=hex:00,00,00,00,9c,85,18,41 "UseCounter"=dword:00000001 But, I discovered that it works only if you install normally (not unattended) and import registry after installation. This post has been edited by radix: Feb 11 2008, 07:21 AM |
| | |
Feb 11 2008, 08:11 AM Post
#4 | |
| MSFN Junkie Group: Super Moderator Posts: 3503 Joined: 13-October 04 Member No.: 33618 OS: Windows 7 x64 |
Regardless of whether it works or not, you don't really want to be importing all that data anyhow. The only data you should need is this
CODE Windows Registry Editor Version 5.00
the other data will be added as part of the install anyhow!
[HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0] "Company"="XXXXXXX" "UserName"="XXXXXXX" "RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" |
| | |
Feb 11 2008, 09:18 AM Post
#5 | |
| Senior Member ![]() ![]() ![]() ![]() Group: Members Posts: 618 Joined: 8-February 07 Member No.: 125681 OS: XP Pro x86 |
Unattended install create some keys in HKCU which must be deleted. This works: CODE Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\TuneUp] [HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0] "Company"="XXX" "UserName"="XXXX" "LaunchedUpdateWizard"=dword:00000000 "RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" "RegRemindOn"=hex:00,00,00,00,9c,85,18,41 "RemindAgainAfter"=hex:00,00,00,00,9c,85,18,41 "UseCounter"=dword:00000001 This post has been edited by radix: Feb 11 2008, 09:44 AM |
| | |
Feb 11 2008, 12:16 PM Post
#6 | |
| Newbie Group: Members Posts: 12 Joined: 6-January 07 Member No.: 120689 | Unattended install create some keys in HKCU which must be deleted. This works: CODE Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\TuneUp] [HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0] "Company"="XXX" "UserName"="XXXX" "LaunchedUpdateWizard"=dword:00000000 "RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" "RegRemindOn"=hex:00,00,00,00,9c,85,18,41 "RemindAgainAfter"=hex:00,00,00,00,9c,85,18,41 "UseCounter"=dword:00000001 Yes sir!!!! that code works fine, just what i need. Thanks you Radix |
| | |
Feb 11 2008, 01:39 PM Post
#7 | |
| MSFN Junkie Group: Super Moderator Posts: 3503 Joined: 13-October 04 Member No.: 33618 OS: Windows 7 x64 |
Or better still just the keys you need! CODE Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\TuneUp] [HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0] "Company"="XXXXXXX" "UserName"="XXXXXXX" "RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" |
| | |
Feb 11 2008, 02:16 PM Post
#8 | |
| Senior Member ![]() ![]() ![]() ![]() Group: Members Posts: 618 Joined: 8-February 07 Member No.: 125681 OS: XP Pro x86 | Or better still just the keys you need! CODE Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\TuneUp] [HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0] "Company"="XXXXXXX" "UserName"="XXXXXXX" "RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" The other values disable the update wizard and online registration (set these to Never). |
| | |
![]() ![]() |
| Lo-Fi Version | Time is now: 7th November 2009 - 06:50 PM |