Vbs脚本执行不同版本的Windows OS激活任务(MAK&KMS激活)

本文涉及的产品
密钥管理服务KMS,1000个密钥,100个凭据,1个月
简介:

我们前面几面都介绍了关于vbs脚本程序来完成一些半自动化的任务,今天我们介绍一下,Vbs脚本执行不同版本的Windows OS激活任务(MAK&KMS激活)的功能介绍,其实不管通过vbs实现什么样的功能,我们还是需要屡清思路来完成相关逻辑程序的编写及运行。我们今天既然要使用vbs脚本来完成不同版本的激活任务,而且不同版本的OS也有不同的MAK Key,所以我们需要通过获取系统的版本来完成对应的OS激活任务。同样,我们需要为用户定义激活程序,只有指定的MAC地址才能完成激活任务,所以我们逻辑思路有两个,1.获取用户MAC地址.2获取用户的系统版本(windows7、windows8、windows10、windows2008R2、windows2012R2……..)。3通过用户不同版本的OS来完成对应的OS key的导入及激活。具体见下:

首先是获取用户的MAC地址

clip_image002

1
2
3
4
5
6
7
8
9
Set mc = GetObject( "Winmgmts:" ).InstancesOf( "Win32_NetworkAdapterConfiguration" )
For Each mo In mc
If mo.IPEnabled = True Then
'TracePrint  "本机网卡MAC地址是: "  & mo.MacAddress
GetMAC = mo.MacAddress
Exit For
End If
Next
msgbox getmac

clip_image004

然后我们需要获取系统的OS版本;

因为当前系统的版本很多(windows7、windows8、windows10、windows2008R2、windows2012R2……..),所以我们需要获取系统版本;

clip_image006

1
2
3
4
5
6
7
8
9
strComputer =  "."
Set objWMIService = GetObject( "winmgmts:\\"  & strComputer &  "\root\cimv2" )
Set colItems = objWMIService.ExecQuery( "Select * from Win32_OperatingSystem" )
For Each objItem  in  colItems
strOSVersion = objItem.Version
OSVersion = objItem.Caption
Next
GetOSVersion=OSVersion
msgbox getosversion

clip_image007

满足以上条件后,我们就可以嵌套代码了,我们需要定义两个函数,一个为:获取用户系统版本,另外一个为获取用户的MAC地址。然后通过条件进行判断执行

我们定义当获取用户版本为windows7 企业版本或者专业版本的导入指定的key,然后完成激活。然后获取为windows10企业版或者专业版导入指定的key,然后完成激活。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
if  GetMAC() <>  "44:37-e6:20-f8:03"  Then
SET Wshell=CreateObject( "Wscript.Shell" )
CreateObject( "Wscript.Shell" ).Popup  "Please Wait for Activing ..." , 3,  "MsgBox" , 64
msgbox  "mac address:"  & GetMAC() & Chr(13) &  "OSVersion:"  & GetOSVersion() & Chr(13)
if  GetOSVersion() =  "Microsoft Winodws 7 企业版"  Or GetOSVersion() =  "Microsoft Winodws 7 专业版"  then
Wshell.Run  "slmgr.vbs /ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx" ,0,True
Wshell.Run  "slmgr.vbs /ato" ,0,True
Elseif GetOSVersion() =  "Microsoft Windows 10 企业版"  Or GetOSVersion() =  "Microsoft Windows 10 专业版"  Then
Wshell.Run  "slmgr.vbs /ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx" ,0,True
Wshell.Run  "slmgr.vbs /ato" ,0,True
Elseif GetOSVersion() =  "Microsoft Windows Server 2012 R2 Datacenter"  Or GetOSVersion() =  "Microsoft Windows Server 2012 R2 Standard"  then
Wshell.Run  "slmgr.vbs /ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx" ,0,True
Wshell.Run  "slmgr.vbs /ato" ,0,True
Elseif GetOSVersion() =  "Microsoft Windows 10 企业版"  Then
Wshell.Run  "slmgr.vbs /ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx" ,0,True
Wshell.Run  "slmgr.vbs /ato" ,0,True
End If
msgbox  "Active Success"
Else
msgbox  "Active Failed"
End If
Function GetMAC()
GetMAC =  ""
Dim mc,mo
Set mc = GetObject( "Winmgmts:" ).InstancesOf( "Win32_NetworkAdapterConfiguration" )
For Each mo In mc
If mo.IPEnabled = True Then
'TracePrint  "本机网卡MAC地址是: "  & mo.MacAddress
GetMAC = mo.MacAddress
Exit For
End If
Next
Set mc = nothing
End Function
Function GetOSVersion()
strComputer =  "."
Set objWMIService = GetObject( "winmgmts:\\"  & strComputer &  "\root\cimv2" )
Set colItems = objWMIService.ExecQuery( "Select * from Win32_OperatingSystem" )
For Each objItem  in  colItems
strOSVersion = objItem.Version
OSVersion = objItem.Caption
Next
GetOSVersion=OSVersion
End Function

wKiom1XtgrngRwRZAAHBzhPdsqA571.jpg

wKioL1XthOOQKYqTAAGkc90CbUU557.jpg

wKiom1Xtgrmx5_GTAAHKPIT-yj8009.jpg

wKioL1XthOORt4UkAAGx4VYkvck280.jpg

wKiom1XtgrqD7dJnAAJmKZbFO9c128.jpg

我们完成了MAK激活后,我们如果定义使用KMS激活呢,其实使用KMS激活就简单了,我们只需要将原来的代码从导入ipk修改为skms激活。因为我们都知道使用kms激活的命令为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'KMS激活命令如下:
'Slmgr.vbs  /skms  kmshosts.abc.com:1688
'Slmgr.vbs  /ato
所以修改后的代码为:见下:
if  GetMAC() <>  "44:37-e6:20-f8:03"  Then
SET Wshell=CreateObject( "Wscript.Shell" )
CreateObject( "Wscript.Shell" ).Popup  "Please Wait for Activing ..." , 3,  "MsgBox" , 64
'msgbox  "mac address:"  & GetMAC() & Chr(13) &  "OSVersion:"  & GetOSVersion() & Chr(13)
if  GetOSVersion() =  "Microsoft Winodws 7 企业版"  Or GetOSVersion() =  "Microsoft Winodws 7 专业版"  then
Wshell.Run  "slmgr.vbs /skms bj-actsrv02.beyondsoft.com" ,0,True
Wshell.Run  "slmgr.vbs /ato" ,0,True
Elseif GetOSVersion() =  "Microsoft Windows 10 企业版"  Or GetOSVersion() =  "Microsoft Windows 10 专业版"  Then
Wshell.Run  "slmgr.vbs /skms bj-actsrv02.beyondsoft.com" ,0,True
msgbox  "slmgr.vbs /ato"
Wshell.Run  "slmgr.vbs /ato" ,0,True
Elseif GetOSVersion() =  "Microsoft Windows 8.1 专业版"  then
Wshell.Run  "slmgr.vbs /skms bj-actsrv02.beyondsoft.com:1688" ,0,True
Wshell.Run  "slmgr.vbs /ato" ,0,True
Elseif GetOSVersion() =  "Microsoft Windows Server 2012 R2 Datacenter"  Or GetOSVersion() =  "Microsoft Windows Server 2012 R2 Standard"  then
Wshell.Run  "slmgr.vbs /skms bj-actsrv02.beyondsoft.com" ,0,True
Wshell.Run  "slmgr.vbs /ato" ,0,True
End If
msgbox  "Active Success"
Else
msgbox  "Active Failed"
End If
Function GetMAC()
GetMAC =  ""
Dim mc,mo
Set mc = GetObject( "Winmgmts:" ).InstancesOf( "Win32_NetworkAdapterConfiguration" )
For Each mo In mc
If mo.IPEnabled = True Then
'TracePrint  "本机网卡MAC地址是: "  & mo.MacAddress
GetMAC = mo.MacAddress
Exit For
End If
Next
Set mc = nothing
End Function
Function GetOSVersion()
strComputer =  "."
Set objWMIService = GetObject( "winmgmts:\\"  & strComputer &  "\root\cimv2" )
Set colItems = objWMIService.ExecQuery( "Select * from Win32_OperatingSystem" )
For Each objItem  in  colItems
strOSVersion = objItem.Version
OSVersion = objItem.Caption
Next
GetOSVersion=OSVersion
End Function

定义好后,我们也同样可以使用之前文章中介绍的访问,然后将vbs脚本使用工具封装成exe,这样就提高了安全性




本文转自 高文龙 51CTO博客,原文链接:http://blog.51cto.com/gaowenlong/1692492,如需转载请自行联系原作者

相关文章
|
4月前
|
Windows
如何查看自己电脑的windows系统版本?
这篇文章提供了一种简单快捷的方法来查看自己电脑的Windows系统版本,通过使用Windows的"运行"功能并输入`winver`命令来快速获取系统版本信息。
如何查看自己电脑的windows系统版本?
|
1月前
|
NoSQL Linux PHP
如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤
本文介绍了如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤。接着,对比了两种常用的 PHP Redis 客户端扩展:PhpRedis 和 Predis,详细说明了它们的安装方法及优缺点。最后,提供了使用 PhpRedis 和 Predis 在 PHP 中连接 Redis 服务器及进行字符串、列表、集合和哈希等数据类型的基本操作示例。
68 4
|
3月前
|
安全 Java 应用服务中间件
Windows版本的Tomcat无法启动,如何处理?
Windows版本的Tomcat无法启动,如何处理?
292 14
|
2月前
|
监控 关系型数据库 MySQL
PowerShell 脚本编写 :自动化Windows 开发工作流程
PowerShell 脚本编写 :自动化Windows 开发工作流程
91 0
|
3月前
|
Python Windows
python之windows脚本启动bat
python之windows脚本启动bat
|
2月前
|
并行计算 开发工具 异构计算
在Windows平台使用源码编译和安装PyTorch3D指定版本
【10月更文挑战第6天】在 Windows 平台上,编译和安装指定版本的 PyTorch3D 需要先安装 Python、Visual Studio Build Tools 和 CUDA(如有需要),然后通过 Git 获取源码。建议创建虚拟环境以隔离依赖,并使用 `pip` 安装所需库。最后,在源码目录下运行 `python setup.py install` 进行编译和安装。完成后即可在 Python 中导入 PyTorch3D 使用。
306 0
|
5月前
|
IDE Java 开发工具
如何在Windows操作系统上安装PyCharm?
【7月更文挑战第5天】如何在Windows操作系统上安装PyCharm?
214 59
|
3月前
|
Windows
【收藏】每个Windows XP版本的缩写
【收藏】每个Windows XP版本的缩写
|
4月前
|
Ubuntu Linux 虚拟化
安装Windows Linux 子系统的方法:适用于windows 11 版本
本文提供了在Windows 11系统上安装Linux子系统(WSL)的详细步骤,包括启用子系统和虚拟化功能、从Microsoft Store安装Linux发行版、设置WSL默认版本、安装WSL2补丁,以及完成Ubuntu的首次安装设置。
1280 2
|
4月前
|
存储 数据可视化 Python
【python】python tkinter 计算器GUI版本(模仿windows计算器 源码)【独一无二】
【python】python tkinter 计算器GUI版本(模仿windows计算器 源码)【独一无二】
276 1