9月27日
Win 7激活成功
上次讨论了Win 7的OEM激活,前几天通过授权KEY,正式激活了我的Win 7,这次非OEM激活哦,嘿嘿,永久激活,心里非常开心啊O(∩_∩)O
看图:(从产品ID就可以看出是通过什么方式激活的了~)
PS:备份Win7激活信息:(保存为bat/com)
| @echo off echo 请在管理员administrator下运行 echo. & pause echo 备份原始激活文件到备份文件夹 md 备份 copy %windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.dat 备份\tokens.dat copy %windir%\System32\spp\tokens\pkeyconfig\pkeyconfig.xrm-ms 备份\pkeyconfig.xrm-ms echo 关闭Software Licensing服务 net stop sppsvc echo 取得原始激活文件的权限并删除 takeown /f %windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.dat takeown /f %windir%\System32\spp\tokens\pkeyconfig\pkeyconfig.xrm-ms cacls %windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.dat /t /e /g administrator:f cacls %windir%\System32\spp\tokens\pkeyconfig\pkeyconfig.xrm-ms /t /e /g administrator:f del %windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.dat del %windir%\System32\spp\tokens\pkeyconfig\pkeyconfig.xrm-ms echo copy激活文件到系统文件夹 copy tokens.dat %windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.dat copy pkeyconfig.xrm-ms %windir%\System32\spp\tokens\pkeyconfig\pkeyconfig.xrm-ms echo 开启Software Licensing服务 net start sppsvc start %windir%\System32\spp\tokens\pkeyconfig\ start %windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\ echo 更改产品密钥 SLMGR.VBS -ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX(改成你的序列号) echo 完成激活! echo. & pause |
Lindows