Page 1 of 1

WindowsXP hasta 2019

PostPosted: Mon May 26, 2014 6:38 pm
by Manuel Aranda
Por favor, alguien que simplifique y traduzca al español lo que hay que hacer. Gracias.

http://betanews.com/2014/05/26/how-to-c ... ntil-2019/

Re: WindowsXP hasta 2019

PostPosted: Mon May 26, 2014 7:38 pm
by Antonio Linares
Manuel,

Se reduce a cambiar un valor en el registro, que lo puedes hacer manualmente ó creando un fichero xp.reg

[HKEY_LOCAL_MACHINE\SYSTEM\WPA\PosReady]
"Installed"=dword:00000001

O busca ese valor y lo cambias a mano. Eso activará las actualizaciones en XP hasta el 2019. Solo válido para XP 32 bits. Por lo visto para XP 64 bits es truco es otro...

Re: WindowsXP hasta 2019

PostPosted: Mon May 26, 2014 7:40 pm
by Antonio Linares
Y esta la solución para XP 64 bits:

1. First you need to download manually the update from microsoft.com and then execute with the switch /x to unpack it (ex. C:\xpupdate).
2. Create update.cmd:

Source code
c:
cd "C:\xpupdate\update"
echo Replace update.inf with update.inf.new
copy update_SP2QFE.inf org_update_SP2QFE.inf /y
copy new_update_SP2QFE.inf update_SP2QFE.inf /y
echo Apply Update
start update.exe /passive /norestart /log:c:\xpupdate\install.log
ping -n 1 -w 5 1.1.1.1>nul
copy org_update_SP2QFE.inf update_SP2QFE.inf /y

3. Copy update_SP2QFE.inf to new_update_SP2QFE.inf (in folder c:\xpupdate\update)
4. On new_update_SP2QFE.inf you need to delete this.

Source code
Condition=AndOp,Prereq.XPAMDInstallBlock.Section

and the end (end of line):

Source code
[Prereq.XPAMDInstallBlock.Section]
PresentOp=CheckReg,HKLM,"SYSTEM\CurrentControlSet\Control\ProductOptions",ProductType,0x00000000
NotEqualOp=CheckReg,HKLM,"SYSTEM\CurrentControlSet\Control\ProductOptions",ProductType,0x00000000,!=,"WinNT"
Display_String="%WrongProductMessage%"

5. Execute update.cmd

You can view install.log to show, if the installation is successfull. A reboot is required.

Re: WindowsXP hasta 2019

PostPosted: Mon May 26, 2014 8:19 pm
by Manuel Aranda
Antonio, ¡ muchas gracias !