mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2025-05-13 06:34:45 -04:00
Uploaded py-kms_2017-06-01
This commit is contained in:
parent
9b00c0df09
commit
42d374a993
20 changed files with 4960 additions and 0 deletions
33
randomPID.py
Normal file
33
randomPID.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
import kmsPidGenerator
|
||||
import uuid
|
||||
|
||||
#Variables
|
||||
lcid = 1033
|
||||
# 1033 (english) is en-us
|
||||
# 1034 (spanish) is es-es
|
||||
# 1041 (japanese) is ja
|
||||
|
||||
applicationId = uuid.UUID("55C92734-D682-4D71-983E-D6EC3F16059F") #Windows
|
||||
applicationId2 = uuid.UUID("0FF1CE15-A989-479D-AF46-F275C6370663") #Office 15 (2013)
|
||||
applicationId3 = uuid.UUID("59A52881-A989-479D-AF46-F275C6370663") #Office 14 (2010)
|
||||
|
||||
versionMajor = 6 # KMS Version
|
||||
# 6 for date starting October 17, 2013
|
||||
# 5 for date starting September 4, 2012
|
||||
# 4 for date starting February 16, 2011
|
||||
|
||||
#Responses
|
||||
response = kmsPidGenerator.epidGenerator(applicationId, versionMajor, lcid)
|
||||
response2 = kmsPidGenerator.epidGenerator(applicationId2, versionMajor, lcid)
|
||||
response3 = kmsPidGenerator.epidGenerator(applicationId3, versionMajor, lcid)
|
||||
|
||||
print "\nFor Windows: ", response
|
||||
print "\nFor Office 2013/2016: ", response2
|
||||
print "\nFor Office 2010: ", response3
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
#HWID Section
|
||||
import uuid
|
||||
key = uuid.uuid4().hex
|
||||
print "\nRandom hwid: ", key[:16]
|
||||
print "\n"
|
Loading…
Add table
Add a link
Reference in a new issue