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.


2 Responses to “Official Registry Hack Script to Install Windows Server 2008 and Vista SP2 Beta Build 16497 (CPP) via Windows Update” 2 sagot sa "Opisyal pagpapatala tadtarin Script sa Pag-install ng Windows Server 2008 at Vista SP2 Beta Gumawa 16497 (CPP) sa pamamagitan ng I-update ng Windows"

  1. Official Windows Vista SP2 and Server 2008 SP2 (KB948465) CPP Standalone DVD ISO and EXE Direct Download Links » My Digital Life Opisyal ng Windows Vista SP2 at Server 2008 SP2 (KB948465) CPP standalone DVD ISO at exe Direct Download Links »My Digital Life
    February 3rd, 2009 18:06 Pebrero 3, 2009 18:06
    2 2

    [...] 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 [...]

  2. Ohad Ohad
    December 7th, 2008 02:19 December 7th, 2008 02:19
    1 1

    Anyone know when VLITE will support SLIPSTREAM of SP2?????? Kahit sino malaman kung VLITE ay sumusuporta SLIPSTREAM ng SP2 ??????

Leave a Reply Mag-iwan ng isang Sumagot

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Maaari mong gamitin ang mga ito tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Mag-subscribe sa mga puna tampok na ito ay hindi pinagana. To receive notification of latest comments posted, subscribe to Upang makatanggap ng paunawa ng mga pinakabagong comments-post, mag-subscribe sa My Digital Life Comments RSS feed Aking Digital Life Comments RSS feed or o register to receive magrehistro upang makatanggap ng new comments in daily email digest. mga bagong komento sa pang-araw-araw email digest.
Custom Search

New Articles Bagong Akda

Incoming Search Terms for the Article Papasok na Kataga sa Paghahanap para sa mga Artikulo

KB958794 KB958794 - -- SP2CPPRK.cmd SP2CPPRK.cmd - -- SP2CPPRK.cmd.remove SP2CPPRK.cmd.remove - -- windows server 2008 hack windows server 2008 tadtarin - -- windows 2008 hack windows 2008 tadtarin - -- Windows Update Experience Kit I-update ng Windows Karanasan Kit - -- hack windows server 2008 tadtarin windows server 2008 - -- SP2CPPRK SP2CPPRK - -- server 2008 hack server 2008 tadtarin - -- registry script pagpapatala script - -- vista sp2 rtm registry hack tanawin SP2 rtm pagpapatala tadtarin - -- all lahat - -- how to hack windows server 2008 paano sa tadtarin windows server 2008 - -- KB958794 KB958794 - -- vista sp2 rc registry hack tanawin SP2 Rc pagpapatala tadtarin - -- vista sp2 rc registry tanawin SP2 Rc pagpapatala - -- windows server 2008 hacks windows server 2008 hacks - -- registry hack for vista sp2 rc pagpapatala tadtarin para sa mga tanawin SP2 Rc - -- vista sp2 rc hack tanawin SP2 Rc tadtarin - -- windows 2008 server hack windows 2008 server tadtarin - -- hack windows server tadtarin windows server - -- how to install vista sp2 from script kung paano mag-install ng SP2 tanawin mula sa script - -- hack script tadtarin script - -- hack windows 2008 server tadtarin windows 2008 server - -- windows vista sp2 registry hack Windows Vista SP2 pagpapatala tadtarin - -- registre sp2 rc vista echo registre SP2 Rc kaisipan echo - -- sp2 remove script SP2 tanggalin ang script - -- hacking windows 2008 server tuyong windows 2008 server - -- vista sp2 rc reg hack tanawin SP2 Rc reg tadtarin - -- vista sp2 registry hack tanawin SP2 pagpapatala tadtarin - -- SP2CPPRK script SP2CPPRK script - -- server 2008 hacks server 2008 hacks - -- Server 2008 SP2 registry Server 2008 SP2 pagpapatala - -- vista sp2 registry remove tanawin SP2 pagpapatala tanggalin - -- kis registry hack kis pagpapatala tadtarin - -- hacking windows server 2008 tuyong windows server 2008 - -- hack windows 2008 tadtarin windows 2008 - -- vista installed updates check script tanawin-install ang mga update check script - -- vista sp2 reg script tanawin SP2 reg script - -- vista SP2 Servicing Stack Update Build 16497 tanawin SP2 Servicing Stack Update Gumawa 16497 - -- Vista SP2 Windows Update script I-update ng Windows Vista SP2 script - -- WINDOWS SERVER 2008 Windows Server 2008 - -- hacking vista production key sp2 tuyong kaisipan produksyon key SP2 - -- sp2cpprk.cmd.remove.bat ita sp2cpprk.cmd.remove.bat ita - -- hacking windows 2008 tuyong windows 2008 - -- "SP2CPPRK.cmd.remove" "SP2CPPRK.cmd.remove" - -- SP2CPPRK_cmd SP2CPPRK_cmd - -- windows server 2008 registry hacks windows server 2008 registry hacks - -- 2008 server hack 2008 server tadtarin - -- Windows production activation hack Windows produksyon activation tadtarin - --