Optimize XP for Dual Core


Recommended Posts

So would I need Windows XP 64Bit edition for this or no? It's not a problem, just curious.

Just to let you know I've been using Win XP 64bit and applied the amd optimizer and it did help dramatically, mainly for gaming issues where you would get stutters. So trust me it does work for 64bit XP.

Not sure about the registry tweak, but AMD Optimizer does help out a lot.

  • 2 months later...
  • 2 weeks later...
  • 4 weeks later...

Applied the tweaks, system boots up almost twice as fast now.. infact it beats my network init, which it all used to do it at the same time.. now it's system boot up, everything loads, and then the network inits, and it loads in between 5 - 10 seconds. -Don't know if it's actually 5-10 seconds, it seems a lot less, I didn't exactly count it-

Athlon X2 4200 2.2Ghz - Dual Core

Holy crap, another good test, download a 1080p .mov, any, doesnt matter which. Play it, notice the performance, apply said fixes, AMD or Intel, play same video, take note of the performance. I can now play 1080p .mov files like they're nothing. I'm not sure if it was the AMD drivers, since the only ones I installed for my CPU was off of WinUpdate, or the AMD Optimizer, or the registry tweak, but something did the trick.

Edited by -Hiroshi-
  • 2 weeks later...

Well, I'm running SP3 and applied the tweaks suggested here - my computer hasn't exploded yet (running a Turion x2 @ 2ghz), and it might just be me but it seems like it's made a slight improvement. That's probably just me imagining things, though.

Either way, thanks for the guide.

  • 1 month later...

Step 1, from reading this topic is only if your Explorer is crashing, right? I've left it out, because it's from 2006 and I don't want older files coming into my SP3 setup.

The registry and boot.ini I've changed. Hopefully this actually works (if it doesn't, then as long as it doesn't screw anything up).

  • 1 month later...

none of my programs can use both cores fully at the same time I will explain the problem and then if someone can please tell me if I need to optimise XP, it is SP3.

If I am using an app or game that maxes my cpu (core 2 duo) then both cpus will run at about 50% each alternating up and down but total usage between them adds to 100%. If I goto task manager and set cpu affinity for the app/game to 1 cpu only then that 1 cpu then goes to 100% normally and the other cpu idle. But if I switch it back to both cpus then they both goto about 50% each. I am baffled by this as I have some apps that saturate cpu and they only using half the power in my system, any idea why this happens?

  • 1 month later...
none of my programs can use both cores fully at the same time I will explain the problem and then if someone can please tell me if I need to optimise XP, it is SP3.

If I am using an app or game that maxes my cpu (core 2 duo) then both cpus will run at about 50% each alternating up and down but total usage between them adds to 100%. If I goto task manager and set cpu affinity for the app/game to 1 cpu only then that 1 cpu then goes to 100% normally and the other cpu idle. But if I switch it back to both cpus then they both goto about 50% each. I am baffled by this as I have some apps that saturate cpu and they only using half the power in my system, any idea why this happens?

Only apps written for multiple cores can max out mulitple cores. These tweaks work because they help divide the workload up more evenly across mulitple cores. Whereas XP on it's own, tends to send all of the work to a single core.

I'm not sure if it was the AMD drivers, since the only ones I installed for my CPU was off of WinUpdate, or the AMD Optimizer, or the registry tweak, but something did the trick.

Pretty sure it was AMD Optimizer. I too have installed it and it seems to have noticeably improved overall performance. AMD's best software. :D

  • 1 month later...
2. Registry Tweaking

(k let's make this clear, the next two steps i take no responsibility, if you eff up your system that is your problem, but this DOES work, make sure you do exactly as I tell you)

Go to the registry edit via the run command. (Windows key + R---> type in "regedit"). Look for this HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager and then look for the key (or folder) named Throttle. If it's not there, right click Session Manager, go new and then Key. Name it Throttle. In there there should be a DWORD called PerfEnablePackageIdle make sure the value = 1. If not, make it say 1. If the key is not there, create it. Right click an area in that box, and go new DWORD. This will increase performance A LOT.

I didn't have a folder 'Throttle', so I created it. But it did not have a DWORD by that name. I'm assuming that the DWORD is this:

2008-11-26_1740.png

I didn't have a folder 'Throttle', so I created it. But it did not have a DWORD by that name. I'm assuming that the DWORD is this:

<snip>

In there there should be a DWORD called PerfEnablePackageIdle make sure the value = 1. If not, make it say 1. If the key is not there, create it. Right click an area in that box, and go new DWORD.
@Green- Gah, I don't know why I didn't read it the first time. It's like it wasn't there.

Also, since it isn't mentioned, should I set the Base to numerical or hexadecimal?

Doesn't matter. 0 and 1 are still 0 and 1 in both Decimal and Hex :p

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      521
    2. 2
      PsYcHoKiLLa
      230
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!