My mistake. Tunmirror is extremely weak without running as /high though... you might try it. It seems to fail frequently without it.
this can make it run high Code: cmd /c start /b /high TunMirror.exe >nul 2>&1 you can do the same with KMS Server: Code: cmd /c start /b /high "" "KMS Server.exe" %port% %epid% %AI% %RI% KillProcessOnPort >nul 2>&1
Replace timeout /t 3 /nobreak >nul 2>&1 with NET START ALG >nul 2>&1 Code: NET START ALG >nul 2>&1 cmd /c start /b /high "" "KMS Server.exe" %port% %epid% %AI% %RI% KillProcessOnPort >nul 2>&1 cmd /c start /b /high TunMirror.exe >nul 2>&1 Never fails for me.
Thanks. I tried as instructed. It just won't activate my pc without "timeout /t 3" (at least). But it's stable though. Oh, ace2, do you know how to make FakeClient a "working" Service?
Iam still finding out how to show office activation status if i use the .cmd file it works but if i start it from a .vbs it indeed only shows windows status but .vbs is needed for the installer to work.
Try this: View attachment 25660 Usage: cscript KMSactivator.vbs /actso Note: dso = display status only Code: Microsoft (R) Windows Script Host Version 5.8 Copyright (C) Microsoft Corp. 1996-2006, 著作權所有,並保留一切權利 = Windows(R), ProfessionalWMC edition ========================================= Windows(R) Operating System, VOLUME_KMSCLIENT channel Partial Product Key: J8D3P License Status: Licensed KMS-host Machine: 172.16.0.1:1688 KMS-Server PID: 06401-00206-588-OOOOOO-03-1058-9600.0000-2932013 Expiration Date/Time: 2014/1/15 下午 11:17:14 =============================================================================== = Office 15, OfficeProPlusVL_KMS_Client edition =============================== Office 15, VOLUME_KMSCLIENT channel Partial Product Key: GVGXT License Status: Licensed KMS-host Machine: 172.16.0.1:1688 KMS-Server PID: 05426-00206-022-XXXXXX-03-1074-9200.0000-3052013 Expiration Date/Time: 2014/5/30 下午 11:17:14 ===============================================================================
xinso can you test this cmd, thanks ace2 . Spoiler Code: @echo off color 1F echo.Windows 8.1 5IN1 Activation. echo. netsh advfirewall set allprofiles state OFF >nul pushd "%~dp0" set port=1688 set kmsip=10.3.0.3 set AI=43200 set RI=43200 set epid=RandomKMSPID set /a ktap=0 devcon.exe install OemWin2k.inf tap0901 >nul cscript //B "%windir%\system32\slmgr.vbs" /skms 10.3.0.3:1688 >nul netsh interface ip set address "PUT YOUR TAP NAME HERE" static 10.3.0.1 255.255.255.0 >nul NET START ALG >nul start /b /high "" "KMS Server.exe" %port% %epid% %AI% %RI% KillProcessOnPort start /b TunMirror.exe >nul cscript //b "%windir%\system32\slmgr.vbs" /upk cscript //B "%windir%\system32\slmgr.vbs" /ipk PUT YOUR SERIAL HERE slmgr.vbs /ato taskkill /t /f /im "KMS Server.exe" >nul taskkill /t /f /im TunMirror.exe >nul NET STOP ALG >nul devcon.exe remove OemWin2k.inf tap0901 >nul cscript //B "%windir%\system32\slmgr.vbs" /ckms netsh advfirewall set allprofiles state ON >nul taskkill /t /f /im conhost.exe >nul