Can you new visitors please stop acting like children and quit asking for hacks. The more you all complain about it the less likely it will be posted. Use some common sense and manors and just read about the technology and wait. I just went over about 10 pages of stuff that was continually re asked that could have been answered by reading hte front page. Flooding this forum will only draw bad attention to it. This is a developer forum now a crack warehouse. People write programs here for the good of users not so immature kids can get free programs. Show this place some respect.
Please can you check if activation works for kms-c.no-ip.org beacuse its not redirecting me to localhost.
Yeah no joke this thread is already 40+ pages of noobs nagging for activation along with the other thread here which is 200+ pages long. Message to noobs, Just VIEW the thread and LOOK for information don't add crap to it.
You can still check with "slmgr /dli" it will give you 180 days again and how many minutes this equates to ! probably "259200 minuites" KMS activation will refresh you're current activation.
Thanks you,the adress its not redirected me to localhost and belived that the server is online.And I read it all pages...
Hell, at this point the only thing I want to know is what EXACTLY did those crazy Russians do to create a KMS server that actually WORKED? I've been following the activation process for Win8 for quite some time now, and I feel pretty confident the Russians didn't have access to a working key. It's great to know that this method works though, because that makes me believe that there will definitely be a way of activating 8 the day it's officially released to the public (Oct. 26th, not the 15th for MSDN subscribers).
I don t have activate, but there is no reason to talk all time in the same, of course i want the same, but they know, appreciate life. No more ask please, post bla bla...
I made a simple batch file that will connect to all three known kms servers and attempt activation with them automatically It does all commands silently so you don't have all of those annoying popups from every attempt and it will loop infinitely My goal is to make it stop Automatically when An activation server has been reached, And Echo Windows Successfully! Just paste the below code into a notepad and save as Activate.bat to C:\ root directory Then make a shortcut to that file on your desktop. Then right click the shortcut and go to "Properties" Then go to the Shortcut Tab Then click advanced Then check the "Run as Administrator" box Hit OK and OK again Now run it Maybe this could be a base idea for a Windows based KMS Activation Program Then you could add the option of adding your own KMS server. Here's what I got so far Code: @Echo Off Echo Attempting Windows Activation Echo Please Wait... cscript //B "%windir%\system32\slmgr.vbs" /skms kms-c.no-ip.org:1688 cscript //B "%windir%\system32\slmgr.vbs" /ato cscript //B "%windir%\system32\slmgr.vbs" /skms kms-c.no-ip.org cscript //B "%windir%\system32\slmgr.vbs" -ato cscript //B "%windir%\system32\slmgr.vbs" /skms 91.149.135.121:1688 cscript //B "%windir%\system32\slmgr.vbs" -ato cscript //B "%windir%\system32\slmgr.vbs" /skms 91.149.135.121 cscript //B "%windir%\system32\slmgr.vbs" -ato cscript //B "%windir%\system32\slmgr.vbs" /skms 91.149.135.83:1688 cscript //B "%windir%\system32\slmgr.vbs" -ato cscript //B "%windir%\system32\slmgr.vbs" /skms 91.149.135.83 cscript //B "%windir%\system32\slmgr.vbs" -ato Echo Activation Status... cscript slmgr.vbs /dlv Echo Activation will Retry in 10 Seconds ping 1.1.1.1 -n 10 -w 1000 > nul cls start /b /i C:\Activate.bat