Jump to content

Register programs.


Raoul90

Recommended Posts

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:

mbam-setup.exe /VERYSILENT SP- /USER="*****" /SERIAL="****-****-****-****"
@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:

yu2008setup.exe /VERYSILENT SP- /USER="*****" /SERIAL="SERIALHERE"
@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:

[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.

Link to comment
Share on other sites


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

Link to comment
Share on other sites

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.

Malwarebyte_Key_Extraction.zip

Edited by x-Shadow-x
Link to comment
Share on other sites

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

Edited by radix
Link to comment
Share on other sites

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?

Edited by x-Shadow-x
Link to comment
Share on other sites

  • 2 weeks later...

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

;------------------------------------------------

;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

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...