Главная > Windows > Windows XP — убрать уведомление о результатах проверки подлинности (WGA Notfication)

Windows XP — убрать уведомление о результатах проверки подлинности (WGA Notfication)

Содержимое cmd-файла:

@echo off
cls
 
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\WgaLogon" /f
IF EXIST "%Windir%\system32\dllcache\wgatray.exe" (del "%Windir%\system32\dllcache\wgatray.exe" /f)
IF EXIST "%Windir%\system32\dllcache\wgalogon.dll" (del "%Windir%\system32\dllcache\wgalogon.dll" /f)
IF EXIST "%Windir%\system32\wgalogon.dll" (del "%Windir%\system32\wgalogon.dll" /f)
 
:repeat
echo trying to remove WGA executable
taskkill /im WgaTray.exe /f /t
IF EXIST "%Windir%\system32\wgatray.exe" (del "%Windir%\system32\wgatray.exe" /f)
IF EXIST "%Windir%\system32\wgatray.exe" goto repeat
 
echo -----------------------------------------------
echo WGA remove complete (may be...)
echo After first run do not forget to reboot your PC
echo and re-run this script once more
echo -----------------------------------------------
 
pause

Запустить с правами администратора, затем перезагрузка.

Categories: Windows Tags:
  1. Lexis
    27 декабря,2011 в 12:33 | #1

    Спасибо помогло

Похожие публикации