[How To] Remove All Watermarks from Windows 8 RTM's x86 & x64

Discussion in 'Windows 8' started by LiveFreeDead, Aug 14, 2012.

  1. fires

    fires MDL Junior Member

    Aug 20, 2009
    76
    15
    0
    Correct. I prefer unaltered files too but at the time it worked and still does for now at least.
     
  2. stemic28

    stemic28 MDL Senior Member

    Aug 23, 2009
    290
    299
    10
    thank you, it works fine on German OS
     
  3. danielkza

    danielkza MDL Novice

    Aug 17, 2012
    8
    3
    0
    #63 danielkza, Aug 21, 2012
    Last edited by a moderator: Apr 20, 2017
    A couple more suggestion for improving the patcher:

    1) Backup and restore the original file permissions:

    Backup:
    Code:
    icacls shell32.dll /save shell32.dll.acl
    Restore (assuming current working directory is System32):
    Code:
    icacls . /restore shell32.dll.acl
    2) Give ownership of files to Administrators group instead of current user, and restore TrustedInstaller as owner on uninstallation:

    Code:
    takeown /F shell32.dll /A
    Code:
    icacls shell32.dll /setowner "NT SERVICE\TrustedInstaller"
    Which would make the complete backup procedure something like this:

    Code:
    pushd "%WinDir%\System32"
    
    cp shell32.dll shell32.dll.old
    takeown /F shell32.dll /A
    icacls shell32.dll /save shell32.dll.acl
    icacls shell32.dll /grant *S-1-5-32-544:F
    attrib shell32.dll -r
    
    And restore (the order of the last two commands is important, you won't be able to change owner *after* ACLs are restored)

    Code:
    pushd "%WinDir%\System32"
    
    del shell32.dll
    mv shell32.dll.old shell32.dll
    attrib shell32.dll +r
    icacls shell32.dll /setowner "NT SERVICE\TrustedInstaller"
    icacls . /restore shell32.dll.acl
    
     
  4. LiveFreeDead

    LiveFreeDead MDL Member

    Aug 3, 2012
    122
    77
    10
    #64 LiveFreeDead, Aug 22, 2012
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Add silent support, the script below this one shows how to call it, you must run the silent script as Administrator too.
    Code:
    @ECHO OFF
    cls
    %SystemDrive%
    CD "%WINDIR%\System32"
    pushd "%WinDir%\System32"
    set SILENT=n
    IF "%1" == "/s" set SILENT=y
    
    echo test>C:\Windows\system32\admintest
    If EXIST C:\Windows\system32\admintest GOTO strt
    cls
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍ» ÛÛ²²
    ECHO ÛÛ º ***** º     Error     º ***** º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º Sorry, but you are running    º ÛÛ²²
    ECHO ÛÛ º without Administrator access  º ÛÛ²²
    ECHO ÛÛ º                               º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * º Press any key to exit º * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    exit
    :strt
    del /Q C:\Windows\system32\admintest >nul
    
    TASKKILL /F /IM explorer.exe >nul
    
    IF EXIST "%WINDIR%\System32\twinui.dll.old" GOTO REM
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "BuildLab" | findstr /i "9200"
    IF "%ERRORLEVEL%" == "0" GOTO BAK
    
    :ERROR
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍ» ÛÛ²²
    ECHO ÛÛ º ***** º    Warning    º ***** º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º Sorry, but you are running an º ÛÛ²²
    ECHO ÛÛ º unsupported build. Contact us º ÛÛ²²
    ECHO ÛÛ º     for more information.     º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * º Press any key to exit º * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    GOTO N
    
    :BAK
    cls
    TAKEOWN /F shell32.dll /A >NUL
    icacls shell32.dll /save shell32.dll.acl
    icacls shell32.dll /grant *S-1-5-32-544:F >NUL
    attrib shell32.dll -r
    REN shell32.dll shell32.dll.old
    
    TAKEOWN /F twinui.dll /A >NUL
    icacls twinui.dll /save twinui.dll.acl
    icacls twinui.dll /grant *S-1-5-32-544:F >NUL
    attrib twinui.dll -r
    REN twinui.dll twinui.dll.old
    :REPLACE
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "BuildLabEx" | findstr /i "x86fre"
    IF "%ERRORLEVEL%" == "0" GOTO 7955
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "BuildLabEx" | findstr /i "amd64fre"
    IF "%ERRORLEVEL%" == "0" GOTO 7999x64
    GOTO ERROR
    
    :7999x64
    cls
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍ» ÛÛ²²
    ECHO ÛÛ º * º RTM Watermark Remover º * º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍ͹ ÛÛ²²
    ECHO ÛÛ º This program will modify your º ÛÛ²²
    ECHO ÛÛ º system to remove the desktop  º ÛÛ²²
    ECHO ÛÛ º         x64 watermarks.       º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * Press any key to continue * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    CLS
    ECHO Working, please wait...
    copy /Y "%~dp0Wootx64\shell32.dll" "%WinDir%\System32\shell32.dll"
    copy /Y "%~dp0Wootx64\twinui.dll" "%WinDir%\System32\twinui.dll"
    IF "%ERRORLEVEL%" == "0" GOTO DONEEND
    GOTO FAILED
    
    :7955
    cls
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍ» ÛÛ²²
    ECHO ÛÛ º * º RTM Watermark Remover º * º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍ͹ ÛÛ²²
    ECHO ÛÛ º This program will modify your º ÛÛ²²
    ECHO ÛÛ º system to remove the desktop  º ÛÛ²²
    ECHO ÛÛ º         x86 watermarks.       º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * Press any key to continue * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    CLS
    ECHO Working, please wait...
    copy /Y "%~dp0Wootx86\shell32.dll" "%WinDir%\System32\shell32.dll"
    copy /Y "%~dp0Wootx86\twinui.dll" "%WinDir%\System32\twinui.dll"
    IF "%ERRORLEVEL%" == "0" GOTO DONEEND
    GOTO FAILED
    
    :FAILED
    echo Failed!
    REN "shell32.dll.old" "shell32.dll" >NUL
    REN "twinui.dll.old" "twinui.dll" >NUL
    GOTO DONEEND
    
    :REM
    IF "%SILENT%"=="y" GOTO Y
    ECHO RTM Watermark Remover already installed. Want to remove it? (Y/N)
    SET /P A=
    GOTO %A%
    GOTO N
    
    :Y
    echo.
    echo Restoring Original Files...
    echo.
    IF EXIST %WINDIR%\System32\shell32.dll.old GOTO R1
    IF EXIST %WINDIR%\System32\twinui.dll.old GOTO R2
    GOTO END
    :R1
    TAKEOWN /F shell32.dll /A >NUL
    icacls shell32.dll /grant *S-1-5-32-544:F >NUL
    attrib shell32.dll -r
    DEL /Q shell32.dll >nul
    REN shell32.dll.old shell32.dll
    IF EXIST %WINDIR%\System32\twinui.dll.old GOTO R2
    GOTO DONEEND
    :R2
    TAKEOWN /F twinui.dll /A >NUL
    icacls twinui.dll /grant *S-1-5-32-544:F >NUL
    attrib twinui.dll -r
    DEL /Q twinui.dll >nul
    REN twinui.dll.old twinui.dll
    GOTO DONEEND
    
    :DONEEND
    icacls shell32.dll /setowner "NT SERVICE\TrustedInstaller"
    icacls . /restore shell32.dll.acl
    icacls twinui.dll /setowner "NT SERVICE\TrustedInstaller"
    icacls . /restore twinui.dll.acl
    
    :END
    ECHO.  
    ECHO Complete.
    IF "%SILENT%"=="n" PAUSE
    start explorer
    exit
    
    :N
    start explorer
    exit
    
    RunSilent.cmd
    Code:
    @echo off
    echo test>C:\Windows\system32\admintest
    If EXIST C:\Windows\system32\admintest GOTO strt
    cls
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍ» ÛÛ²²
    ECHO ÛÛ º ***** º     Error     º ***** º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º Sorry, but you are running    º ÛÛ²²
    ECHO ÛÛ º without Administrator access  º ÛÛ²²
    ECHO ÛÛ º                               º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * º Press any key to exit º * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    rem PAUSE >NUL
    exit
    :strt
    del /Q C:\Windows\system32\admintest >nul
    %~dp0Watermark_Patches.cmd /s
    Also I noticed shell32.dll.old can be in use by DWM and it will cause problems, so I changed the check to twinui.dll.old instead, maybe this is why the original script would rename to shell32.dll.rem before deleting it on the 2nd pass.
     
  5. NetworkPro

    NetworkPro MDL Novice

    Feb 26, 2011
    16
    0
    0
    v1.2 f-ed my system, windows had to do a restore of some kind for 5 minutes. Do you test these on x64 and after a reboot?
     
  6. sasasa

    sasasa MDL Novice

    Jul 25, 2009
    4
    0
    0
    Sostituire i due file nei seguenti percorsi ,
    per sostituire i file assicurarsi di avere i privilegi di amministratore
    C:\Windows\Branding\Basebrd\it-IT\basebrd.dll
    C:\Windows\System32\it-IT\shell32.dll.mui
    Una volta fatto esegui come aministratore cmd e inserite il seguente comando mcbuilder aspettate 20 secondi e riavviate il sitema. In fine avrete il vostro Windows 8 Enterprice senza nessuna prova di valutazione


    Replace the two files in these directories.
    To replace the file must have administrator privileges
    C:\Windows\Branding\Basebrd\it-IT\basebrd.dll
    C:\Windows\System32\it-IT\shell32.dll.mui
    After executing the command cmd: mcbuilder wait 20 seconds and restart. done

    X86 VERSION

    Download
    www .2shared.com/file/tD7l-Vb_/Remove_evaluation_copy_and_tim.html
     
  7. NetworkPro

    NetworkPro MDL Novice

    Feb 26, 2011
    16
    0
    0
    Good to know this. I thought for a second Microsoft are still f-ing idiots. Good thing since Vista SP2 they are smart guys and their product is pretty good.
     
  8. stemic28

    stemic28 MDL Senior Member

    Aug 23, 2009
    290
    299
    10
    now i have tested on Windows 8 Enterprise x86 and x64 it works very well

    :biggrin:
     
  9. venu

    venu MDL Addicted

    Oct 16, 2009
    896
    100
    30
    Is the threadkiller supposed to do away with the build watermark as well? I just installed it and the build mark's still there. Havent installed the woot patch.
     
  10. woot332

    woot332 MDL Senior Member

    Feb 18, 2011
    390
    815
    10
    nope threadkiller stops the overlay watermark afaik, to remove build watermark patch .mui files or shell32.dll;)
     
  11. FiB3R_OPTiC

    FiB3R_OPTiC MDL Member

    Oct 30, 2011
    154
    45
    10
  12. NetworkPro

    NetworkPro MDL Novice

    Feb 26, 2011
    16
    0
    0
    Your last script f-ed my other system which is a 32bit one.

    I think you are not even testing these before posting them.
     
  13. NetworkPro

    NetworkPro MDL Novice

    Feb 26, 2011
    16
    0
    0
    #73 NetworkPro, Aug 27, 2012
    Last edited by a moderator: Apr 20, 2017
    P.S. Use this instead
    Code:
    forum.xda-developers.com/showthread.php?t=1837246
    cheers.

    Sorry guys for upsetting the maintainer :) here's the backup of his first post before he god mad.
    The CODE below is his last script as well. These cause windows to Auto Restore so please do not use on production system before fixing the scripts first.

    Code:
    @ECHO OFF
    cls
    %SystemDrive%
    CD "%WINDIR%\System32"
    pushd "%WinDir%\System32"
    set SILENT=n
    IF "%1" == "/s" set SILENT=y
    
    echo test>C:\Windows\system32\admintest
    If EXIST C:\Windows\system32\admintest GOTO strt
    cls
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍ» ÛÛ²²
    ECHO ÛÛ º ***** º     Error     º ***** º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º Sorry, but you are running    º ÛÛ²²
    ECHO ÛÛ º without Administrator access  º ÛÛ²²
    ECHO ÛÛ º                               º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * º Press any key to exit º * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    exit
    :strt
    del /Q C:\Windows\system32\admintest >nul
    
    TASKKILL /F /IM explorer.exe >nul
    
    IF EXIST "%WINDIR%\System32\twinui.dll.old" GOTO REM
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "BuildLab" | findstr /i "9200"
    IF "%ERRORLEVEL%" == "0" GOTO BAK
    
    :ERROR
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍ» ÛÛ²²
    ECHO ÛÛ º ***** º    Warning    º ***** º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º Sorry, but you are running an º ÛÛ²²
    ECHO ÛÛ º unsupported build. Contact us º ÛÛ²²
    ECHO ÛÛ º     for more information.     º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * º Press any key to exit º * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    GOTO N
    
    :BAK
    cls
    TAKEOWN /F shell32.dll /A >NUL
    icacls shell32.dll /save shell32.dll.acl
    icacls shell32.dll /grant *S-1-5-32-544:F >NUL
    attrib shell32.dll -r
    REN shell32.dll shell32.dll.old
    
    TAKEOWN /F twinui.dll /A >NUL
    icacls twinui.dll /save twinui.dll.acl
    icacls twinui.dll /grant *S-1-5-32-544:F >NUL
    attrib twinui.dll -r
    REN twinui.dll twinui.dll.old
    :REPLACE
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "BuildLabEx" | findstr /i "x86fre"
    IF "%ERRORLEVEL%" == "0" GOTO 7955
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "BuildLabEx" | findstr /i "amd64fre"
    IF "%ERRORLEVEL%" == "0" GOTO 7999x64
    GOTO ERROR
    
    :7999x64
    cls
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍ» ÛÛ²²
    ECHO ÛÛ º * º RTM Watermark Remover º * º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍ͹ ÛÛ²²
    ECHO ÛÛ º This program will modify your º ÛÛ²²
    ECHO ÛÛ º system to remove the desktop  º ÛÛ²²
    ECHO ÛÛ º         x64 watermarks.       º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * Press any key to continue * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    CLS
    ECHO Working, please wait...
    copy /Y "%~dp0Wootx64\shell32.dll" "%WinDir%\System32\shell32.dll"
    copy /Y "%~dp0Wootx64\twinui.dll" "%WinDir%\System32\twinui.dll"
    IF "%ERRORLEVEL%" == "0" GOTO DONEEND
    GOTO FAILED
    
    :7955
    cls
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ
    ECHO ÛÛ ÉÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍ» ÛÛ²²
    ECHO ÛÛ º * º RTM Watermark Remover º * º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍ͹ ÛÛ²²
    ECHO ÛÛ º This program will modify your º ÛÛ²²
    ECHO ÛÛ º system to remove the desktop  º ÛÛ²²
    ECHO ÛÛ º         x86 watermarks.       º ÛÛ²²
    ECHO ÛÛ ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹ ÛÛ²²
    ECHO ÛÛ º * Press any key to continue * º ÛÛ²²
    ECHO ÛÛ ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ ÛÛ²²
    ECHO ÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛ²²
    ECHO   ²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²
    IF "%SILENT%"=="n" PAUSE >NUL
    CLS
    ECHO Working, please wait...
    copy /Y "%~dp0Wootx86\shell32.dll" "%WinDir%\System32\shell32.dll"
    copy /Y "%~dp0Wootx86\twinui.dll" "%WinDir%\System32\twinui.dll"
    IF "%ERRORLEVEL%" == "0" GOTO DONEEND
    GOTO FAILED
    
    :FAILED
    echo Failed!
    REN "shell32.dll.old" "shell32.dll" >NUL
    REN "twinui.dll.old" "twinui.dll" >NUL
    GOTO DONEEND
    
    :REM
    IF "%SILENT%"=="y" GOTO Y
    ECHO RTM Watermark Remover already installed. Want to remove it? (Y/N)
    SET /P A=
    GOTO %A%
    GOTO N
    
    :Y
    echo.
    echo Restoring Original Files...
    echo.
    IF EXIST %WINDIR%\System32\shell32.dll.old GOTO R1
    IF EXIST %WINDIR%\System32\twinui.dll.old GOTO R2
    GOTO END
    :R1
    TAKEOWN /F shell32.dll /A >NUL
    icacls shell32.dll /grant *S-1-5-32-544:F >NUL
    attrib shell32.dll -r
    DEL /Q shell32.dll >nul
    REN shell32.dll.old shell32.dll
    IF EXIST %WINDIR%\System32\twinui.dll.old GOTO R2
    GOTO DONEEND
    :R2
    TAKEOWN /F twinui.dll /A >NUL
    icacls twinui.dll /grant *S-1-5-32-544:F >NUL
    attrib twinui.dll -r
    DEL /Q twinui.dll >nul
    REN twinui.dll.old twinui.dll
    GOTO DONEEND
    
    :DONEEND
    icacls shell32.dll /setowner "NT SERVICE\TrustedInstaller"
    icacls . /restore shell32.dll.acl
    icacls twinui.dll /setowner "NT SERVICE\TrustedInstaller"
    icacls . /restore twinui.dll.acl
    
    :END
    ECHO.  
    ECHO Complete.
    IF "%SILENT%"=="n" PAUSE
    start explorer
    exit
    
    :N
    start explorer
    exit
    P.S. Use this instead
    Code:
    forum.xda-developers.com/showthread.php?t=1837246
    cheers.
     
  14. NikosGr

    NikosGr MDL Member

    Sep 3, 2012
    192
    4
    10
    hello iam a newcomer, cant read the whole thread just wondering if there is an app that can activate windows 8 pro N that i have i tried one yesterday but didnt work.

    thank you.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. -=fantômas=-

    -=fantômas=- MDL Senior Member

    Aug 10, 2012
    265
    203
    10
    Nope, "magic app" not exist yet, sorry.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. NikosGr

    NikosGr MDL Member

    Sep 3, 2012
    192
    4
    10
    #76 NikosGr, Sep 3, 2012
    Last edited by a moderator: Sep 6, 2012
    Does this work for you? Some said it worked for them but not for me.

    ***************
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. -=fantômas=-

    -=fantômas=- MDL Senior Member

    Aug 10, 2012
    265
    203
    10
    #77 -=fantômas=-, Sep 3, 2012
    Last edited by a moderator: Sep 6, 2012
    Do not waste your time on this crap! This is not true activator. If you have it installed then enter sfc / scannow in Command Prompt (as Administrator) and restart your PC. You will see the results.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. NikosGr

    NikosGr MDL Member

    Sep 3, 2012
    192
    4
    10
    #78 NikosGr, Sep 3, 2012
    Last edited by a moderator: Apr 20, 2017
    Thanks you were right, it looks like it screwed up my system although its working well.....

    Code:
    C:\Windows\system32>sfc /scannow
    
    
    Beginning system scan.  This process will take some time.
    
    
    Beginning verification phase of system scan.
    Verification 100% complete.
    
    
    Windows Resource Protection found corrupt files but was unable to fix some
    of them. Details are included in the CBS.Log windir\Logs\CBS\CBS.log. For
    example C:\Windows\Logs\CBS\CBS.log. Note that logging is currently not
    supported in offline servicing scenarios.
    
    Now what do i need to do?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. -=fantômas=-

    -=fantômas=- MDL Senior Member

    Aug 10, 2012
    265
    203
    10
    Restore your PC to earlier point or just reinstall (clean install) the OS for sure, and wait for real activation solution.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  20. tinux

    tinux MDL Junior Member

    Feb 26, 2012
    84
    14
    0
    i HAVE BEEN USING IT FOR THE LAST 2 WEEKS WITH NO ISSUE. opps sorry capital . i can update and run everything without any problem