您的位置:首页技术文章
文章详情页

如何在线更新Windows Vista SP1最新版

【字号: 日期:2023-08-21 11:37:25浏览:51作者:猪猪

在线升级Vista SP1最新版的原理和以前的在线升级 Vista SP1 RC的原理一样,需要用管理员权限执行一个cmd或者bat文件。

该cmd 的文件内容如下:

=========以下为cmd文件内容=====

@echo off

reg delete HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdateVistaSp1 /f > NUL 2>&1reg delete HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionWindowsUpdateVistaSP1 /f > NUL 2>&1

reg add HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdateVistaSp1 /v Beta1 /t REG_SZ /d c1ff1d2f-c61e-4f27-b68c-722061c201a5 /fIF 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 selectingecho; 'Run as Administrator'.echo ===========================================================@echo.goto END

:ENDpause

=========以上为cmd文件内容=====

标签: Windows系统