Many users are still waiting for Microsoft to officially release Windows Vista servicepack 1 update package, the final Vista SP1 installation file has been to the Microsoft server, the version number is Vista SP1 RTM 6001.18000, users can use Windows Update upgrade automatically download updates, Vista SP1 file size of about 66.9MB. But a little setup is needed.
1. How to check Windows Update after execution to make Windows Vista active download patches and security updates
2. If you do not want to save the following content as a batch file
We can save the following as a. bat batch or. cmd file
@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 dcf99ef8-
d784-414e-b411-81a910d2761d/f
IF Not%errorlevel% = = 0 (goto ERROR)
: SUCCESS
@echo.
echo ===========================================================
Echo Windows Vista SP1 registry key value update succeeded.
echo opens your Windows Update to see if there is any monitoring to update.
Echo
Echo ===========================================================
@echo.
Goto end
: ERROR
@echo.
echo ===========================================================
Echo failed to write the registry key value.
echo Right-click to select System Administrator account permissions to run.
Echo ===========================================================
@echo.
Goto END
: End
Pause