一、制作連個“批處理”文件制作:
1、備份激活文件“批處理”
---------------------------------------------------------------------------
@echo off
copy %windir%System32spp okenspkeyconfigpkeyconfig.xrm-ms
copy %windir%ServiceProfilesNetworkServiceAppDataRoamingMicrosoftSoftwareProtectionPlatform okens.dat
pause
exit
---------------------------------------------------------------------------
將以上劃線部分內字符復制/粘貼到記事本,另存為“備份激活文件.bat”即可。
2、恢復激活文件的“批處理”
---------------------------------------------------------------------------
@echo off
net stop sppsvc /y
takeown /f "%WinDir%System32spp okenspkeyconfigpkeyconfig.xrm-ms"
cacls "%WinDir%ServiceProfilesNetworkServiceAppDataRoamingMicrosoftSoftwareProtectionPlatform okens.dat" /e /g everyone:f
cacls "%WinDir%System32spp okenspkeyconfigpkeyconfig.xrm-ms" /e /g everyone:f
ren "%WinDir%ServiceProfilesNetworkServiceAppDataRoamingMicrosoftSoftwareProtectionPlatform okens.dat" "tokens.bak"
ren "%WinDir%System32spp okenspkeyconfigpkeyconfig.xrm-ms" "pkeyconfig.bak"
copy tokens.dat "%WinDir%ServiceProfilesNetworkServiceAppDataRoamingMicrosoftSoftwareProtectionPlatform"
copy pkeyconfig.xrm-ms "%WinDir%System32spp okenspkeyconfig"
del "%WinDir%ServiceProfilesNetworkServiceAppDataRoamingMicrosoftSoftwareProtectionPlatform okens.bak"
del "%WinDir%System32spp okenspkeyconfigpkeyconfig.bak"
net start sppsvc
cscript %windir%system32slmgr.vbs -ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
cscript %windir%system32slmgr.vbs -ato
pause
exit
---------------------------------------------------------------------------
2、將上面的的劃線部分內的字符復制黏貼到記事本上,然後激活該系統所使用的密鑰替換其中的XXXXX-XXXXX-XXXXX-XXXXX-XXXXX,另存為“恢復激活文件.bat”即可。
3、兩個“批處理”文件使用:
1)將上面的兩個批處理文件放到任意磁盤的同一文件夾,然後右擊它們以管理員身份運行“備份激活文件.bat”,就可得到兩個激活文件的備份。
2)重裝系統之後,在斷網的情況下,以管理員身份運行“恢復激活文件.bat”,即可實現操作系統的自行激活。