September 13, 200817 yr 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 EXITYour Uninstaller:yu2008setup.exe /VERYSILENT SP- /USER="*****" /SERIAL="SERIALHERE"@echo offREG ADD "HKLM\SOFTWARE\Your Uninstaller 2008" /v "RegistrationKey" /t REG_SZ /d "SERIALHERE" /fREG ADD "HKLM\SOFTWARE\Your Uninstaller 2008" /v "RegisteredTo" /t REG_SZ /d "NAMEHERE" /fEXITI 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.
September 15, 200817 yr Hey, im searching a way to register this two programs:- Malwarebytes' Anti-Malware 1.28- Your Uninstaller! 2008 v6.1.1256For Malwarebytes' Anti-Malware 1.28:@echo offstart /wait mbam-setup.exe /sp- /verysilent /norestartREG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "ffffffffff" /fREG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "ffffffffffffffffffffffffffffffffffffff" /fexit
September 16, 200817 yr For Malwarebytes' Anti-Malware 1.28:@echo offstart /wait mbam-setup.exe /sp- /verysilent /norestartREG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "ID" /t REG_BINARY /d "ffffffffff" /fREG ADD "HKLM\SOFTWARE\Malwarebytes' Anti-Malware" /v "Key" /t REG_BINARY /d "ffffffffffffffffffffffffffffffffffffff" /fexitThat 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 September 16, 200817 yr by x-Shadow-x
September 16, 200817 yr 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,ffbecame: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 September 16, 200817 yr by radix
September 16, 200817 yr 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.
September 16, 200817 yr 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" /fSorry for thinking you where wrong.So Raoul90, are they working? Edited September 16, 200817 yr by x-Shadow-x
September 29, 200817 yr i dont know for the 2008 version of Your Uninstaller but for 2006 the keys are encrypted into registeryi used Autoit to install the 2006 u can change it to work with 2008start.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
September 29, 200817 yr I have the latest version of You Uninstaller 2008 so i will try that regfromapp utility and let you know.Thanks for the info!!!!
Create an account or sign in to comment