Multi-OEM/Retail Project {MRP} - Mk3

Discussion in 'MDL Projects and Applications' started by mxman2k, Oct 15, 2016.

  1. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    6,996
    8,171
    210
    This is getting frightening. Both "normal" beta testing sources (I know of) have been taken down (404). The one on Proton Drive still works.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,624
    1,631
    150
    Concerning to say the least. Hopefully its just a hospital visit that takes it time
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Tito

    Tito Admin / Adviser
    Staff Member

    Nov 30, 2009
    18,918
    19,340
    340
    #12163 Tito, Mar 29, 2025 at 19:42
    Last edited: Mar 30, 2025 at 07:23
  4. jiafei2427

    jiafei2427 MDL Member

    Nov 26, 2020
    219
    69
    10
    Why are several friends in the forum sick? The world makes people feel uneasy.
     
  5. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,624
    1,631
    150
    This isnt the place to discuss this, he was ill for years and had a brain hemorrhage some years ago. As you can see by Tito's post he passed away so
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    6,996
    8,171
    210
    Let's hope we can get the sources from somewhere, and someone continues the project. It would be very sad to see this long-standing project end.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,257
    6,129
    150
    #12167 Dark Dinosaur, Mar 30, 2025 at 16:31
    Last edited: Mar 30, 2025 at 17:48
    Sources .. I can get you the sources
    ~~~~~~~~~~~
    Also MRPConfigCreator_v62 Source added.
    Check the file yourself before compile. -or run
    ~~~~~~~~~~~
    Decompile.exe -> C:\ProgramData\TempM
    Code:
    `
    @rem ----- ExeScript Options Begin -----
                                        
                                                    
                                      
                                      
                                          
                                          
                                                  
                                                                    
                                      
                                                        
                              
                                          
                                                    
                                  
                
    @rem ----- ExeScript Options End -----
    @echo off
    REM -------------------------------------------------------------
    REM [ Decompile control file - Calls Extraction Routine for MRP ]
    REM -------------------------------------------------------------
    IF EXIST "%Windir%\Sysnative\reg.exe" ( SET "SysPath=%Windir%\Sysnative" ) ELSE ( SET "SysPath=%Windir%\System32" )
    SET "Path=%SysPath%;%Windir%;%SysPath%\Wbem" & SET "REGEXE=REG.exe"
    IF EXIST "%SystemDrive%\ProgramData\TempM\extract.exe" CALL "%SystemDrive%\ProgramData\TempM\extract.exe" %1
    IF EXIST "%SystemDrive%\ProgramData\TempM\extract.exe" DEL /F /Q "%SystemDrive%\ProgramData\TempM\extract.exe" >NUL 2>&1
    GOTO :FinExt
    :FinExt
    SET "MRPChkX="
    REG DELETE "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v "MRPChkX" /f >NUL 2>&1
    DEL /F /Q "%0%" >NUL 2>&1
    `
    
    Call `C:\ProgramData\TempM\extract.exe` -> c:\windows\system32\extract.cmd
    ~~~~~~
    C:\ProgramData\TempM\Install.7z ~ PASSWORD PROTECTED, c:\windows\system32\extract.cmd, FIND `FLEX,` PASS --> `DEV_Mx2K=5xYo=MRP3`
    ALL SOURCES FILE's.


    ~~~~~~~~~~~

    Tool, ExeScript
    Code:
    when compiling the exe make sure it set to 32bit as if set as 64bit you cannot run the exe on 32bit.
    
    Also when compiling a bat/cmd and it uses reg and other commands it best to use the sysnative ones, if you look at top area of my scripts you will see the section that sets the REGEXE, CSCRIPTEXE etc then you just use the variable names which then will use the correct file as with reg.exe if you run the 32bit one on a compiled exe and not the sysnative one certain /add /delete and /query parameters will not work as expect and can cause serious issues.
    
    Took me ages to wok that out by trial and error.
    
    The sad thing is damn AV's nab the files as trojan etc - all lies it just m$ not want people to use such tools.
    
    
    Code:
    @cls
    @echo off
    cd /d "%~dp0"
    set "tempb=C:\windows\temp"
    set "tempm=C:\ProgramData\TempM"
    
    if not exist "$OEM$\$$\Setup\Scripts\DeCompile.exe" (
        echo: & echo:
        echo Missing files
        echo:
        pause
        exit /b
    )
    
    icacls "%tempm%" /grant everyone:(OI)(CI)(DE,DC)
    icacls "%tempb%" /grant everyone:(OI)(CI)(DE,DC)
    rd/s/q %tempm% & md %tempm%
    rd/s/q %tempb% & md %tempb%
    icacls "%tempm%" /deny everyone:(OI)(CI)(DE,DC)
    icacls "%tempb%" /deny everyone:(OI)(CI)(DE,DC)
    
    rd/s/q ExtractFiles & md ExtractFiles
    start "" "$OEM$\$$\Setup\Scripts\DeCompile.exe"
    timeout 1
    copy /y %tempm% ExtractFiles
    copy /y c:\windows\system32\extract.cmd ExtractFiles
    copy /y C:\Windows\SysWOW64\extract.cmd ExtractFiles
    
    cd /d ExtractFiles
    if not exist extract.cmd if exist extract.exe (
        start "" "%cd%\extract.exe"
        timeout 2
        copy /y C:\Windows\temp\*.cmd extract.cmd
        copy /y c:\windows\system32\extract.cmd
        copy /y C:\Windows\SysWOW64\extract.cmd
    )
    
    for /f "tokens=*" %%$ in ('type extract.cmd ^| find /i "FLEX=-P"') do set "Pass=%%$"
    md Install_Files
    7za x -y "install.7z" -o"Install_Files" -p%Pass:~12,-1%
    explorer "Install_Files"
    
    icacls "%tempm%" /grant everyone:(OI)(CI)(DE,DC)
    icacls "%tempb%" /grant everyone:(OI)(CI)(DE,DC)
    rd/s/q %tempm%
    rd/s/q %tempb%
    
     

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. LuKaWin10

    LuKaWin10 MDL Member

    Oct 6, 2023
    114
    65
    10
    Definitely, we gotta keep working on this. My document talking about the History of 7 RTM activators will be dedicated to mxman2k himself, I will add a specific paragraph dedicated to him. And I will add his profile picture in memory of him.
     
  9. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,257
    6,129
    150
    you can extract the file's with this script (i shared), and you can make .exe later using ExeScript tool
    he shared with me the tool + Serial, i can share with everyone else who need
    and the autoit part, you can get a decoder, and get full source code.
    (Exe2Aut_v5.7, myAutToExe_v2.12, myAutToExe_v2.16, Universal-AutoIT-Extractor-and-De-obfuscator-2.1)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. LuKaWin10

    LuKaWin10 MDL Member

    Oct 6, 2023
    114
    65
    10
    Okay! Thanks
     
  11. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,624
    1,631
    150
    If @Alphawaves could reach out again to his family and ask for it, they might but it feels abit extreme
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    6,996
    8,171
    210
    It would suffice to suggest to please not scrap/delete his storage media immediately. Then, with the due respect and after some time, kindly ask if MRP could be made available to pass it on to a new maintainer. I'm absolutely sure he also did not want his project to end like that, it was simply too sudden.

    On another note, I know he asked to keep the beta server's contents private and for beta testers only. Under the special circumstances, maybe making the latest versions of the tools available would be a good idea, as the last beta server (Proton) also won't stay up forever...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. The_MagicMan

    The_MagicMan MDL Novice

    Oct 11, 2011
    42
    67
    0
    Dang, this hit me hard. RIP my friend. I was the one who helped him take over the project. I will miss him. :(

    AKA:
    The Guardian
    Cerberus