FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Off Topic / Otros temas WindowsXP hasta 2019
Posts: 610
Joined: Wed Oct 19, 2005 08:20 PM
WindowsXP hasta 2019
Posted: Mon May 26, 2014 06:38 PM

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 23.07 32 bits, BC++ 7.4, xVerce CW 1.0, PellesC
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: WindowsXP hasta 2019
Posted: Mon May 26, 2014 07:38 PM

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
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: WindowsXP hasta 2019
Posted: Mon May 26, 2014 07:40 PM
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
Posts: 610
Joined: Wed Oct 19, 2005 08:20 PM
Re: WindowsXP hasta 2019
Posted: Mon May 26, 2014 08:19 PM

Antonio, ¡ muchas gracias !

Un saludo,

Manuel



xH 1.2.3, FWH 23.07 32 bits, BC++ 7.4, xVerce CW 1.0, PellesC

Continue the discussion