MSFN Forum: AnyDvd Stamp reg value - 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

AnyDvd Stamp reg value Rate Topic: -----

#1 User is offline   liquidator87 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 24-March 05

Posted 06 January 2007 - 07:11 AM

Does anybody know how to correctly generate the "Stamp" value in the registry? This somehow controls the behaviour of the automatic updates and the popup menu at the windows start... when the Stamp is in the registry the menu doesn't show up when windows starts, and I can disable automatic updates with CheckUpdate Dword set to 0... if Stamp is not present the menu obviously pops up and the updates are enabled even if CheckUpdate is 0... help?


#2 User is offline   benners 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 692
  • Joined: 29-December 03

Posted 06 January 2007 - 11:09 AM

View Postliquidator87, on Jan 6 2007, 01:11 PM, said:

Does anybody know how to correctly generate the "Stamp" value in the registry? This somehow controls the behaviour of the automatic updates and the popup menu at the windows start... when the Stamp is in the registry the menu doesn't show up when windows starts, and I can disable automatic updates with CheckUpdate Dword set to 0... if Stamp is not present the menu obviously pops up and the updates are enabled even if CheckUpdate is 0... help?

I struggled with this one as well for a while, I used to just install the prog and export the reg entry with the stamp value, its always the same for the program version you install.

I finally found the string whilst looking at the properties for the main exe under the comments section, now I have an AutoIt script that installes the program and gets the comments value from the exe. It has worked about 99% of the time, v6.1.0.0 has the comments value but when the program is installed the number is different Stamp value = 20061226214244 comments value is 20061226214240. If you open the main exe with WinHex and search for the stamp value you can find it, so maybe the programmers set the comments value wrong.The only other sure way is to some how use AutoIt to search for the string if it is always at the same address but that is above me. If I get some free time I may have a look and do some reading unless someone knows how to read the hex values.

 
; Don't show a tray icon.
#NoTrayIcon

Dim $RegKey = "HKEY_CURRENT_USER\Software\SlySoft\AnyDVD\Settings"
; Install the program.
RunWait(@ScriptDir & "\setup.exe /S")

; Delete the key to stop AnyDVD running at Windows Start Up.
RegDelete("HKCU\Software\Microsoft\Windows\CurrentVersion\Run", "AnyDVD")

; Set the default region to Europe.
RegWrite($RegKey, "Code", "REG_DWORD", "2")

; Don't check for updates.
RegWrite($RegKey, "CheckUpdate", "REG_DWORD", "0")

; Set the language locale to English.
RegWrite($RegKey, "Locale", "REG_SZ", "en")

; Set the language locale to English.
;RegWrite("HKEY_LOCAL_MACHINE\Software\SlySoft\AnyDVD\Key", "Key", "REG_SZ", "")

; Write the "Stamp" value to make the settings stick.
RegWrite($RegKey, "Stamp", "REG_SZ", FileGetVersion("C:\Program Files\SlySoft\AnyDVD\AnyDVD.exe", "Comments"))

; Remove the Desktop Icon.
FileDelete(@DesktopCommonDir & "\AnyDVD.lnk")

; Remove the Register AnyDVD icon from Start Menu Programs folder.
FileDelete(@ProgramsCommonDir & "\SlySoft\AnyDVD\Register AnyDVD.lnk") 


#3 User is offline   liquidator87 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 24-March 05

Posted 07 January 2007 - 04:53 AM

:thumbup thanks man! I opened the exe with an hex editor, found the stamp and put it into the registry and now magically everything works! for 6.1.0.2 is 20070105222255...

#4 User is offline   benners 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 692
  • Joined: 29-December 03

Posted 07 January 2007 - 06:14 AM

No Probs, we just have to find a way to do it automatically, had a quick look yesterday at a few versions and the stamp value is at different offsets in the exe so it may be tricky to find the value :unsure:

#5 User is offline   benners 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 692
  • Joined: 29-December 03

Posted 07 January 2007 - 08:24 AM

I have managed to find a way to get the stamp value from the exe and the AutoIt script works with the latest version. If you want to register it just add your key code to the script file, if the program is in trial mode the settings are reset anyway.

Attached File(s)



#6 User is offline   Inferi0r 

  • Little dude
  • PipPip
  • Group: Members
  • Posts: 180
  • Joined: 28-July 06

Posted 07 January 2007 - 11:54 AM

that's nice work benners :thumbup

#7 User is offline   benners 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 692
  • Joined: 29-December 03

Posted 07 January 2007 - 11:58 AM

View PostMalarky, on Jan 7 2007, 05:54 PM, said:

that's nice work benners :thumbup

Thanks Malarky, as long as the main exe stays similar it should be OK for a while

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