How to check KMS server address in Windows 7 Enterprise

Discussion in 'Windows 7' started by Tupi, Oct 7, 2012.

  1. Tupi

    Tupi MDL Novice

    Oct 7, 2012
    2
    0
    0
    I wonder if it is possible to have my computer display the KMS server address that was used to activate the Windows 7 Enterprise that is installed on the computer at the moment. Is there a command for it or such? I didn't find such an option in SLMGR. Is it possible somehow to find out this info?
     
  2. japes

    japes MDL Novice

    Apr 12, 2012
    5
    2
    0
    #2 japes, Oct 7, 2012
    Last edited: Oct 7, 2012

    slmgr -dlv (in a command console)
     
  3. Tupi

    Tupi MDL Novice

    Oct 7, 2012
    2
    0
    0
    Unfortunately if I add that in CMD.exe, it doesn't list any server address, only other informations, but the server address itself is missing.
     
  4. 100

    100 MDL Expert

    May 17, 2011
    1,349
    1,576
    60
    #4 100, Oct 8, 2012
    Last edited by a moderator: Apr 20, 2017
    PowerShell:
    Code:
    Get-EventLog -LogName Application -Source "Software Protection Platform Service" |? { $_.EventID -eq 12288 } | select TimeGenerated, @{Name='Result';Expression={$_.ReplacementStrings[0].Split(",")[0].Trim()}}, @{Name='Server';Expression={$_.ReplacementStrings[0].Split(",")[2].Trim()}}
    This will list all KMS activation attempts and their results (result 0 is "success").
     
  5. japes

    japes MDL Novice

    Apr 12, 2012
    5
    2
    0
    #5 japes, Oct 9, 2012
    Last edited: Oct 9, 2012
    then there is no kms server avalaible ;-) or better: your windows was not activated with a kms server

    kms.jpg