Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows XP系統教程 >> 關於XP系統教程 >> 如何更改WindowsXP操作系統序列號

如何更改WindowsXP操作系統序列號

日期:2017/1/23 17:16:13      編輯:關於XP系統教程

  本文適用於:
  
  Microsoft Windows XP Professional
  Microsoft Windows XP Professional SP1
  
  本文是用於描述如何更改Windows XP中的序列號,你有2個方法來修改在已經安裝完畢的Windows XP上更改序列號,一個是使用GUI界面裡面的激活向導,一個是使用WMI(Windows Management Instrumentation)來實現的。
  
  使用激活向導修改
  
  微軟強烈建議你在修改之前作一個系統還原點,以免遭受不測。
  
  1.點擊[開始],再點擊[運行];
  2.輸入regedit以後回車打開注冊表編輯器;
  3.定位到HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsNTCurrent VersionWPAEvents,在右邊右鍵單擊OOBETimer,然後選擇修改;
  4.至少修改一個字節,確定保存。
  5.點擊[開始],再點擊[運行];
  6.輸入%systemroot%system32oobemsoobe.exe /a
  7.選擇通過電話激活以後點擊下一步;
  8.點擊修改序列號;
  9.輸入新的序列號以後選擇更新;
  
  如果退回到前一個畫面,那麼選擇稍後激活,並重新啟動;
  
  10.反復5---8步一直到修改成功為止;
  11.重新激活。
  12.點擊確定。
  13.安裝SP1。
  
  如果你安裝SP1以後不能重新啟動,那麼啟動的時候按F8,選擇使用[最後一次正確的配置],然後重復以上流程。
  
  使用腳本
  
  以下有2個腳本,一個是用於沒有安裝SP1的WinXP,一個是用於已經安裝了SP1的WinXP。
  
  下面是用於已經安裝了SP1的WinXP的腳本(ChangeVLKeySp1.vbs),使用方法同沒有安裝SP1的WinXP的腳本,一起放在本文的最後一段裡面(例子)。
  
  '
  ' WMI Script - ChangeVLKeySp1.vbs
  '
  ' Windows XP With SP1
  '
  ' This script changes the product key on the computer
  '
  '***************************************************************************
  
  ON ERROR RESUME NEXT
  
  if Wscript.arguments.count<1 then
  Wscript.echo "Script can't run without VolumeProductKey argument"
  Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"
  Wscript.quit
  end if
  
  Dim VOL_PROD_KEY
  VOL_PROD_KEY = Wscript.arguments.Item(0)
  VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any
  
  for each Obj in GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf ("win32_WindowsProductActivation")
  
  result = Obj.SetProductKey (VOL_PROD_KEY)
  
  if err <> 0 then
  WScript.Echo Err.Description, "0x" & Hex(Err.Number)
  Err.Clear
  end if
  
  Next

Copyright © Windows教程網 All Rights Reserved