MSFN Forum: Register programs. - 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

Register programs. Malwarebytes' Anti-Malware 1.28, Your Uninstaller! 2008 v6.1.1 Rate Topic: -----

#1 User is offline   Raoul90 

  • Member
  • PipPip
  • Group: Members
  • Posts: 282
  • Joined: 05-February 08

Posted 13 September 2008 - 04:12 AM

Hey, im searching a way to register this two programs:
- Malwarebytes' Anti-Malware 1.28
- Your Uninstaller! 2008 v6.1.1256

I tried several thing for both programs, all dont work:
Malwarebytes:

Quote

mbam-setup.exe /VERYSILENT SP- /USER="*****" /SERIAL="****-****-****-****"

Quote

@echo off
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "RegistrationKey" /t REG_SZ /d "XXXXXXXXXXXXXXXX" /f
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "RegisteredTo" /t REG_SZ /d "*****" /f
EXIT



Your Uninstaller:

Quote

yu2008setup.exe /VERYSILENT SP- /USER="*****" /SERIAL="SERIALHERE"

Quote

@echo off
REG ADD "HKLM\SOFTWARE\Your Uninstaller 2008" /v "RegistrationKey" /t REG_SZ /d "SERIALHERE" /f
REG ADD "HKLM\SOFTWARE\Your Uninstaller 2008" /v "RegisteredTo" /t REG_SZ /d "NAMEHERE" /f
EXIT



I also tried getting the information out of my current installation:

Quote

[HKEY_CURRENT_USER\Software\PROGRAM]

But cant find any registration info there for this 2 programs.

Someone also told me about RegFromApp, i will try this when i run my next test-install in VMWare, cant use it in my current installation because the programs allready are registered.


#2 User is offline   radix 

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

Posted 15 September 2008 - 09:45 AM

View PostRaoul90, on Sep 13 2008, 01:12 PM, said:

Hey, im searching a way to register this two programs:
- Malwarebytes' Anti-Malware 1.28
- Your Uninstaller! 2008 v6.1.1256

For Malwarebytes' Anti-Malware 1.28:
@echo off
start /wait mbam-setup.exe /sp- /verysilent /norestart
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "ffffffffff" /f
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "ffffffffffffffffffffffffffffffffffffff" /f
exit


#3 User is offline   Raoul90 

  • Member
  • PipPip
  • Group: Members
  • Posts: 282
  • Joined: 05-February 08

Posted 15 September 2008 - 12:11 PM

Thanks will try that.

#4 User is offline   x-Shadow-x 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 356
  • Joined: 12-February 08

Posted 15 September 2008 - 07:10 PM

View Postradix, on Sep 15 2008, 08:45 AM, said:

For Malwarebytes' Anti-Malware 1.28:
@echo off
start /wait mbam-setup.exe /sp- /verysilent /norestart
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "ffffffffff" /f
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "ffffffffffffffffffffffffffffffffffffff" /f
exit


That wont work, When you register the program, it convertes it to some kind of hex, (I think). Use this little extractor I made to extract your key.

Edit: Quoted wrong person.

Attached File(s)


This post has been edited by x-Shadow-x: 15 September 2008 - 07:14 PM


#5 User is offline   radix 

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

Posted 16 September 2008 - 02:53 AM

View Postx-Shadow-x, on Sep 16 2008, 03:10 AM, said:

That wont work, When you register the program, it convertes it to some kind of hex, (I think). Use this little extractor I made to extract your key.

The code provided in my previous post works fine.
Register application and export those two registry keys. Copy hex strings in your batch file and remove commas. For example:
[HKEY_LOCAL_MACHINE\SOFTWARE\Malwarebytes' Anti-Malware]
 "ID"=hex:ff,ff,ff,ff,ff
 "Key"=hex:ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff,ff

became:
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "ffffffffff" /f
 REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "ffffffffffffffffffffffffffffffffffffff" /f

This post has been edited by radix: 16 September 2008 - 02:53 AM


#6 User is offline   Raoul90 

  • Member
  • PipPip
  • Group: Members
  • Posts: 282
  • Joined: 05-February 08

Posted 16 September 2008 - 10:10 AM

Does not seem to work tho.

I exported the reg from the registry (with hex), that works when i import it.

I used regfromapp for your uninstaller.

Both programs are registered after installation.

#7 User is offline   x-Shadow-x 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 356
  • Joined: 12-February 08

Posted 16 September 2008 - 11:30 AM

I thought you ment like your actual code.
REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "Shadow" /f
 REG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "1212-2121-2121-2121" /f

Sorry for thinking you where wrong.

So Raoul90, are they working?

This post has been edited by x-Shadow-x: 16 September 2008 - 11:31 AM


#8 User is offline   radix 

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

Posted 16 September 2008 - 12:02 PM

Well, it's working for me (tested in a clean VM).

#9 User is offline   x-Shadow-x 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 356
  • Joined: 12-February 08

Posted 16 September 2008 - 01:05 PM

Smae here.

#10 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 29 September 2008 - 01:09 PM

i dont know for the 2008 version of Your Uninstaller but for 2006 the keys are encrypted into registery

i used Autoit to install the 2006 u can change it to work with 2008

start.au3

Quote

;------------------------------------------------
;Registration
;------------------------------------------------
$name=""$serial=""

;------------------------------------------------
;Start program
;------------------------------------------------
RunWait("setup.exe /VERYSILENT /NORESTART")
;------------------------------------------------
Run(@ProgramFilesDir &"\Your Uninstaller 2006\uruninstaller.exe")

WinWaitActive("Your Uninstaller! 2006","Order Now!")
ControlClick ( "Your Uninstaller! 2006","Order Now!", "Enter Key")
WinWaitActive("Enter Code")
Sleep (500)
ControlSetText ("Enter Code","","TEdit2",$name)
Sleep (500)
ControlSetText ("Enter Code","","TEdit1",$serial)
Sleep (500)
ControlClick ( "Enter Code", "", "TRzBitBtn2" )
Sleep (500)
ProcessClose ("uruninstaller.exe")

exit


#11 User is offline   Stoner81 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 342
  • Joined: 15-June 08

Posted 29 September 2008 - 03:40 PM

I have the latest version of You Uninstaller 2008 so i will try that regfromapp utility and let you know.

Thanks for the info!!!!

#12 User is offline   Raoul90 

  • Member
  • PipPip
  • Group: Members
  • Posts: 282
  • Joined: 05-February 08

Posted 30 September 2008 - 03:12 PM

Got all working allready, will test your script DDSHadow.

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