The keygen will work even if the firewall permission is set to block all connections. I think firewall kicks in because it opens a port.
I like that that disables XP firewall (too bad it won't work on other firewalls), but I can't figure out why it tries to access internet? I mean it sends the key to your machine without internet access. Also I have blocked it with NIS 2010 and still activated fine using KMS. Maybe it is the port though in this case there is no reason not to set it to block vs allow if blocking internet access doesn't hurt it.
As in anyone using any security product and not the built in firewall in windows may throw up a popup as this won't configure that firewall. Though many just let it do its function. I didn't get a warning with NIS but it limited some internet access on it.
Oh, you meant 3rd party firewalls. In my experience Comodo and ESS have never asked when using the keygen, only Windows Firewall pops up.
Yeah, though I haven't seen any 3rd party firewall complain. I got the XP firewall popup in a VM though. Windows Firewall has sometimes complained about things that operate on networks but not over the internet such as Cisco Packet Tracer.
I have noticed one more thing with the keygen and Office. If the Keygen is running and Word is opened, osppsvc sends a activation request to the KMS host(Keygen) and it gets processed.
Yeah, that is why I recommend some people do that after a license delete, as sometimes its more successful than running ospp.vbs /act (though it can also get 800700D or whatever that error is).
Have tried to activate with this bat and with the keygen in the same folder, started to work but command windows sudenly dissapeared, did not send any message, so how to check if it has finally been activated?. Used volumen (es-es).
Open Word, File menu -> Help If it says Product is Activated, then it worked. For seeing status of the product, open cmd promt and type cscript "%PROGRAMFILES%\Microsoft Office\OFFICE14\OSPP.VBS" /dstatus
The following code will activate Office products individually i.e., it will try to activate a product for a maximum of 10 times until it displays a failure message. Same instructions as before. Place the Keygen along with this batch file Run as Administrator on First run Code: @echo off mode con: cols=60 lines=10 title Office Volume Activator setlocal EnableDelayedExpansion wmic path OfficeSoftwareProtectionService where Version='14.0.370.400' call SetKeyManagementServiceMachine MachineName="localhost" > NUL 2>&1 start /B /D "%~dp0" Keygen.exe >NUL for /f "tokens=2 delims==" %%A in ('"wmic path OfficeSoftwareProtectionProduct where (LicenseStatus^>0 and LicenseFamily LIKE "%%KMS_Client%%") get id /format:list"') do call :activate %%A taskkill /IM "Keygen.exe" /F >NUL exit :activate set /a max=0 set skuid=%1 call set skuid=!skuid: =! cls Echo. Echo Attempting to activate the following product: for /f "tokens=2 delims==" %%x in ('"wmic path OfficeSoftwareProtectionProduct where ID='!skuid!' get Name /format:list"') do set name=%%x Echo. Echo SKU ID: !skuid! Echo Name: !name! set /p var=Activation Attempts... <NUL :act wmic path OfficeSoftwareProtectionProduct where ID='!skuid!' call Activate > NUL 2>&1 set /a k=0 set /a max=%max%+1 set /p var=%max%<NUL for /f "tokens=2 delims==" %%x in ('"wmic path OfficeSoftwareProtectionProduct where ID='!skuid!' get GracePeriodRemaining /format:list"') do set gpr=%%x if %gpr% lss 259200 set /a k=1 if %max% lss 10 if %k% EQU 1 goto act set /a gpr=%gpr%/60/24 Echo. Echo Remaining Period: %gpr% day(s) Echo. IF %gpr% EQU 180 ( echo Product Activation Successful ) ELSE ( echo Product Activation Failed ) ping -n 5 localhost > NUL 2>&1 Note: The program will quit automatically after 5 seconds.
MasterDisaster or somebody, can you help? This is the batch file to activate Visio 2010 Premium using ZWT's keygen. I say 90% of the time with just 1 try and you activate the software. This morning, I had to run this batch file 3 times to get it activated, after the 1st and 2nd attempt failed. So afterward here's what I did to the batch file, by duplicating the same activation command 4 times. There's gotta be a smarter way. Code: @echo off cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /sethst:127.0.0.1 Start Keygen.exe cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act taskkill /im Keygen.exe /f cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /remhst taskkill /im OSPPSVC.EXE /f exit
Yes, there is a smarter way. Look at the code above your post. It automatically retries if activation fails based on the Grace Period Remaining.