熱點推薦:
您现在的位置: 電腦知識網 >> 操作系統 >> Windows系統管理 >> 正文

如何更改Windows XP操作系統序列號

2022-06-13   來源: Windows系統管理 

  本文適用於
  
  Microsoft Windows XP Professional
  Microsoft Windows XP Professional SP
  
  本文是用於描述如何更改Windows XP中的序列號你有個方法來修改在已經安裝完畢的Windows XP上更改序列號一個是使用GUI界面裡面的激活向導一個是使用WMI(Windows Management Instrumentation)來實現的
  
  使用激活向導修改
  
  微軟強烈建議你在修改之前作一個系統還原點以免遭受不測
  
  點擊[開始]再點擊[運行]
  輸入regedit以後回車打開注冊表編輯器
  定位到HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\Current Version\WPAEvents在右邊右鍵單擊OOBETimer然後選擇修改
  至少修改一個字節確定保存
  點擊[開始]再點擊[運行]
  輸入%systemroot%\system\oobe\msoobeexe /a
  選擇通過電話激活以後點擊下一步
  點擊修改序列號
  輸入新的序列號以後選擇更新
  
  如果退回到前一個畫面那麼選擇稍後激活並重新啟動
  
  反復步一直到修改成功為止
  重新激活
  點擊確定
  安裝SP
  
  如果你安裝SP以後不能重新啟動那麼啟動的時候按F選擇使用[最後一次正確的配置]然後重復以上流程
  
  使用腳本
  
  以下有個腳本一個是用於沒有安裝SP的WinXP一個是用於已經安裝了SP的WinXP
  
  下面是用於已經安裝了SP的WinXP的腳本(ChangeVLKeySpvbs)使用方法同沒有安裝SP的WinXP的腳本一起放在本文的最後一段裡面(例子)
  
  
   WMI Script ChangeVLKeySpvbs
  
   Windows XP With SP
  
   This script changes the product key on the computer
  
  ***************************************************************************
  
  ON ERROR RESUME NEXT
  
  if Wunt<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
  
  下面的腳本是用於沒有安裝SP1的WinXP(ChangeVLKey2600.vbs)。tW.WIngwIT.cOM
  
  '
  ' WMI Script - ChangeVLKey2600.vbs
  '
  ' This script changes the product key on the computer
  '
  '***************************************************************************
  
  ON ERROR RESUME NEXT
  
  if Wunt<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
  Dim WshShell
  Set WshShell = WScript.CreateObject("WScript.Shell")
  WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents\OOBETimer" 'delete OOBETimer registry value
  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
  
  例子:腳本使用方法
  
  以下的例子描述了在命令行裡面如何使用VBS腳本程序。
  
  1.點擊[開始],然後點擊[運行];
  2.輸入C:\ChangeVLKeySp1.vbs ABCDE-ABCDE-ABCDE-ABCDE-ABCDE-ABCDE
  假設 ChangeVLKeySp1.vbs 放在C:根目錄下
  ABCDE-ABCDE-ABCDE-ABCDE-ABCDE-ABCDE 是新的序列號
  以上 ChangeVLKeySp1.vbs 適用於已經安裝了SP1的WinXP,沒有安裝SP1的 ChangeVLKey2600.vbs 的使用方法同樣是這樣的。
  3.然後點擊[確定]即可。
From:http://tw.wingwit.com/Article/os/xtgl/201311/9173.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.