December 07, 2007

Vista SP1 RC is here

Microsoft Released Vista SP1 to MSDN subscribers, here is the script to make it Visible in Windows Update, Right now I'm installing it, I will report as soon as the installation has been completed.

- Enjoy


Note: As far as I know the script should work on any Windows Vista versions, and in all countries.
How to update:

Open notepad -> Paste following text
@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 da2ba4db-dedb-437e-8e7e-104643454bb6 /f
IF NOT %errorlevel% == 0 ( goto ERROR)
:SUCCESS
goto END
:ERROR
goto END
:END
pause
Save as .BAT or .CMD
Run as administrator (Right click the file, and click "Run as administrator")
Now check for updates on Windows Update


Back to Home