IPB

Google Frontpage Forums Unattended CD/DVD Guide

> 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

 
Reply to this topicStart new topic
> Registration of Tuneup utilities 2008
ferska
post Feb 10 2008, 08:34 PM
Post #1


Newbie


Group: Members
Posts: 12
Joined: 6-January 07
Member No.: 120689
Country Flag


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!!!
Go to the top of the page
 
+Quote Post
Innocent Devil
post 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
Country Flag


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
Go to the top of the page
 
+Quote Post
radix
post 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
Country Flag


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
Go to the top of the page
 
+Quote Post
Yzöwl
post Feb 11 2008, 08:11 AM
Post #4


MSFN Junkie
Group Icon

Group: Super Moderator
Posts: 3503
Joined: 13-October 04
Member No.: 33618
OS: Windows 7 x64
Country Flag


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

[HKEY_LOCAL_MACHINE\SOFTWARE\TuneUp\Utilities\7.0]
"Company"="XXXXXXX"
"UserName"="XXXXXXX"
"RegCode"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
…the other data will be added as part of the install anyhow!
Go to the top of the page
 
+Quote Post
radix
post 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
Country Flag


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
Go to the top of the page
 
+Quote Post
ferska
post Feb 11 2008, 12:16 PM
Post #6


Newbie


Group: Members
Posts: 12
Joined: 6-January 07
Member No.: 120689
Country Flag


QUOTE (radix @ Feb 11 2008, 01:18 PM) *
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
Go to the top of the page
 
+Quote Post
Yzöwl
post Feb 11 2008, 01:39 PM
Post #7


MSFN Junkie
Group Icon

Group: Super Moderator
Posts: 3503
Joined: 13-October 04
Member No.: 33618
OS: Windows 7 x64
Country Flag


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"
 
Go to the top of the page
 
+Quote Post
radix
post 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
Country Flag


QUOTE (Yzöwl @ Feb 11 2008, 09:39 PM) *
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).
Go to the top of the page
 
+Quote Post

Google Frontpage Forums Unattended CD/DVD Guide

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 




Lo-Fi Version Time is now: 7th November 2009 - 06:50 PM
All trademarks mentioned on this page are the property of their respective owners
MSFN is not affiliated with Microsoft
Copyright © 2001-2009 msfn.org
Privacy Policy