Advertisement
easternnl

Windows Activation Status

May 6th, 2015
800
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Check Windows Activation Status
  2. # returns the activated Windows License
  3. gwmi SoftwareLicensingProduct  | where {$_.applicationid -eq "55c92734-d682-4d71-983e-d6ec3f16059f"} | where {$_.licensestatus -eq 1 } | fl *
  4.  
  5. # Or run this:
  6. slmgr /dlv
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement