Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Register programs.

Featured Replies

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.

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

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

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

  • Author

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.

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

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

  • 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

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

Thanks for the info!!!!

  • Author

Got all working allready, will test your script DDSHadow.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.