Activate server 2008 (mcfly method)

1. Install Windows.
2. Do not enter S/N, and clear Automatically Activate Windows when I’m online during installation.
3. Open Services (Start-All programs-Administrative tools)
4. Go to SL UI Notification Service and disable it. Stop it if running.
5. Restart.
6. On Windows Explorer go to windowssystem32, open Properties of SLLUA.exe file.
7. Go to Security -> Advanced.
8. Go to Owner -> Edit…
9. Click Other users or groups…
10. Click Advanced, Find now. With Administrator selected, click OK 3 times with confirming one popup.
11. Click OK once more, and you are in main Properties window.
12. Close it and open properties again for the file.
13. Go to Security -> Edit.
14. Choose Administrators and check Full Control box for Allow.
15. Confirm with OK and the popup that comes after it.
16. Delete the SLLUA.exe file.
17. Repeat steps 6 to 16 for the 2 files: SLUI.exe and SLUINotify.dll.
18. Restart.
19. To test, you can change the date to one year ahead and see if it works.
20. Change the date back to today.
21. Restart.
22. The computer will be like that forever and will never bother you again with License Warning Popup.

or you can paste next in a bat file and run-it

 

ECHO OFF
ECHO ===============================================================================
ECHO Windows Server 2008 Activation Bypass
ECHO by John Candid
ECHO.
ECHO Based on the McFly Method
ECHO ===============================================================================
ECHO.
ECHO Stopping and disabling the SL UI Notification Service…
net stop SLUINotify
sc config SLUINotify start= disabled
ECHO Processing SLLUA.exe…
TAKEOWN /f “%windir%System32SLLUA.exe”
ECHO y| cacls “%windir%System32SLLUA.exe” /G Administrator:F
RENAME “%windir%System32SLLUA.exe” SLLUA.ex_
ECHO Processing SLUI.exe…
TAKEOWN /f “%windir%System32SLUI.exe”
ECHO y| cacls “%windir%System32SLUI.exe” /G Administrator:F
RENAME “%windir%System32SLUI.exe” SLUI.ex_
ECHO Processing SLUINotify.dll…
TAKEOWN /f “%windir%System32SLUINotify.dll”
ECHO y| cacls “%windir%System32SLUINotify.dll” /G Administrator:F
RENAME “%windir%System32SLUINotify.dll” SLUINotify.dl_
ECHO Press any key to restart…
PAUSE>nul
SHUTDOWN /r /t 0