¡¡¡¡ÔÚÏßÉý¼¶Vista SP1×îаæµÄÔÀíºÍÒÔǰµÄÔÚÏßÉý¼¶ Vista SP1 RCµÄÔÀíÒ»Ñù£¬ÐèÒªÓùÜÀíԱȨÏÞÖ´ÐÐÒ»¸öcmd»òÕßbatÎļþ¡£
¡¡¡¡¸Ãcmd µÄÎļþÄÚÈÝÈçÏ£º
=========ÒÔÏÂΪcmdÎļþÄÚÈÝ=====
@echo off
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\VistaSp1 /f > NUL 2>&1
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\WindowsUpdate\VistaSP1 /f > NUL 2>&1
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\VistaSp1 /v Beta1 /t REG_SZ /d c1ff1d2f-c61e-4f27-b68c-722061c201a5 /f
IF NOT %errorlevel% == 0 ( goto ERROR)
:SUCCESS
@echo.
echo ===========================================================
echo Windows Vista SP1 registry key has been set successfully.
echo Please check for updates in Windows Update.
echo ===========================================================
@echo.
goto END
:ERROR
@echo.
echo ===========================================================
echo FAILED to set Windows Vista SP1 registry keys.
echo Please run this script by right clicking and selecting
echo "Run as Administrator".
echo ===========================================================
@echo.
goto END
:END
pause
=========ÒÔÉÏΪcmdÎļþÄÚÈÝ=====

