Official Registry Hack Script to Install Windows Server 2008 and Vista SP2 Beta Build 16497 (CPP) via Windows Update Opisyal pagpapatala tadtarin Script sa Pag-install ng Windows Server 2008 at Vista SP2 Beta Gumawa 16497 (CPP) sa pamamagitan ng Windows Update
Microsoft has published a command shell script, which will add and set a registry key on the computer so that Windows Update, Microsoft Update or Automatic Updates will offer the Windows Vista and Windows Server 2008 the Service Pack 2 (KB version 948465) beta build 6002.16497. Microsoft ay nai-publish ng isang command shell script, na kung saan ay magdagdag at magtakda ng isang pagpapatala susi sa ang computer kaya na-update ng Windows, Microsoft Update o Awtomatikong Pagpapasariwa ay nag-aalok ng Windows Vista at Windows Server 2008 ang Service Pack 2 (KB bersyon 948465) beta magtayo 6002.16497 . The registry key hack that given officially by Microsoft is slightly different from the Ang pagpapatala susi tadtarin na ibinigay na opisyal ng Microsoft ay bahagyang naiiba mula sa mga previously used registry key (for leaked build 16497) dati ginagamit pagpapatala susi (para sa mga leaked magtayo 16497) , although both registry keys will direct Windows Update to install the exact same build version number of 6002.16497.081017-1605. , Bagaman parehong pagpapatala keys ay direktang Windows update na ii-install ang parehong bersyon ng bilang ng mga build 6002.16497.081017-1605.
The batch command script is published as part of Ang batch na utos ng script ay na-publish bilang bahagi ng CPP CPP (Customer Preview Program) (Customer Preview Program) Windows Update Experience Kit I-update ng Windows Karanasan Kit , together with , Kasama ang standalone SP2 ISO and executable standalone SP2 ISO at maipapatupad for public. para sa publiko. To successfully apply the registry hack and then download and install the SP2, users will need to install Upang matagumpay na mag-aplay ang pagpapatala tadtarin at pagkatapos ay i-download at i-install ang SP2, ang mga gumagamit ay kailangan mong i-install Service Pack 1 Service Pack 1 (for Windows Vista only, as Windows Server 2008 is released with SP1 built-in), a prerequisite for installing Service Pack 2. (para sa Windows Vista lamang, tulad ng Windows Server 2008 ay pinakawalan sa SP1 built-in), isang kailangan para sa pag-install ng Service Pack 2.
Download Download SP2CPPRK.cmd.remove SP2CPPRK.cmd.remove
To run the script, delete the .remove extension from the file name, and then run the script as administrator to merge the necessary registry value. Upang patakbuhin ang script, burahin ang mga. Tanggalin extension mula sa pangalan ng file, at pagkatapos ay tatakbo ng script bilang administrator sa pagsama-samahin ang mga kinakailangang pagpapatala halaga. For users who have installed any previous versions of SP2 beta, the old build will have to be uninstalled first. Para sa mga gumagamit na na-install ng anumang mga nakaraang bersyon ng SP2 beta, ang lumang build ay maa-uninstall muna.
After merging the registry key, users can wait for Automatic Update to automatically detect and offer the SP2 beta, or manually go to Windows Update to check for updates and start the downloading and installation immediately. Pagkatapos merging ang pagpapatala susi, ang mga gumagamit ay maaaring maghintay para sa Automatic I-update upang awtomatikong makikita at nag-aalok ng SP2 beta, o mano-manong pumunta sa Windows Update sa tseke para sa mga update at simulan ang pag-download at pag-install kaagad. Up to two prerequisite package may be offered before users are able to install Service Pack 2 beta: Hanggang dalawang kailangan ng pakete ay maaaring inalok bago ang mga user ay makaka-i-install ang Service Pack 2 beta:
1. 1. KB955430– This is an update to the “Servicing Stack” or the Windows Server 2008/Windows Vista component installer technologies built into Windows Server 2008/Windows Vista. KB955430-Ito ay isang pag-update sa "Servicing Stack" o ang Windows Server 2008/Windows Vista sangkap installer teknolohiya binuo sa Windows Server 2008/Windows Vista. This update enables the built-in installer to properly and successfully install the service pack itself. Ang update na ito ay nagbibigay-daan sa ang built-in na installer sa maayos at matagumpay na i-install ang service pack mismo. This package is not uninstallable but does support build to build upgrades. Ang pakete na ito ay hindi uninstallable ngunit ang suporta magtayo na bumuo ng upgrade.
2. 2. Optional KB958794 – CEIP Settings update. Opsyonal KB958794 - CEIP i-update ang mga Setting. This package updates some of the CEIP data around device install as part of the service pack install experience. Ang pakete ng mga update ng ilan sa mga data na CEIP sa paligid-install ng aparato bilang bahagi ng service pack i-install ang karanasan. You can remove this update via the 'Add/Remove' programs page. Maaari mong alisin ang update na ito sa pamamagitan ng 'Add / Remove' programa ng pahina. You will need to select “show updates” and then can select “uninstall” for KB958794. Kailangan mong piliin ang "ipakita ang mga update" at pagkatapos ay maaaring piliin ang "i-uninstall ang" para sa KB958794.
Do note that Windows Server 2008 SP2/Windows Vista SP2 Beta is time-limited software, which will expire on May 1st, 2010. Mayroon ba tandaan na ang Windows Server 2008 SP2/Windows Vista SP2 Beta ay oras-limitado ng software, na kung saan ay mawawalan ng bisa sa Mayo 1, 2010. Of course, the final RTM version of Windows Vista and Windows Server 2008 SP2 will come out long before the beta expiry date, scheduled to be first half of 2009. Syempre, ang pangwakas na RTM bersyon ng Windows Vista at Windows Server 2008 SP2 ay lumabas katagal bago ang beta expiry petsa, naka-iskedyul sa unang kalahati ng 2009.
Alternative Method: Copy and paste the following code to a text editor, and save as a file with .cmd extension will do the same trick as downloading from Microsoft Download Center. Alternatibong Paraan: Kopyahin at ilagay ang sumusunod na code sa isang text editor, at i-save bilang isang file na may. Cmd extension ay gawin ang parehong pag-download ng paglalalang bilang mula sa Microsoft Download Center.
@echo off
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\VistaSP2 /f > NUL 2>&1
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\WindowsUpdate\VistaSP2 /f > NUL 2>&1
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\VistaSP2 /v Beta1 /t REG_SZ /d 93F7D954-DF91-22E6-99AB-4D8AF54E813A /f
IF NOT %errorlevel% == 0 ( goto ERROR)
:SUCCESS
@echo.
echo ===========================================================
echo Windows Server 2008 SP2 Beta and Windows Vista SP2 Beta
echo registry key has been set successfully.
echo If you start SP2 installation, Microsoft will collect
echo information online about the installation process.
echo To install SP2 please check for updates in Windows Update.
echo ===========================================================
@echo.
goto END
:ERROR
@echo.
echo ===========================================================
echo FAILED to set Windows Server/Vista SP2 registry keys.
echo Please run this script by right clicking and selecting
echo "Run as Administrator".
echo ===========================================================
@echo.
goto END
:END
pause
Update: Download Update: I-download ang Windows Vista SP2 RC-Escrow Build 6002.16659 Windows Vista SP2 Rc-eskrow Gumawa 6002.16659
IMPORTANT : The page is machine translated and provided "as is" without warranty. MAHALAGA: Ang mga pahina ay makina isinalin at ibinigay "gaya ay" walang warranty. Machine translation may be difficult to understand. Machine translation ay maaaring maging mahirap na maintindihan. Please refer to Mangyaring tingnan ang original English article orihinal na Ingles na artikulo whenever possible. hangga't maaari.
Related Articles Mga Kaugnay na Akda
- Download and Install Windows Vista SP2 Beta Symbols (6002.16497) via Microsoft Windows Update Registry Hack I-download at install ng Windows Vista SP2 Beta simbolo (6002.16497) sa pamamagitan ng Microsoft Windows Update pagpapatala tadtarin
- Windows Server 2008 SP2 and Vista SP2 Beta 6002.16497 (v.113) Released in Microsoft Connect and Windows Update Windows Server 2008 SP2 at Vista SP2 Beta 6002.16497 (v.113) pinakawalan sa Microsoft Ikonekta at Windows Update
- Registry Hack to Download and Install Windows Vista SP2 Pre-Beta Version 6.0.6002.16489 Pagpapatala tadtarin sa Download at install ng Windows Vista SP2 Pre-Beta Version 6.0.6002.16489
- Download 64bit (x64) Windows Server 2008 and Vista SP2 Beta Build 6002.16497 Unmodified Original DVD ISO (Torrent) I-download ang 64bit (x64) Windows Server 2008 at Vista SP2 Beta 6002.16497 Gumawa Unmodified Orihinal DVD ISO (Torrent)
- Trick to Download and Install Windows Vista SP2 v.113 (6002.16497) from Windows Update Trick to at I-download ang Pag-install ng Windows Vista SP2 v.113 (6002.16497) mula sa Windows Update
- Download Official Windows Vista and Server 2008 RC (Build 16670 Direct Links for x86/x64/ia64) I-download ang Opisyal ng Windows Vista at Server 2008 Rc (Build 16670 Direct Link para sa mga x86/x64/ia64)
- Official Download Link for Windows XP Service Pack 3 (SP3) RC2 (v.3311) Standalone Install Package and Windows Update Registry Keys I-download ang opisyal na Link para sa Windows XP Service Pack 3 (SP3) RC2 (v.3311) standalone na-install ng Package at Windows Update pagpapatala Keys
- Official Way to Install Vista SP1 RC Via Windows Update with Public Availability Program Opisyal Daan sa Pag-install Vista SP1 Rc Via durungawan Update sa Public availability ng Programa
- Official Windows Vista SP2 and Server 2008 SP2 (KB948465) CPP Standalone DVD ISO and EXE Direct Download Links Opisyal ng Windows Vista SP2 at Server 2008 SP2 (KB948465) CPP standalone DVD ISO at exe Direct Download Links
- Hack to Download Vista SP1 (Service Pack 1) Beta via Windows Update Tadtarin sa Download Vista SP1 (Service Pack 1) Beta sa pamamagitan ng Windows Update










































February 3rd, 2009 18:06 Pebrero 3, 2009 18:06
[...] Windows Vista SP2 beta build 6002.16497 or Windows Server 2008 SP2 beta build 16497, there is also official registry hack script that allows SP2 beta to offer to your [...] [...] Durungawan Vista SP2 beta magtayo 6002.16497 o Windows Server 2008 SP2 beta magtayo 16497, diyan ay din ang opisyal na pagpapatala tadtarin ang script na nagbibigay-daan sa SP2 beta na nag-aalok sa iyong [...]
December 7th, 2008 02:19 December 7th, 2008 02:19
Anyone know when VLITE will support SLIPSTREAM of SP2?????? Kahit sino malaman kung VLITE ay sumusuporta SLIPSTREAM ng SP2 ??????