Quantcast
Channel: Windows XP Latest Topics
Viewing all 2068 articles
Browse latest View live

supported browsers

$
0
0

Which browsers are still actively supported? I mean security patches, not new features...


ACPI Patcher at boot time

$
0
0

Dedicated to fans of windows XP/2003 running on moderm (Acpi 2.0) PC :)
Main purpose of patcher is help with eliminate/fixing Acpi 2.0 opcodes and 64-bit fields/regions/math without touching bios. Patch modify acpi tables every time when os start, it change current state of acpi tables in RAM memory (Bios load tables from flash chips to ram). Patcher works only with CSM (compatibility) mode, it will never works in UEFI boot mode.
 
Using:
1) All custom files must named in old "8.3" DOS way !
2) Create folder "ACPI_PAT" at root of you boot drive where installed target OS, this folder is place for storing all custom files (except bootloader)
3) Replace original bootloader (NTLDR for windows 2000/2003/XP, BOOTMGR for Vista/7/8/10, GRLDR for grub4dos) with patcher, original bootloader save as "xpldr" in ACPI_PAT folder
4) Place acpi_pat.img at ACPI_PAT folder
5) Place main configuration file ACPI_PAT.CFG:

[DSDT]
reload.bin
bnum_fix.dif
iotr_fix.dif,201904
test1.dif
test2.hex

[SSDT1]
; patch1
;SSDT_FI1.HEX

[SSDT3]
; patch 3
;SSDT_FI3.HEX

[SSDT*]
# universal ssdt patch
#SSDT_UNI.HEX

[FACS]
;APIC_FIX.HEX

[DSDT]  [SSDT]       - name of acpi table, only 4 chars !!!
[SSDT3]                    - patch 3rd ssdt table,  order of the ssdt table is determined by its position in the rsdt/xsdt tables
[SSDT*]                    - special name to modify all ssdt tables
; patch1                   - comments start with ";" or "#"
reload.bin                - BIN override table from binary file
bnum_fix.dif             - DIF is text format for GNU Patch
iotr_fix.dif,201904   - DIF format with forcing iasl compiler version
test2.hex                 - HEX is text format of "Find&Replace" hex strings

 

 
6) Order of applying patches is up-to-down, better to place first .bin patch, then .dif or .hex
 
7) Example of .hex format:

; comment
706869637320/706869637420             ;without spaces
70 68 69 63 73 20 / 70 68 69 63 74 20 ;with spaces, more readable

70 68 69 63 73 20 - hex string to find
70 68 69 63 74 20 - hex string to replace
you can increase/decrease count of replaced bytes, size of table will be changed dynamicaly
 
8) Patcher supplied with 3 versions of iasl compiler/decompiler:

IA201604.EXE
IA201612.EXE
IA201904.EXE

These versions are equivalent of 20160422, 20161222, 20190405 at acpica.org
Default version for processing dsdt/ssdt tables maded before 2016-12-31 is IA201612.EXE, for later dates is IA201904.EXE.
You can also use your own version (DOS VERSION, compile yourself from acpica sources), name it "iaXXXX.exe" and place inside EXE.7z archive on floppy image.
 
9) Examples of .dif format:
Fix BNUM Decompiling Bug:

--- DSDT.dsl
+++ DSDT.dsl
@@ -1,1 +1,0 @@
-    External (BNUM, UnknownObj)

Fix Resource conflicting on Windows XP for Gigabyte H110-HD2 bioses:

--- DSDT.dsl
+++ DSDT.dsl
@@ -1,36 +1,13 @@
                 AMI1 = ITA1 /* \ITA1 */
                 AMA1 = ITA1 /* \ITA1 */
                 AMI2 = ITA2 /* \ITA2 */
                 AMA2 = ITA2 /* \ITA2 */
                 AMI3 = ITA3 /* \ITA3 */
                 AMA3 = ITA3 /* \ITA3 */
-                If ((ITS0 == One))
-                {
-                    ConcatenateResTemplate (Local0, BUF0, Local1)
-                    Local0 = Local1
-                }
-
-                If ((ITS1 == One))
-                {
-                    ConcatenateResTemplate (Local0, BUF1, Local1)
-                    Local0 = Local1
-                }
-
-                If ((ITS2 == One))
-                {
-                    ConcatenateResTemplate (Local0, BUF2, Local1)
-                    Local0 = Local1
-                }
-
-                If ((ITS3 == One))
-                {
-                    ConcatenateResTemplate (Local0, BUF3, Local1)
-                    Local0 = Local1
-                }

                 Return (Local0)
             }
         }
     }
 
     Scope (_SB.PCI0.LPCB)

Patches generated by invoking (you can change/remove "-u6" option) Diff :

diff -u6 --strip-trailing-cr OLD.DSL NEW.DSL > my_patch.dif

Keep in mind that different versions of the compiler generate different versions of the ASL text. So context of  .dif file is in most cases bound to specific version of the compiler

10) If using .dif patches, need additional file external.txt
this is text format for using iasl.exe decompiler "-fe" option like this:

External (AL6F, MethodObj, 0)
External (HLVT, MethodObj, 0)
External (P0L6, MethodObj, 0)
External (P1L6, MethodObj, 0)
External (P2L6, MethodObj, 0)
External (PS0X, MethodObj, 0)
External (PS2X, MethodObj, 0)
External (PS3X, MethodObj, 0)
External (_SB_.PCI0.GFX0.IUEH, MethodObj, 1)
External (_SB_.PCI0.GFX0.GSCI, MethodObj, 0)
External (_SB_.PCI0.PAUD.PUAM, MethodObj, 0)
External (_SB_.PCI0.PEG0.HPME, MethodObj, 0)
External (_SB_.PCI0.PEG1.HPME, MethodObj, 0)
External (_SB_.PCI0.PEG2.HPME, MethodObj, 0)
External (_SB_.PCI0.XHC_.DUAM, MethodObj, 0)
External (_SB_.PCI0.XHC_.RHUB.INIR, MethodObj, 0)
External (_SB_.PCI0.SAT0.SDSM, MethodObj, 4)
External (MDBG, MethodObj, 1)
External (_SB_.TPM_.PTS_, MethodObj, 1)


11) If using .dif patches, may be need additional file ignores.txt
this is text format for filter iasl.exe decompiler errors, example of file:

[BNUM] Namespace lookup failure, AE_ALREADY_EXISTS

Many kabylake/coffelake bioses created with uncorrected asl code around BNUM fileld, when you decompile it, you will get "ACPI Error: [BNUM] Namespace lookup failure, AE_ALREADY_EXISTS (20161222/dswload-390)" error. With ignores.txt possible to filter/ignore these errors
 
12) When using .bin files,  take care about override DSDT/SSDT tables, "template" from BIOS image is bad choice for such files. Bios patch some parts inside table before deploying to OS (bios usualy set absolute adresses). In this case run OS and save tables from runned state.

Regards & Copyrights:
FreeDOS by FreeDOS Project
SHSURDRV by Jason Hood
7zdec by Igor Pavlov/7-zip.org
Move by Joe Cosentino/Imre Leber
XCOPY by Rene Ableidinger/Eric Auer
GRUB4DOS by GRUB4DOS Developers
FAT module for grub4dos by chenall.net
Volkov Commander by Vsevolod V. Volkov
NTFS for DOS by Avira GmbH
iASL by Intel/Acpica
DJGPP  by DJ Delorie
CWSDPMI by CW Sandmann
inih by benhoyt


Internals & Hacks:
- acpi_pat.img is bootable 2.88MB FAT12 floppy image with FreeDOS & utils
- When pressing any SHIFT key when starting, Patcher will go to debug mode, it will stop loading OS and run shell
- Patcher replace original bootloader with grub4dos, when all job is done, patcher run grub4dos.exe for loading original loader
- Patcher reserve 2Mb of RAM for storing acpi tables (Windows will report -2Mb available memory)
- Before decompiling any table, all ssdt and dsdt tables stored at disk and used as external files "iasl -e ssdt1 ssdt 2 ... "
 
History:
v1 - Initial (Beta)

Download Binaries
https://github.com/MovAX0xDEAD/ACPI-Patcher/releases
Download Sources
https://github.com/MovAX0xDEAD/ACPI-Patcher

VLC has started dropping XP support with version 4

$
0
0

I downloaded today's nighly build of VLC 4 just for testing and the installer installed it but when i launched i got this error:

unknown.png

Altough VLC 3.0.7 (not released to the public from  writing of this thread) installs and works without no problems!

unknown.png

You can test these nighly builds on VideoLAN's official website https://nightlies.videolan.org/

Even trying out the earliest VLC 4 beta gives the error for me:(

I hope i'm not breaking MSFN rules:angel

Introducing - Unofficial Windows XP SP4

$
0
0

Welcome to Windows XP Service Pack 4 (Unofficial).

Windows XP SP4 (Service Pack 4) is a cumulative update rollup for Windows XP.

Windows XP SP4 Final is now available!

1 - UPDATE [June 7, 2019]: Post-SP4 Update Pack released!

This final update pack should be applied to Windows XP installation media immediately after slipstreaming SP4 v3.1b to a Windows XP RTM/SP1/SP2/SP3 source. This will update installation media to May 2019, including every single update released until the POSReady 2009 end-of-life in May 2019. Download available at RyanVM.net.

2 - UPDATE - 15 OCT 2018:
For novice users that do not want to wait for 20-30 minutes after installing XP SP4 AND rebooting
For all .NET haters...

A NEW RELEASE OF UNOFFICIAL SP4 3.1B WITHOUT .NET FRAMEWORK

This release will not install .NET Framework in both live and slipstreamed install, unless:
- Media Center Edition is used -> .NET Framework 1.1 SP1 is installed
- Tablet PC Edition is used -> .NET Framework 1.0 SP3 is installed
Users can still install .NET FWs of their choice from the Add/Remove Components wizard in Control Panel
This alternative SP4 release is called:
WindowsXP-USP4-v3.1b-NODOTNET-x86-ENU.exe

In addition, XP SP4 OEM Preinstallation Kit ISOs with SCSI drivers, and an updated MUI ISO have been released!

3 - IMPORTANT NOTICE FOR XP SP4 USERS [08/03/2016]: Microsoft has changed its WU update detection strategy. The following key must be removed to continue receiving automatic updates from WU:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WindowsEmbedded

Use the sp4_march16_wufix.reg found inside the respective zip file at my Google Drive in order to automate the process. Version 3.1a users don't need to do anything more than that.

A new v3.1b version has been released with this change, just for new installs. No other updates have been added.

 

Windows XP SP4 can installed on any version of Windows XP with SP1 or later installed or slipstreamed into any Windows XP installation source (except for Embedded versions). It includes all updated components and hotfixes for Windows XP in a single, convenient package. Except for the SP4 package installer main executable (update.exe) and a cosmetic resource modification sysdm.cpl no other binary file has been modified, everything is original from Microsoft Corporation.

Microsoft .NET Frameworks 4.0, 3.5, 1.1, 1.0 are included in this package. .NET Framework 1.0 will be installed only with Tablet PC Edition or Media Center Edition (Upgrade only). .NET Framework 4.0 is disabled by default.
It's possible to split the slipstreamed installation source into two 650 MB CD-ROMs, which can be essential for older computers. You can also create 6 Bootable Floppy Disks to install Windows XP on older systems which cannot boot from CD-ROM.

Furthermore, Windows XP SP4 includes security enhancements that address issues not fixed by Microsoft Updates. It also includes performance tweaks that should make your PC run blazingly fast.

 

NOTE:  Before installing SP4 on a system with many post-SP3 updates installed, follow the steps described here (do not restart your PC after applying these steps, just run the SP4 installer and then reboot):

http://www.rarst.net/software/failed-install-catalog-files/

This will prevent a common error message: "Failed to install catalog files"

Although SP4 installer takes steps to automatically delete these files, it may require manual intervention in some cases.

 

Download at Windows XP SP4 development thread at RyanVM.net: http://www.ryanvm.net/forum/viewtopic.php?p=133918#133918

Visit RyanVM.net for additional information. (Current version: Version 3.1b Released on 08 March 2016 23:00:00 UTC)

Enjoy Windows XP Service Pack 4.


Screenshots:

okzzb9.jpg

This is Windows XP SP4 slipstreamed in a Windows XP MCE 2002 installation source. Notice the Version year.

Windows XP Spotter (the club)

$
0
0

Welcome to the club "Windows XP Spotter", a club which aims to collect pictures of running Windows XP (or XP based, like WES, WePOS, POSReady2009 and Server 2003) machines during these days. I'm gonna start:

London Victoria Station, Ground Floor, McDonald's uses Windows PosReady (XP-based) tills, but I didn't manage to get a pic of them (yet).

In the meantime, I got a supermarket (running XP):

img.jpg

And a friend of mine living in Italy, Ivo, sent me this:

FB_IMG_1493906792268.jpg

Ok people, go out and conquer the world shoot pictures of running XP (or XP-based) machines.

Latest Version of Software Running on XP

$
0
0

Hello nice people!

Should the XP user community have a thread about the latest version of applications (and runtimes and so on) that run on well updated but unmodified XP sp3? As inspired by
http://www.msfn.org/board/topic/133014-last-versions-of-software-for-windows-2000/
because more and more software editors drop the XP compatibility, so just now would be the right time to write it down.

This might need someone who maintains the thread for readability, maybe to keep a front page with the raw information.

What do you think?

Root Certificates and Revoked Certificates for Windows XP

$
0
0
Since I have the whole thread no correct solution for the update of the Roots certificates and revoked certificates found, I hereby would like to offer a way to keep them up to date.
For the security of Windows XP after the last condition no official patches more for blocking div. Roots certificates and certificate update available.
For revoked Certificate Update "rvkroots.exe" Microsoft download (http://www.microsoft.com/download/details.aspx?id=41542), unzip to a folder (eg with WinRAR), in "rvkroots.inf" entry in the string VERSION should "5,0,2195,0" loud and in VER "005". The next step is download the "http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/disallowedcert.sst" and paste the unzipped folder and replace older file. Then with e.g. (Create Self-Extracting Archive) WinRAR all files in the folder to an archive option SFX with the following comment:
TempMode
Silent=1
Overwrite=1
Setup=Rundll32.exe advpack.dll,LaunchINFSection rvkroots.inf,DefaultInstall

pack and you have a current update for blocking unsafe Certificates!

 
For Root Certificate Update "rootsupd.exe" Microsoft download (http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/rootsupd.exe), unzip to a folder (eg with WinRAR), in "rootsupd.inf" entry in the string VERSION should "40,0,2195,0" loud and in VER "040" , In the next step,
"http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/updroots.sst" download and paste the unzipped folder and replace older files. Then with e.g. (Create Self-Extracting Archive) WinRAR all files in the folder to an archive option SFX with the following comment:
TempMode
Silent=1
Overwrite=1
Setup=Rundll32.exe advpack.dll,LaunchINFSection rootsupd.inf,DefaultInstall

pack and you have a current root certificate update!

 

For all languages!

If you do approximately every 3 months.

To re-update extends the generated SFX files to open with WinRAR and drag to the archives newer downloads (.sst files) by drag and drop into it.

 

:)

Upgrading IE8 to TLS 1.2

$
0
0

There is a new cumulative update for IE8 on PosReady kb4316682.

"Adds the ability to use TLS 1.2 support in Internet Explorer (8)."

But it seems that here must be some settings in registry to activate this.

I look around, and in an russian forum is this given:

Quote

Windows Registry Editor Version 5.00
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\CRYPTO\TLS1.1]
"OSVersion"="3.6.1.0.0"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\CRYPTO\TLS1.2]
"OSVersion"="3.6.1.0.0"

And this information:

Quote

Depending on the OS-Version
3.6.1.0.0 für Win7 und höher(6.1)
3.5.1.0.0 für WinXP oder höher (5.1)

Here in the forum we are advised (among other things) to delete the entry:

https://msfn.org/board/topic/171814-posready-2009-updates-ported-to-windows-xp-sp3-enu/?page=149&tab=comments#comment-1150757

There are some other entrys for an older update (kb4019276) to bring support for TLS 1.1 / 1.2 for XP and Server connections.

At this point all this information is not clear (for me :rolleyes: ).

Is the older update necessary for the new one?

In the kb base article there is no such a hint ("There are no special requirements to install this update.").

So what is right here?

And where came the information from about the registry settings for the new IE8 update?

Any official MS site?

 


Someone please upload latest IE Core files?

$
0
0

I have newest cumulative POS2009 files for IE8 for integration into SP3 via nlite on standby.
However... I don't need/want IE8 on target unattended Install - only the latest Core IE components. It is my understanding that nlite can strip IE entirely and that (please correct if wrong) according to nlite strip procedure, service pack, hotfix integration and comonent removal are done in that order, and that (for e.g.) if IE8 (and subsequent cum updates) were added as hotfix at start, the component removal stage (which comes last) still removes IE8, while leaving latest IE Core components (from latest IE8 hotfixes) intact.

This  is long-winded though, a simpler approach would be to patch following files, namely inetcpl.cpl (and dependencies where any), in order to expose TLS 1.1/2 checkboxes in Internet Options window.

untitled.PNG.4247cbd61b5519cf5b7a1e535e607c75.PNG

So can someone with IE8 + latest POS2009 updates upload these files in a zip so I can test please?

If a simple patch like this doesn't work I will have to integrate normal way, however its not clear if embedded hotfixes will integrate smoothly onto fresh SP3 source, if anyone can clarify that, that would be great.

Thank you for reading.

Is it possible to unpack a hotfix?

$
0
0

I'd like to acces the files inside the ie8-embedded-xxxxxxxxxxxx.enu.exe hotfixes for experimentation on XP.

Is there a way to unpack hotfixes so that I may test the files inside?

Thanks in advance

Desperately seeking for an c++-coder to bring discord voicechats to Miranda and thus to XP

$
0
0

Hey guys, sorry but I wasn't sure where this is to post and what, normally I never use forums as I'm blind and the modern web is an extremely big challenge for me. Actually, the maintainer of Miranda NG, (an multi protocol messenger that works on Windows XP), told me that if he gets a secondary c++-coder they could implement discord-voicechat into Miranda NG till Juli. While I know that this is more Miranda NG-related than XP-related, still it would be an extremely awesome help for every XP-user needing, or wanting to run discord. Furthermore, as we finally lost skype 7, we really should get some decent groupcall-capable IM-Platform. so, if anyone has the time and will to help on this, please contact me!

Steam for XP in 2019?

$
0
0

Hello!

For some time, on Steam, I get a message that from January 1, 2019 will stop working, due to the end of support for Windows XP. Is there a way to circumvent this? My computer is quite old and is doing the best on XP, so I do not want to switch to something newer.
Anyone have an idea for steam for XP in 2019?

Newer motherboards that support WinXP

$
0
0

Does anyone know of a list of motherboards that support Windows XP that's newer then a Pentium 4?

Windows XP updates - list of links

$
0
0

I thought I'd post this list of Windows XP download links in case it's useful to anyone. This is a raw list of updates, and may include updates that are now obsolete. However, it is not an exhaustive list, since it does not contain Internet Explorer updates, updates for the .NET Framework, etc.

	ENU
====
http://www.download.windowsupdate.com/msdownload/update/software/secu/2008/01/windowsxp-kb942831-x86-enu_0a8500f0300505cecc06c90840c75796c5e3c9a5.exe
http://www.download.windowsupdate.com/msdownload/update/software/dflt/2008/04/windowsxp-kb936929-sp3-x86-enu_c81472f7eeea2eca421e116cd4c03e2300ebfde4.exe
http://www.download.windowsupdate.com/msdownload/update/software/secu/2008/05/windowsxp-kb946648-x86-enu_288da0ecf75b20e972ad58dba0a382173b548ec1.exe
http://www.download.windowsupdate.com/msdownload/update/software/secu/2008/05/windowsxp-kb950762-x86-enu_bfa04c9d2e62b4695d1bb8953486788c8a8c11e4.exe
http://www.download.windowsupdate.com/msdownload/update/software/secu/2008/06/windowsxp-kb951376-v2-x86-enu_e9b68c5e63acb5786a05b53b4332465de0ebcebd.exe
http://www.download.windowsupdate.com/msdownload/update/software/secu/2008/07/windowsxp-kb944338-v2-x86-enu_d8cade8456591867f22cdae4c42db7f473afbd67.exe
http://www.download.windowsupdate.com/msdownload/update/software/secu/2008/07/windowsxp-kb950974-x86-enu_fd840632e13df756e9d1251400e6e659d16a8b27.exe
http://www.download.windowsupdate.com/msdownload/update/software/secu/2008/07/windowsxp-kb952954-x86-enu_0c595b08d25326ffa929efe23e29b5848e7f39ec.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2008/09/windowsxp-kb953155-x86-enu_0d30e7c0ca79f1172d83db0c7e890809836a0b87.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2008/11/windowsxp-kb952004-x86-enu_28e11ce4e9083f84c7b9903716904a94dc6b7280.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/01/windowsxp-sp2-windowsmedia-kb952069-v2-x86-enu_97de22fb2fed50fb03e1107b579975f2295feb8a.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/01/windowsxp-windowsmedia-kb952069-v2-x86-enu_7918e468c91942521b143def50e427b27efa703f.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/03/windowsxp-kb956572-x86-enu_a2463f484318332e8319dd931c87b27cf747b2de.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/03/windowsxp-kb959426-x86-enu_9bdfabdec1c98057a92503cb00ce6ed623b517c5.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/03/windowsxp-kb960803-x86-enu_114aa39cb3e1e42c0f9897c99e697084dbdc656f.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/04/windowsxp-kb923561-x86-enu_b8aac16b07ca89c7dde4d724c808ff88faa456ec.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/06/windowsserver2003.windowsxp-kb963093-x86-enu_c53606bca846117e1cebe7dd9a37251cb84aa41d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/06/windowsxp-kb970483-x86-enu_3b08d6ffcbab056a9665cc6e6460b6a0d1d90f75.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-kb956844-x86-enu_926002701569eabda17630d8f9cb45d8ced0ab71.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-kb958470-x86-enu_887a259c39636eaf1ab9bfec71172203224415cc.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-kb960859-x86-enu_c1a1e20576bc745a720053357e46be6c2a3f7faa.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-kb971032-x86-enu_23f7ac835ed26257c74a7b1ef5caa6198182cf6c.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-kb971657-x86-enu_697f5d861910aa051131a58e1af607a79e14e1a9.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-kb973507-x86-enu_b74b10f783998bb7b15f8bc3a7a5a572749fb303.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-kb973869-x86-enu_c0679cb2d4c07f35f39ee5d8d7b973c5e4582d34.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-sp2-windowsmedia-kb973540-x86-enu_dff9fd1cafd1b740784f00e43a3aff588d0c810d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/07/windowsxp-windowsmedia-kb973540-x86-enu_bea728bec09879f6b924a6b3d781af1e77c6f5b4.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/08/windowsxp-kb973815-x86-enu_1d84219447edee9e6989e740e7fd477360e4059d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-kb969059-x86-enu_e0bb7f06a55b6fc94b39f75e5d9e7d9b0b3b0c5d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-kb974112-x86-enu_e2e2d805c4dc419d0f7d83652eec5379d2ba8692.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-kb974571-x86-enu_dcca5129a21f3ccbea4609e1bcf7763f07c1883b.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-kb975025-x86-enu_a7cb9fdfedb5e7b464709910afeec4cff61c89f4.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-kb975254-x86-enu_6b82a2508bcef00663666e24ba54bf135e2f1ac3.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-kb975467-x86-enu_703673b065074bb9dd7d849f420e52ea0d343f8d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-sp2-windowsmedia-kb954155-x86-enu_77db0c2aa79d2a5049fb9fb0fa4fbc5e98d4f30d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/09/windowsxp-windowsmedia-kb954155-x86-enu_4caf879b0297044df1601b2c8312cfd38b929100.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/11/windowsxp-kb973904-x86-enu_f08c92a67f1bd7f0768eca980d885eb85a91d52c.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/11/windowsxp-kb974318-x86-enu_8612baba6e75a76faee0606cf9f8970824e2f8d3.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/11/windowsxp-kb974392-x86-enu_f2acc593bbeb6296b4b921fecb3c71dd93db076c.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/11/windowsxp-sp2-windowsmedia-kb972187-x86-enu_b7d50fa42f6c18068ed79b5e32c39201a43daae0.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2009/11/windowsxp-windowsmedia-kb972187-x86-enu_d07aa4b7065e73bb2e9db2e7ce3289e4d91848ce.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/01/windowsxp-kb975560-x86-enu_c57ed328ab8838ecbb6ffea46fa0bcbd76b2cc59.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/01/windowsxp-kb977914-x86-enu_60a362b77f6e5fb22208b05624d30f817c4bd4a7.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/01/windowsxp-kb978706-x86-enu_f4e076b3867c2f08b6d258316aa0e11d6822b8d7.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/03/windowsxp-kb976323-x86-enu_1c0194022a930192d7b71d5df406ef3fe43a0b5d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/03/windowsxp-kb977816-x86-enu_0a99a4abced5b224ab8fdf5054d5d6cff991e064.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/03/windowsxp-kb978338-x86-enu_4d1317a99a8951697a0c1213687199ad89ba6d9d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/03/windowsxp-kb979309-x86-enu_b6a3d8953714847d02d614e8fcb5b4171d1029fb.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/03/windowsxp-kb981350-x86-enu_9fc0909c468c17870ab868d0d7f4eb815b309045.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/03/windowsxp-sp2-windowsmedia-kb979402-x86-enu_09cff283401228cd946081159b796d5d1abdfbd3.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/04/windowsxp-kb978542-x86-enu_11f7b200a2bbb1b053e34b821141e72240c592d8.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/05/windowsxp-kb979482-x86-enu_e848aac75a3d3361bde4486fd5185ced7b3037b8.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/05/windowsxp-sp2-windowsmedia-kb978695-x86-enu_0903920ab44d6cd39bcb6c8d192547e30d2c5809.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/05/windowsxp-windowsmedia-kb978695-x86-enu_99fe7c707b79c3585b245de5f811b295a152c3bf.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/06/windowsxp-kb2229593-x86-enu_745d7b032115820cef735f83660c5e3c870da33b.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/07/windowsxp-kb2115168-x86-custom-enu_73df387d1a4ee4aea369096219b72b88677500c2.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/07/windowsxp-kb2115168-x86-enu_675e6a32a90807671042e4de6b1f10a2fd82b157.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/07/windowsxp-kb981997-x86-custom-enu_9568103c3f7f5d54d82ec40b98208fbc5d06e0a2.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/07/windowsxp-kb981997-x86-enu_c0c210a40f1e3d801a2b9705b78b540c0e135824.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/07/windowsxp-kb982000-x86-custom-enu_ff6e6c9558a9a7bb45272ee2858e8bf4ed92b825.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/07/windowsxp-kb982665-x86-custom-enu_d1c15fd1868848f4640fdfb86821713dabc481aa.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/07/windowsxp-kb982665-x86-enu_3b611460ba349838a9e8eabcbbe4b2ffe2e3b1e7.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/08/windowsxp-kb2124261-x86-enu_8c9fb769a98a87da56b6b312a2a31010b1f4d7cf.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/08/windowsxp-kb2290570-x86-enu_6ab9dbb115e5ba8f3cd4f607aedecee86223ced8.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/08/windowsxp-kb2347290-x86-enu_de6572122c6323cc343a9273ee0d24188b240a32.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/08/windowsxp-sp2-windowsmedia-kb975558-x86-enu_c209604475c7ac98e97942a8808338fe6ce552fd.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/08/windowsxp-windowsmedia-kb975558-x86-enu_9ee8bd40993d20e65f4c92767dd058c48df92c84.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/09/windowsxp-kb2121546-x86-custom-enu_c18f3f3a347abd469cdb8d1d898acb794c9a36ce.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/09/windowsxp-kb2296011-x86-custom-enu_29b33ff228ac6b2e6f088a295bf549a35d0f0746.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/09/windowsxp-kb2296011-x86-enu_95ff937b7a8443ddb8ae0579da94690ac3a85d0d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/09/windowsxp-kb2347290-x86-custom-enu_ec2efa5bbe2b6bc85d3cc36b42738395e2af389b.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/09/windowsxp-kb2387149-x86-custom-enu_2f1a8830880b648b4d35c2225d403921e7db198d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/09/windowsxp-kb2387149-x86-enu_62c37617cb0c9502a135b43a161482928084cbaa.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/09/windowsxp-kb979687-x86-enu_c42f90a1cdb62f35e29f0a7dc1fc9edebef69628.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/10/windowsxp-sp2csa-windowsmedia-kb2378111-x86-enu_18a19ddb9a20e247f145061b9710e05e5b75fd47.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/11/windowsxp-kb2423089-x86-enu_94cce8eb153f98affd81951f2123b74f14a59925.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/11/windowsxp-kb2443105-x86-enu_c6025a43d53129a2f4d0def88d1f1ccaa6c622b2.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2010/12/windowsxp-kb2419632-x86-enu_6dfaf9fe0d89d32d3c28e8245c1fe87d4561af1f.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windowsxp-kb2393802-x86-enu_317d4fcbb0a230f3462f40ea2be322d5eced5866.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windowsxp-kb2478960-x86-enu_56cc4e7eae7362f056ccd946e5e69d1b4a1c1e76.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windowsxp-kb2483185-x86-enu_8d3deb8249d91112891ff5a847c6debcec1dee84.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windowsxp-kb2485663-x86-enu_e6142de1db2c310632af0badc06392a85f78304d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/02/windowsxp-kb2479943-x86-enu_0f4fe52f57ff542624050e386ac2b264ea032631.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/02/windowsxp-kb2481109-x86-enu_357fb75b3178fa715a5e9c209ed6c8cf86899c77.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/02/windowsxp-kb2483618-x86-enu_0106682564d6acabcd294dac2d84032bb7798a54.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windowsxp-kb2491683-x86-enu_d68220a1d4d2ed4a823b0f5e313f19ea45389515.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windowsxp-kb2506212-x86-enu_8d65ae1e5ccf2a10c9bd1699e316c859005ef685.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windowsxp-kb2509553-x86-enu_b7be1af1e39194c02cad8426d3756254a7a5bc7e.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windowsxp-kb2510581-x86-enu_1ace505ed92dcf4c22f61c4d800c379b48b31319.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/05/windowsxp-kb2507938-x86-enu_5568319a9f23638b28306ec6c79f14f1c35c7414.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/05/windowsxp-kb2535512-x86-enu_96bcbab3c4ba3b1bb8ee912454b0e36fa8f2944b.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/07/windowsxp-kb2566454-x86-enu_334393e8002f9a92618410b7b578c97cbc14905d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/08/windowsxp-kb2570947-x86-enu_62e1630e0f8731279f558ccc977f8f8a2b9cb14e.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/10/windowsxp-kb2544893-v2-x86-enu_27c268ee84f0b69a6b9efd63bc0989f0d9e3c968.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windowsxp-kb2584146-x86-enu_708a4a32c115fdfe3474a22bc113129475361072.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windowsxp-kb2585542-x86-enu_8812e165246f8a1b68f65330ba5621818d9d348c.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windowsxp-kb2598479-x86-enu_1876be74b01993fd64fdf68e8f19cad78cd878cf.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windowsxp-kb2603381-x86-enu_f2d782a2715c9ed03ce70ce47975494f95a6b4e7.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windowsxp-kb2619339-x86-enu_b1bb039422a906a7b32159db286fd827a1781686.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windowsxp-kb2620712-x86-enu_29f43eb377d0a420d67bd1e4908aa47cef9f079b.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windowsxp-kb2631813-x86-enu_f6154b624398c24f007b66be5c96ac9ead6279d1.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/01/windowsxp-kb2661637-x86-enu_ba52dfa92940b58a752810151ab0d4e74deb48ba.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/03/windowsxp-kb2653956-x86-enu_2fb667e1082bce2589326fcc713f9c2306f70c8d.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/03/windowsxp-kb2659262-x86-enu_f679467f80cf9c3dbb0a31f558e4a5f77471c27e.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/03/windowsxp-kb2660649-x86-enu_689f93b51ce8325d1947ae0d40a3d41ceedcb4b0.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/04/windowsxp-kb2686509-x86-enu_fdbb0ff8820e54be0eefc9e4e47ca4f0116d84a6.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/05/windowsxp-kb2686509-x86-enu_c7e2d5fc238a1566e5d7c5974e6ba5d3130c9c82.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/06/windowsxp-kb2698365-x86-enu_b7e3e61d18de050ee914494dff53f1de868fb5dd.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/09/windowsxp-kb2705219-v2-x86-enu_5da19122909e6616886e3d35d226fda552ebdc13.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/09/windowsxp-kb2723135-v2-x86-enu_00fce783b936aa2a79715154e5e896fbc25b3f83.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/10/windowsxp-kb2727528-x86-enu_0a3eac9e820944e76cff5a6c2e8e4b6a6a31ce20.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2012/11/windowsxp-kb2770660-x86-enu_2ea121f18e223eb0610260035e2ded1d785e5629.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2013/01/windowsxp-kb2780091-x86-enu_048e2d351378500825a48ec960624dd217604807.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2013/02/windowsxp-kb2807986-x86-enu_8cf50640e3fa43fe236c61c31859768795eaa048.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2013/03/windowsxp-kb2801109-x86-enu_8dd43999be477ffbb3a75b7d8738100d3c1520a1.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2013/03/windowsxp-kb2813345-x86-enu_a87abf527c0b8026208e99f7771478bd82b45c90.exe
http://download.windowsupdate.com/msdownload/update/software/secu/2013/03/windowsxp-kb2820917-x86-enu_44b31849d4c3bfbeea9023d68db2ed8537662e0b.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/05/windowsxp-kb2834886-x86-enu_4c6b8f13c24e41e5c9815780d09459f24c14183b.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/05/windowsxp-kb2835364-x86-enu_b055260207a810f44e7d68c2b93a151d6f8d9691.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/06/windowsxp-kb2813347-v2-x86-enu_7f5b07e5464702cdfa24a869d21f55335223069a.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/06/windowsxp-windowsmedia-kb2845142-x86-enu_560190cc172d1009450366fa48a274f2ae0672a7.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/07/windowsxp-kb2868038-x86-enu_0cc9f04af1cfc59b088f1c426792c7746fdf695f.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windowsxp-kb2864063-x86-enu_135f76c6e66a127411cf3e406959ca56eae8e551.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windowsxp-windowsmedia-kb2803821-v2-x86-enu_d99cd182c0aea576af96ca58a5bc31f5e01b7273.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windowsxp-windowsmedia-kb2834902-v2-x86-enu_ecc8652da2b85688917a4f7aa48ac1efe84975fd.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windowsxp-windowsmedia-kb2834903-v2-x86-enu_4a207badce02eb2a1c995465183a760ea33ddba7.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windowsxp-windowsmedia-kb2834904-v2-x86-enu_c38814607addf93fb06e2d8e0e4b5c08e10857c3.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windowsxp-windowsmedia-kb2834905-v2-x86-enu_c34829167838fddcc6d679649a1f79d39280a2f0.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/09/windowsxp-kb2862330-x86-enu_00e64588c6eaf60c184d31d65a42ba950b020c28.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/09/windowsxp-kb2862335-x86-enu_baeaacdc07fa53a6e4a1ef558c0b4638d2541fd4.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/09/windowsxp-kb2879017-x86-enu_e6b354acd732c385254babb1a6a61568bf185b65.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/09/windowsxp-kb2884256-x86-enu_49b6b431d45d7750f08177a9f58a419141004b48.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/10/windowsxp-kb2862152-x86-enu_0457906284ff7fd706d77a69ac337ce7f65c7919.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/10/windowsxp-kb2868626-x86-enu_1a00424d2070b57a4d9e2e73e54d90f51bb0562a.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/11/windowsxp-kb2893294-x86-enu_f13e5e517b86f5cad62d9e0e6efa1c411efae1ef.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/11/windowsxp-kb2900986-x86-enu_0d694f8de9ef0063d06b08985224759abdb7ef9a.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/12/windowsxp-kb2914368-x86-enu_1d9a306f9e5dd564c8ffdcdb8717c4ae2588db3d.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/02/windowsxp-kb2933528-x86-enu_41b0f6a452d0c6b2275013485a98f16e4f577e37.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/04/windowsxp-kb2926765-x86-embedded-enu_fd1b4b0791354fab04ae68907436cab0c8676665.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/05/windowsxp-kb2957503-x86-embedded-enu_34e002ae983c5a61dced1e5cb41d81e714a6cfbd.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/08/windowsxp-kb2993651-x86-embedded-enu_60107e4eed4850513f41778ad3a9caef35d893b8.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/09/windowsxp-kb2991963-x86-embedded-enu_5dd02be95059523a66d5b8aff27391fa5e7b1aaa.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/09/windowsxp-kb2993254-x86-embedded-enu_a56e76a2cc8404722e44a938849f114431788829.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/09/windowsxp-kb2998579-x86-embedded-enu_166f21272c3e54fa2430ca1231b65d870ac1a1bc.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/11/windowsxp-kb3013126-x86-embedded-enu_a7485236ec7df12c907ac232c4d8778df1936f43.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windowsxp-kb3004361-x86-embedded-enu_47e4ec000eca37d76a17a45d1f17ac181849b45b.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windowsxp-kb3020393-v2-x86-embedded-enu_8eed034b5b679808bfb76c522cede9ab48e681e5.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windowsxp-kb3021674-x86-embedded-enu_3fc15ebe581b61c1a30ab790f97d2fb2d7d41926.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windowsxp-kb3029944-x86-embedded-enu_ecdc1784751745ae36f14c6a964f1d9701baefad.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/02/windowsxp-kb3033889-x86-embedded-enu_97084ab0bd0fe1c7097c6d176d61d85cc28a3609.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/02/windowsxp-kb3035132-x86-embedded-enu_8e7607ac53706be4b440013f5c82725c2a94a6d2.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/07/windowsxp-kb3078601-x86-embedded-enu_9f428ed1e710bced0702b4097846d36429a93202.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/windowsxp-kb3087039-x86-embedded-enu_06ac33315eaa9c1d4728cb19651e72cad6186a97.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/10/windowsxp-kb3081320-x86-embedded-enu_d8e991e08445605d85c48425684c7850d1d63a36.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/10/windowsxp-kb3092601-x86-embedded-enu_8ddf39236405ff94407350f62daf3ab6e0fbca65.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/12/windowsxp-kb3109560-x86-embedded-enu_ec8a3e049d5b27bbdbb091cd3ea2ffc6c725ffc5.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/12/windowsxp-kb3121918-x86-embedded-enu_0415f43e728e56f42bdc3171ec7d0f59221cafc7.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/12/windowsxp-kb3124275-x86-embedded-enu_c3ee3aaf9031a0d9a8c3e3fc47f3a6c856f33acd.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2016/01/windowsxp-kb3126587-x86-embedded-enu_b638c3dc6cc42839e8f73e46306791ebc7fc6709.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2016/02/windowsxp-kb3126593-x86-embedded-enu_28707de25730ebbb4d0e5f02d156dff431bc6e6d.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/02/windowsxp-kb3139398-x86-embedded-enu_1a601a891b38acd2b4e92ed4695646b74b66e1d9.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2016/02/windowsxp-kb3139914-x86-embedded-enu_44ee887d5f8da7d99a521b41e3c5ba9e4954de62.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/02/windowsxp-kb3140709-x86-embedded-enu_26891d26d98b012dd5b42112b7e692a5cae56cdf.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/03/windowsxp-kb3149090-x86-embedded-enu_ee6360c61fb2bc49278a0fcbcfb9c299af436857.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/04/windowsxp-kb3145739-x86-embedded-enu_e958811dbe4188202eda69cdc9e797a4ae1dc923.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2016/05/windowsxp-kb3161561-x86-embedded-enu_cf0ce9294706376c9c16f927ec915f5892f31213.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/05/windowsxp-kb3161949-x86-embedded-enu_0973436e841ac9a6697c9439f97c7d6ab66484f6.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/06/windowsxp-kb3170455-x86-embedded-enu_c49f5af4f42870c20dc1f5bc1c848405dc8ad197.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/07/windowsxp-kb3178034-x86-embedded-enu_cb20691577ade771359e8a680e75d8f0872ff5f4.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2016/08/windowsxp-kb3185911-x86-embedded-enu_2ca7c76b25bdb5024f89b4754048d0b5f884c12e.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2016/09/windowsxp-kb3183431-x86-embedded-enu_e1867d355002ce685fbffb06f364d2f003b9afcd.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/10/windowsxp-kb3196718-x86-embedded-enu_6b1d637604907623f8989b3d98c9e531b122c6cd.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2016/10/windowsxp-kb3197835-x86-embedded-enu_96f4567c9e6d92956a85f4c8cbddb66cb6d8c8b3.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2016/10/windowsxp-kb3198510-x86-embedded-enu_237a0e55e051d8e10cd5510b89e25bf2da64d508.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/02/windowsxp-kb4012583-x86-embedded-enu_cd150712980ded7ca5765a8fdd9a9dda860877b8.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/02/windowsxp-kb4012584-x86-embedded-enu_04053061cb8d03ee685554dd351594fc6f0a12ab.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/03/windowsxp-kb4014652-x86-embedded-enu_c2702e4f1e63d06a320c139a853fd3a578d5e228.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2017/03/windowsxp-kb4014794-x86-embedded-enu_ffefa30f0b989917a75cd5474576c6155d17d420.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/03/windowsxp-kb4015383-x86-embedded-enu_f2891bd693ccc72eac9aba102aed25687df5a85c.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/05/windowsxp-kb4022747-x86-embedded-enu_9ee3ca3c99988ec3a9cade2073f461b39706c82c.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2017/06/windowsxp-kb4024323-x86-embedded-enu_42d69f9c232fb86657c938a507388bcdf5043483.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/06/windowsxp-kb4025218-x86-embedded-enu_be6f91dc331c23cbb6ce78f41a3c3976fa62f904.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/06/windowsxp-kb4025497-x86-embedded-enu_4a37e35189bb8bbdc561962c3ea6e500638fccf5.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/06/windowsxp-kb4026061-x86-embedded-enu_c9e64b9686dae23b9e299fd13669019f174e26b8.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/07/windowsxp-kb4025409-x86-embedded-enu_3afe33a68dfc323b223c6573670bbafddcdf82f4.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/07/windowsxp-kb4034775-x86-embedded-enu_0c5c2f6822400aaf9fb2daf450e6373be2255e75.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2017/08/windowsxp-kb4039384-x86-embedded-enu_6aabfe977264b12c8331500d97053134de7d0738.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2017/09/windowsxp-kb4041995-x86-embedded-enu_acee429ab4e7445545ac73a97f390628e647c1cf.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2017/11/windowsxp-kb4047211-x86-embedded-enu_217f80951ee111cf78ea67a854c2919ddc94dceb.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2017/11/windowsxp-kb4052303-x86-embedded-enu_04ab266aa0752613a9b6c68ff33d40699a0045e5.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2017/12/windowsxp-kb4056941-x86-embedded-enu_24ebcc41e3f03048c25cf02d8d8ab6107479aabd.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/02/windowsxp-kb4089082-x86-embedded-enu_56a4c587452f40f8e91f3192168f4cf1193e801c.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/02/windowsxp-kb4089175-x86-embedded-enu_1caf7f6ec0b27d38070eb0385f1548776bc65e6d.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/02/windowsxp-kb4089694-x86-embedded-enu_f0698bdbb2c0dbaf56d7c4071061046865ec3526.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/03/windowsxp-kb4091756-x86-embedded-enu_4084e5a3bf76e0a22d8d33b0c5e8ff3b57e3faf3.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/04/windowsxp-kb4056564-v2-x86-embedded-enu_964310efb26058c35b0233f008f8b5f6ffd102af.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/04/windowsxp-kb4089453-v2-x86-embedded-enu_23b1aec8d9e41242c20799e66045dc75c089df61.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/05/windowsxp-kb4101477-x86-embedded-enu_867ee71e20e05bcdcab83b86466ab20771f74ac5.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/05/windowsxp-kb4130957-x86-embedded-enu_dab532721ce76725b35909e6d95c9d430edc1e13.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/05/windowsxp-kb4294413-x86-embedded-enu_b211e66c425fcef8980fd16953483282cb4e6b14.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/06/windowsxp-kb4291391-x86-embedded-enu_a48bc4ba244b5a49d0191900c5f65f60e1568579.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/07/windowsxp-kb4343674-x86-embedded-enu_ca27aebe8d7a210ffbc67934c144627a9d6f5463.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/08/windowsxp-kb4457163-x86-embedded-enu_6079ca40413cb788b625ebc6c4b8b802fa3bca57.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/08/windowsxp-kb4458000-x86-embedded-enu_cd9e39263c1b198b9d0a22529100434d3bd20e90.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/08/windowsxp-kb4458001-x86-embedded-enu_b6ae71b9b58128d4c6a3221208c1e42d0d434f79.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/08/windowsxp-kb4458318-x86-embedded-enu_d2751e7d4cd301c51c010f1d193d909e64ba8466.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/09/windowsxp-kb4458006-x86-embedded-enu_e96b950633bde3636cffe6629b30f424acc90daf.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/09/windowsxp-kb4462935-x86-embedded-enu_b5de399aa37284c81ca1e26ffb93893db035ec17.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/09/windowsxp-kb4462987-x86-embedded-enu_2ca3c3b7b4e2f9bee24af4e46eeb7e4624aabd3d.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/09/windowsxp-kb4463103-x86-embedded-enu_1d7cc48a7f1902bdd5953a1ab980db5832631339.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/10/windowsxp-kb4463573-x86-embedded-enu_b0e76ad95da29d0ce8ba122a6b703660b93ed49b.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/10/windowsxp-kb4470118-x86-embedded-enu_eb3fe70a186545d1745f48eda37ecf21a1d330d9.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2018/11/windowsxp-kb4467689-x86-embedded-enu_b974cbc4675474ddb38c41f7926f493cde207eee.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2018/11/windowsxp-kb4473077-x86-embedded-enu_2472bfb0a1921bccc30621166b26004b22203e63.exe
http://download.windowsupdate.com/c/msdownload/update/software/uprl/2018/11/windowsxp-kb4468323-x86-embedded-enu_6a46468fe73b3b793934d70768ab2c4ce11a03ab.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/01/windowsxp-kb4486463-x86-embedded-enu_8ab6c1cbd442dbdd8667993af4ee093abf09fb41.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/01/windowsxp-kb4486465-x86-embedded-enu_80c4f32abd257968871a840fd4d87cfedd0b3d4b.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/01/windowsxp-kb4486924-x86-embedded-enu_49ea7629701a23dd3dbf3c21e60af54eec3baf19.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/01/windowsxp-kb4487086-x86-embedded-enu_d87dffd2310c8df09892de204e6216bb447ad0db.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/02/windowsxp-kb4486468-x86-embedded-enu_491ec2dcd578becacf2ec08f65b6c6f62ca3822c.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/02/windowsxp-kb4486536-x86-embedded-enu_4dd89d4cfab9ba6526747646e320adf407b6ece4.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/02/windowsxp-kb4486538-x86-embedded-enu_b46b867293bb21b12fe5867ff98806a98ae50fa2.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/02/windowsxp-kb4487085-v2-x86-embedded-enu_667f051ffe98ff99495e9b6ede2b8c321aba1ca3.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/02/windowsxp-kb4489493-x86-embedded-enu_bf5786db231541e562a8f4dececac9b8fdc3cdce.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/02/windowsxp-kb4489973-x86-embedded-enu_1c50f081b27c440d89300b59cd5df9ed689390b0.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/02/windowsxp-kb4489974-x86-embedded-enu_fb9d178e51321bf47246a752c2d79dcfe6bada40.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/02/windowsxp-kb4490228-x86-embedded-enu_a81c03f3f775390169d890d6f99cd9d3e58cc62e.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/02/windowsxp-kb4490385-x86-embedded-enu_47b193ff117da1c86efc4d275b52a829c5cb00b9.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/02/windowsxp-kb4490501-x86-embedded-enu_c0b31474df5c52c3f1794914050fdf27b0692c65.exe
http://download.windowsupdate.com/d/msdownload/update/software/uprl/2019/02/windowsxp-kb4487989-x86-embedded-enu_3c32c4f284fcd7208b3cf4428320e95a27513c3a.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4489977-x86-embedded-enu_e1b835d2c684f2953946a414fddc7fe40ef6eec2.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4491443-x86-embedded-enu_38dcb7ca4adee2236e202651b1a9feff15123fc5.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/03/windowsxp-kb4493341-x86-embedded-enu_cfd32e1875c216557e94e1763fbc114c216d6b0c.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4493563-x86-embedded-enu_b7acbe01322ca903c920fa8a85328057ba2d9703.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4493790-x86-embedded-enu_e078da675e389cbfaba2354eae8040e438a42476.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/03/windowsxp-kb4493793-x86-embedded-enu_c238b0eab410f55d9b8fdc7485eba2ba0459559a.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/03/windowsxp-kb4493794-x86-embedded-enu_89c4913943e563851bd4c458f222aee21edb7bb3.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4493795-x86-embedded-enu_9a084800b33b40776da30e70293cccfe4b0342f5.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4493796-x86-embedded-enu_92495fc42b0bf0fd51baa584af55f02b7d8deaa5.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/03/windowsxp-kb4493797-x86-embedded-enu_40d780178b80a6bd6b4398ca1ca3e47973997b0b.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4493927-x86-embedded-enu_4123fcdc99a7976cd5791f78536a0585e0264462.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/03/windowsxp-kb4494059-x86-embedded-enu_58109e2522cd4e5b41840ce5d24931d52e421f72.exe
http://download.windowsupdate.com/d/msdownload/update/software/secu/2019/03/windowsxp-kb4495022-x86-embedded-enu_6fce82c569aa5a6af6ff63769b2e901032d401ee.exe
http://download.windowsupdate.com/d/msdownload/update/software/uprl/2019/03/windowsxp-kb4487990-x86-embedded-enu_8a1f84ccfc4cdcb9536864fa91ae82ef62cb3e79.exe
http://download.windowsupdate.com/c/msdownload/update/software/secu/2019/04/windowsxp-kb4494528-x86-embedded-enu_77ead5923f0753b90d935f2d6546886b063a6fe1.exe
http://download.windowsupdate.com/d/msdownload/update/software/uprl/2019/06/windowsxp-kb4501226-x86-embedded-enu_708fe12ecfbbb070821a87fd538af3b6b6fd3084.exe
	

 

Windows XP MCCES Updates

$
0
0

In need of a way to use MPAM_FE.exe files to update Windows XP Security Essentials - since Microsoft stopped providing same as of the 2th of June 2019.

There has got to be a way to use the Definition Update files in this executable to update Windows XP - I just am not smart enough to figure out how...

Any advice - help - would be appreciated - and - I am sure I am not the only one looking for a way to keep MSE up-tp-date in Windows XP

Thank You...


Microsoft Management Console (MMC) Vulnerabilities

$
0
0
Quote

 

Recently, Check Point Research discovered several vulnerabilities in the console that would allow an attacker to deliver a malicious payload.

Microsoft has granted CVE-2019-0948 to this vulnerability and patched it in their June 11th Patch Tuesday release.

 

 

https://research.checkpoint.com/microsoft-management-console-mmc-vulnerabilities/

Probably, I have not verified, the Windows Vista can find the relative patch.
Not available for Windows XP.

It would be interesting to open a debate on the countermeasures to be taken.:)

Personally at the moment I have taken the following precautions:

 

1) Block direct execution of Vbscript code and block execution of .vbs scripts.

2) Block any process executed from mmc.exe.

3) Block execution .msc script executed outside Sytem Folder.

Windows XP Update Security Essentials

$
0
0

There has to be a way to update MCCES on Windows XP. I think it's a matter of creating a file to change the data which locks out XP to a file that takes the mpam-fe files and forces them to update the Definitions to work with the OS. How about a few software folks that can outsmart Microsoft and keep us Windows XP lovers secure..

Audacity 2.3.0 fails to run on Windows XP

Secondhand motherboards?

$
0
0

Being close to 90 years of age, I take the liberty of maybe violating some forum rules, begging forgiveness. I want to write about an expereience I had quite some time ago. I bought two secondhand ASUS moitherboards on PayPal, and it took some time before I opened the packages.What I found was that essential hardware had been removed from the boards, namely.the two black, molded plastic bars designed to support the cpu cooling fan. They just.were missing! I solved the problem by removing the parts I needed from a much older motherboard taken out of service earlier. All I knew was that I had bought the two motherboards from PayPal, and I believe the seller was someone named Bilbao. One of the boards sit in the machine I am using now. The other board in another cabinet, where all I know is that the CPU fan won't run.

any safe way to dualboot between 98 & XP?

$
0
0

to be honest, i dont know which this question belongs in (98 section or here in the XP section), outside separate drives, is there any safe way to dual boot on the same drive but by multiple partitions? the system i'd do this to doesn't have the room for 2 drives (Low profile form factor case) [Optiplex GX 260) + theres a few games that cannot be bruteforced to run w/ KernelEX that'd i'd want to run on it.

Viewing all 2068 articles
Browse latest View live