WindowsXP hasta 2019

Post Reply
User avatar
Manuel Aranda
Posts: 561
Joined: Wed Oct 19, 2005 8:20 pm
Location: España

WindowsXP hasta 2019

Post 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/
Un saludo,
Manuel

xH 1.2.3, FWH 14.09, BC++ 5.8.2, xVerce CW 1.0, PellesC
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: WindowsXP hasta 2019

Post 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...
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: WindowsXP hasta 2019

Post 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.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Manuel Aranda
Posts: 561
Joined: Wed Oct 19, 2005 8:20 pm
Location: España

Re: WindowsXP hasta 2019

Post by Manuel Aranda »

Antonio, ¡ muchas gracias !
Un saludo,
Manuel

xH 1.2.3, FWH 14.09, BC++ 5.8.2, xVerce CW 1.0, PellesC
Post Reply