热点科技

标题: 求助高手 [打印本页]

作者: lin001    时间: 2006-5-27 05:16
我想更改我已装好了的winxp的序列号可以吗?小
作者: walklty    时间: 2006-5-27 06:20
<H4>使用激活向导修改</H4>
<P>微软强烈建议你在修改之前作一个系统还原点,以免遭受不测。</P>
<P>1.点击[开始],再点击[运行];<BR>2.输入regedit以后回车打开注册表编辑器;<BR>3.定位到HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\Current Version\WPAEvents,在右边右键单击OOBETimer,然后选择修改;<BR>4.至少修改一个字节,确定保存。<BR>5.点击[开始],再点击[运行];<BR>6.输入%systemroot%\system32\oobe\msoobe.exe /a<BR>7.选择通过电话激活以后点击下一步;<BR>8.点击修改序列号;<BR>9.输入新的序列号以后选择更新;<BR>如果退回到前一个画面,那么选择稍后激活,并重新启动;<BR>10.反复5---8步一直到修改成功为止;<BR>11.重新激活。<BR>12.点击确定。<BR>13.安装SP1。<BR>如果你安装SP1以后不能重新启动,那么启动的时候按F8,选择使用[最后一次正确的配置],然后重复以上流程。</P>
<H4><BR>使用脚本</H4>
<P>以下有2个脚本,一个是用于没有安装SP1的WinXP,一个是用于已经安装了SP1的WinXP。</P>
<P>下面是用于已经安装了SP1的WinXP的脚本(ChangeVLKeySp1.vbs),使用方法同没有安装SP1的WinXP的脚本,一起放在本文的最后一段里面(例子)。</P>
<P><FONT color=#666666>' <BR>' WMI Script - ChangeVLKeySp1.vbs<BR>'<BR>' Windows XP With SP1<BR>'<BR>' This script changes the product key on the computer<BR>'<BR>'***************************************************************************</FONT></P>
<P><FONT color=#666666>ON ERROR RESUME NEXT</FONT></P>
<P><FONT color=#666666><BR>if Wscript.arguments.count&lt;1 then<BR>Wscript.echo "Script can't run without VolumeProductKey argument"<BR>Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"<BR>Wscript.quit<BR>end if</FONT></P>
<P><FONT color=#666666>Dim VOL_PROD_KEY<BR>VOL_PROD_KEY = Wscript.arguments.Item(0)<BR>VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any</FONT></P>
<P><FONT color=#666666>for each Obj in GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf ("win32_WindowsProductActivation")</FONT></P>
<P><FONT color=#666666>result = Obj.SetProductKey (VOL_PROD_KEY)</FONT></P>
<P><FONT color=#666666>if err &lt;&gt; 0 then<BR>WScript.Echo Err.Description, "0x" &amp; Hex(Err.Number)<BR>Err.Clear<BR>end if</FONT></P>
<P><FONT color=#666666>Next</FONT></P>
<P>下面的脚本是用于没有安装SP1的WinXP(<FONT size=+0>ChangeVLKey2600.vbs</FONT>)。</P>
<P><FONT color=#666666>' <BR>' WMI Script - ChangeVLKey2600.vbs<BR>'<BR>' This script changes the product key on the computer<BR>'<BR>'***************************************************************************</FONT></P>
<P><FONT color=#666666>ON ERROR RESUME NEXT</FONT></P>
<P><FONT color=#666666>if Wscript.arguments.count&lt;1 then<BR>Wscript.echo "Script can't run without VolumeProductKey argument"<BR>Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"<BR>Wscript.quit<BR>end if</FONT></P>
<P><FONT color=#666666>Dim VOL_PROD_KEY<BR>VOL_PROD_KEY = Wscript.arguments.Item(0)<BR>VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any<BR>Dim WshShell<BR>Set WshShell = WScript.CreateObject("WScript.Shell")<BR>WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents\OOBETimer" 'delete OOBETimer registry value<BR>for each Obj in GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf ("win32_WindowsProductActivation")</FONT></P>
<P><FONT color=#666666>result = Obj.SetProductKey (VOL_PROD_KEY)</FONT></P>
<P><FONT color=#666666>if err &lt;&gt; 0 then<BR>WScript.Echo Err.Description, "0x" &amp; Hex(Err.Number)<BR>Err.Clear<BR>end if</FONT></P>
<P><FONT color=#666666>Next </FONT></P>
<H4><BR>例子:脚本使用方法</H4>
<P>以下的例子描述了在命令行里面如何使用VBS脚本程序。</P>
<P>1.点击[开始],然后点击[运行];<BR>2.输入<B>C:\ChangeVLKeySp1.vbs ABCDE-ABCDE-ABCDE-ABCDE-ABCDE-ABCDE</B><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;假设 ChangeVLKeySp1.vbs 放在C:根目录下<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ABCDE-ABCDE-ABCDE-ABCDE-ABCDE-ABCDE 是新的序列号<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;以上 ChangeVLKeySp1.vbs 适用于已经安装了SP1的WinXP,没有安装SP1的 ChangeVLKey2600.vbs 的使用方法同样是这样的。<BR>3.然后点击[确定]即可。</P><!-- #EndEditable -->
作者: walklty    时间: 2006-5-27 06:22
另外你还可以找找一个叫<FONT size=3>keyfinder的软件</FONT>
作者: lin001    时间: 2006-6-1 04:59
ok谢谢walklty我试试<BR>




欢迎光临 热点科技 (http://www.itheat.com/activity/) Powered by Discuz! X3.2