MSFN Forum: Registration of Tuneup utilities 2008 - 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
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Registration of Tuneup utilities 2008 Rate Topic: -----

#1 User is offline   ferska 

  • Newbie
  • Group: Members
  • Posts: 12
  • Joined: 06-January 07

Posted 10 February 2008 - 08:34 PM

I can't reg. my tuneup utilities 2008, here is my code for reg and install:

 
['%cdrom%\\Install\\TuneUp\\TU2008ES.exe /qn']
['%cdrom%\\Install\\TuneUp\\key08.reg'] 


and reg file for put my data in regedit

 
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!!!


#2 User is offline   Innocent Devil 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 632
  • Joined: 04-February 05

Posted 10 February 2008 - 11:44 PM

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

#3 User is offline   radix 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 715
  • Joined: 08-February 07

Posted 11 February 2008 - 05:07 AM

This works (after installation):
 
[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: 11 February 2008 - 07:21 AM


#4 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,195
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 11 February 2008 - 08:11 AM

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…
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!

#5 User is offline   radix 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 715
  • Joined: 08-February 07

Posted 11 February 2008 - 09:18 AM

Unattended install create some keys in HKCU which must be deleted.
This works:
 
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: 11 February 2008 - 09:44 AM


#6 User is offline   ferska 

  • Newbie
  • Group: Members
  • Posts: 12
  • Joined: 06-January 07

Posted 11 February 2008 - 12:16 PM

View Postradix, on Feb 11 2008, 01:18 PM, said:

Unattended install create some keys in HKCU which must be deleted.
This works:
 
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

#7 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,195
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 11 February 2008 - 01:39 PM

Or better still just the keys you need!
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"
 


#8 User is offline   radix 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 715
  • Joined: 08-February 07

Posted 11 February 2008 - 02:16 PM

View PostYzöwl, on Feb 11 2008, 09:39 PM, said:

Or better still just the keys you need!
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).

Share this topic:


Page 1 of 1
  • 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