Slashdot Mirror


Last-Minute Glitch Holds Up Windows XP SP3

An anonymous reader sends word that Microsoft Windows XP SP3, which had been scheduled to hit the Web today, was pulled back at the last minute. SP3 apparently broke a Microsoft application, Microsoft Dynamics Retail Management System. Their solution is to set up a filter to make sure that no system running the affected software will get automatically updated; once the filter is in place, SP3 will be released to the Web. A fix for the incompatibility will follow.

123 of 162 comments (clear)

  1. Curious by TubeSteak · · Score: 5, Insightful

    You'd think Microsoft would test Service Packs against all Microsoft products while the SPs are still in Alpha or Beta.

    --
    [Fuck Beta]
    o0t!
    1. Re:Curious by soosterh · · Score: 1

      * I don't work for or endorse MS products *

      While I agree this is difficult to accept from a consumer point of view, and traditionally it has appeared that Microsoft has not always tested products well before release. I can tell you from a testing point of view it is very difficult to do full regression test before release.

      Think about this from MS point of view. They have many applications in the market, on many, many different platforms with basically an uncountable number of configurations. To test every OS update with every version of every one of their own apps, a small subset of important third party apps, on an appropriate number of configurations and platforms will quickly get into the millions or billions of setups to test.

      This can logically be reduced with pairwise testing and orthogonal array reductions, but still to get that all done before alpha or beta testing would be near impossible...

    2. Re:Curious by Romancer · · Score: 4, Insightful

      That is what alpha and beta testing is supposed to address. It's not unreasonable to expect that during the beta testing of a piece of software that they would try and make sure it was compatable with at least the software packages they sell.

      And secondly, this is what happens when software isn't sectioned off from the os and contained with reasonable restrictions and documented APIs. This would be a really simple thing for them if they even stuck to their own standards. How would if break another application if they had communicated a set of standards to both departments on how to program properly. Or even built an OS that contained programs to a reasonable level and didn't always throw crap into the OS directory. /rant

      --


      ) Human Kind Vs Human Creation
      ) It'd be interesting to see how many humans would survive to serve us.
    3. Re:Curious by Belial6 · · Score: 1

      I could buy that excuse if this were a bug that only manifested in bizarre configurations. If this is simply a case of RMS failing to work on any XP SP3, then your excuse doesn't hold water.

      Of course, this doesn't even get into the fact that MS is using it's dominance in the OS market to give it an advantage in other markets... AGAIN. I sincerely doubt that MS would hold up a service pack release if I notified them that MY application would not run on their SP.

    4. Re:Curious by magus_melchior · · Score: 1

      I'm sure if they had the time, patience, and resources, they would. Microsoft is known primarily for Windows, Office, and Visual Studio, but they've got a shipyard's worth of individual programs and libraries, not to mention document templates and macros. Because some of their business customers don't bother to upgrade their software, they would have to toss in some older versions of Office and VS that are still at least in the maintenance phase. Testing the service pack against every possible combination of installed applications, including legacy versions, would cost them a fortune and then some. Since this is going to be a largely free distribution, I don't think the shareholders would like that one bit (not that they're terribly pleased about this turn of events for SP3).

      Of course, if you're familiar with software and IT testing, this isn't how it works. You test against as many known inputs as you have the time and resources for, then the most likely scenarios, and hope the users don't trip over the errors you couldn't find in your schedule and budget. But testing against every compatible product you've ever developed? When you're the size of Microsoft?

      --
      "We are Microsoft. You shall be assimilated. Competition is futile."
    5. Re:Curious by Z34107 · · Score: 4, Informative

      Bah. "FUD," I think the word is.

      Or even built an OS that contained programs to a reasonable level and didn't always throw crap into the OS directory.

      I assume you're talking about DLL hell. This has been solved since at least XP - overwriting a file in a system directory will silently fail if it's being replaced with an older copy. So, replacing winsock.dll version 2.1 with a version 1.0 because you fail at writing an installer will no longer screw up your system.

      Think of Service Packs as analogous to kernel patches. Those have been known to screw up a few programs, haven't they?

      --
      DATABASE WOW WOW
    6. Re:Curious by JebusIsLord · · Score: 2, Insightful

      Windows File Protection only protects a static list of files installed by Windows. To quote MS:

      "All SYS, DLL, EXE, and OCX files that ship on the Windows CD are protected. True Type fonts--Micross.ttf, Tahoma.ttf, and Tahomabd.ttf--are also protected."
      http://www.microsoft.com/whdc/archive/wfp.mspx#E3F

      DLL hell still very much exists, as I fight with at work all the time doing application packaging. Typically things like incompatible crystal reports dlls are an issue. Typically and end-user will end up with dozens of different versions of the same DLL in different installation directories, often installing to both %system% and %programfiles%. The next program installed registers it's copy, breaking the old application. App isolation works sometimes, but sometimes it also unfortunately breaks the hell out of things. WFP couldn't even help if it DID apply to these files. .NET thankfully fixed this with the global assembly cache, but that doesn't apply to the win32 world.

      Back on topic, it sounds like they DID catch this during testing; which is why it's being delayed! Nice catch, MS. It isn't like we need SP3 direly, right now.

      Anyhow,

      --
      Jeremy
    7. Re:Curious by Rutulian · · Score: 1

      No, he's talking about spewing everything into c:\windows\system32 instead of having programs be self-contained. There is some argument as to whether complete self-containment is good, though. Personally, I like the way linux does it (some containment, some shared, everything tracked by the package management system).

      The other thing that really annoys me is having user data written to the program directory. For crying out loud, no mainstream OS has been single user for at least 5 years. Every consumer program should be multiuser aware and put data in the right places!

      Think of Service Packs as analogous to kernel patches. Those have been known to screw up a few programs, haven't they?

      Nope, can't say they have. At least not official ones that come from the distribution provider. Also, service packs are ridiculous. You are practically reinstalling the entire operating system every time you install a service pack. A new kernel is typically a 10 megabyte download. If you throw a few userspace updates in there as well, you might hit 15 megabytes. How big is SP3? 300M?

    8. Re:Curious by MobyDisk · · Score: 1

      That isn't the only aspect of DLL hell. DLL hell involves other problems like different DLLs with the same name, major version updates (1.1->2.0) dropping or breaking features, COM registration problems, shared DLL reference counts becoming inaccurate, and missing dependent DLLs. That's off the top of my head. I think MSI was supposed to solve the problem, but it really didn't. On an OS where the procedure is to name DLLs arbitrarily and drop them wherever the installer pleases, it is kinda hard to manage this. Although you are right in that the problem has diminished over the years. XP's safety features, better installers, and a move from COM to .NET has significantly decreased the occurrances of DLL hell.

    9. Re:Curious by suckmysav · · Score: 1

      "spewing everything into c:\windows\system32 instead of having programs be self-contained. There is some argument as to whether complete self-containment is good, though."

      Personally, I think the main reason that Microsoft designed the whole registry + system32 shitfight is to make it harder for people to copy programs from one machine to another. I remember waaaay back in the day when it was possible to copy MS Office by zipping the program folder and copying it to another PC.

      Microsoft ramped up the complication factor to make this sort of thing impossible.

      But then that could just be me being ultra cynical too.

      It may just be that they are simply a bunch of retarded dumbfucks.

      --
      "You can't fight in here, this is the war room!"
    10. Re:Curious by sjames · · Score: 1

      Then how do you explain that they managed to figure it out before actually releasing the SP?

      What actually happened is that they announced before they were sure and then got a surprise. That's not a big deal in itself, it happens in business all the time.

      The only reason this is news at all is that it presents clear evidence that MS applications DO get special consideration and so any legal arguments that the OS and app divisions are somehow seperate (and so not leveraging their monopoly) are full of crap.

    11. Re:Curious by revlayle · · Score: 2, Insightful

      Say what you will about MS and .NET.... .NET (as the parent says) certainly has reduced DLL hell *significantly* Also, it has become increasingly easier to "zip up a folder" of a managed app, unzip to another system and run without a single problem (unless there are hard paths in the app's config file that a well done app will detect and will 1) fix or 2) interactive ask the user "hay where is this?"). As long as you have the correct .NET runtime (which isn't anything different from any other runtime library). COM: nightmare, in fact I found COM worse than just dealing with windows DLL modules in a C/C++ app.

    12. Re:Curious by Dog-Cow · · Score: 1

      The only reason this is news at all is that it presents clear evidence that MS applications DO get special consideration and so any legal arguments that the OS and app divisions are somehow seperate (and so not leveraging their monopoly) are full of crap. You are full of crap. Actually, you are crap. This glitch could have been found with any number of 3rd-party applications that MS tests their updates with. It just happens to be that it was an MS app. It in no way implies that 3rd-party applications were not tested. You are just so blinded by the crap covering your eyes that you have to lash out.
    13. Re:Curious by sjames · · Score: 1

      oooooOOOOOOoooo, since you called me crap, I MUST be wrong.

      If I say George W. Bush is a doodie head does that mean he's not the president anymore :-)

  2. What a surprise by thetoadwarrior · · Score: 4, Funny

    It's a shame they don't have full access to all Microsoft products to test this long before the release date.

  3. Isn't this anticompetitive? by annamadrigal · · Score: 4, Interesting

    Seriously, if Microsoft is prepared to hold up an update of this sort and then modify the procedure to kludge their way around the problem for their own software but would just release the patch if it was someone else's application, then this seems extremely dubious to my non-expert mind. After all, doesn't this give their applications the unusual, and unfair, advantage that they might work with Windows both before and after a major update?

    1. Re:Isn't this anticompetitive? by i.of.the.storm · · Score: 3, Interesting

      Uh, they delayed the release of Vista SP1 for other companies' drivers to be updated, isn't that the same thing? Perhaps you should do some research before pulling the anticompetitive flag, it's in their best interests to make sure their own shit works properly, shit though it may be. (Note: That's not my opinion, but probably that of others here.)

      --
      All your base are belong to Wii.
    2. Re:Isn't this anticompetitive? by UnknowingFool · · Score: 1

      I think one issue is that software that caused the delay does not have a large deployment. If the issue was with IIS or Active Directory, etc. that might be something else. But MS Dynamic Retail Managment Systems? I've never even heard of it before today. The article even mentioned that it is target to small and medium businesses but suggested that it isn't widely deployed.

      --
      Well, there's spam egg sausage and spam, that's not got much spam in it.
    3. Re:Isn't this anticompetitive? by JackieBrown · · Score: 1

      they delayed the release of Vista SP1 for other companies' drivers to be updated, isn't that the same thing? Whether you realize it or not, drivers are considered by most non-technical users, the resposibility of the OS.

      How many crap "Linux sux because my modem doesn't work" do we see?

      It goes both ways an MS knows that.
    4. Re:Isn't this anticompetitive? by i.of.the.storm · · Score: 1

      Well, not many because I don't think many people are still using modems, although if they were they probably would be winmodems in which case we would see posts like that. But the same goes for wifi cards especially these days. And my point still stands, it's not anticompetitive, it's just in their best interests in either ways and doesn't cut off competition in any way as the OP insinuated.

      --
      All your base are belong to Wii.
  4. I fell for it... by The+Faywood+Assassin · · Score: 1

    As much as I hate to admit it, I actually believed those lying B*stards.

    Honestly who here (besides myself) did not see this coming?

    Beny
    --

    "I'm a humble person really,

    I'm actually much greater than I think I am"

    1. Re:I fell for it... by pdusen · · Score: 1

      What the hell are you talking about? They pulled an update they discovered had a major glitch, they didn't pull a gun on your children.

    2. Re:I fell for it... by The+Faywood+Assassin · · Score: 1

      This was in development for over a year, and NOW they "catch" it?

      Five dollars says they find a show stopping bug the next five times they attempt to release it

      Beny
      --

      "I'm a humble person really,

      I'm actually much greater than I think I am"

    3. Re:I fell for it... by pdusen · · Score: 1

      I do software, and I can tell you that sometimes all the testing in the world won't expose a problem until the very last moment (or, in some cases, even later than that). Maybe two more times and I'll get suspicious (although I'm not entirely sure what there is to be suspicious about when an update is delayed...)

  5. Vista SP1 has the same bug by Joe+The+Dragon · · Score: 3, Interesting

    Vista SP1 has the same bug

    1. Re:Vista SP1 has the same bug by calebt3 · · Score: 1

      Sheeple don't know that.

    2. Re:Vista SP1 has the same bug by i.of.the.storm · · Score: 1

      "Microsoft Dynamics Retail Management System"

      I wonder how many end users have that on their Vista machines? I for one have never heard of it, and I don't think many consumers who use Vista as a desktop OS have either. A quick google search shows that this is more of an enterprisey thing. This goes for the other idiot who posted about how "sheeple" don't know that. Of course "sheeple" (oh you're so mature and superior for calling others sheeple) don't know that, they don't use a Retail Management System.

      --
      All your base are belong to Wii.
    3. Re:Vista SP1 has the same bug by freedom_india · · Score: 1

      WTF is Retail Management System?
      All i know is my local Walmart AND Costco use IBM PoS machines which do not run Windows XP.
      I mean how come Microsoft suddenly got religion and worries about their SPacks breaking other apps?
      They did not have this 'wonderful' mentality before!
      And they certainly did not have this mentality when Vista was released in the wild.
      And now they worry about a software that is used by less than 0.001% of all XP users?
      How come?
      I think they took it down because they forgot to include NSA hooks into it.
      Iam happy i use Kaspersky and not Symantec.

      --
      "Doing what i can, with what i have." ~ Burt Gummer
    4. Re:Vista SP1 has the same bug by digitalsolo · · Score: 1

      They worry about it... because they sell it.

      If their software breaks software written by other companies... well, that's what you get for not being -all- Microsoft... however if it breaks their -own- software, that's more difficult to explain away.

      I'm not saying that they don't often break their software unwittingly, rather, they are at least aware enough to avoid it when the bug is made known ahead of time.

      --
      Just another ignorant American.
  6. An insider report... by Minwee · · Score: 1, Funny

    According to a leaked recording from Microsoft's secret underground Quality Assurance Lair, the real reason was a bit more complicated. Here's a transcription from the files that I received:

    "Hey, guys! Why is this chair stuck inside SP3? How does this kind of stuff get in here anyway? We can't ship it like this!"

    This kind of thing happens more ofteh than you might think.

    1. Re:An insider report... by Nushio · · Score: 1

      Groupthink says otherwise ;)

      --
      Check out Unsealed: Whispers of Wisdom! http://unsealed.k3rnel.net It's an action-RPG about Open Sourcerers.
  7. A Dynamics Feature! by DnemoniX · · Score: 5, Informative

    I work for an online retailer and one of my recent tasks was to evaluate Dynamics for potential use in house. The problem that we ran into was that the media that Microsoft sent us directly plain didn't work. We couldn't even get the package to install; hell we even read the manual. We tried it on XP, Server 2003, and 2008 beta. The installer walks you through all of the preinstall requirements and manages to explode every time. So are they sure SP3 dumping Dynamics isn't just a "feature"?

    We are looking at the Apache Open For Biz suite now instead and if that doesn't satisfy management they will go with SugarCRM.

    1. Re:A Dynamics Feature! by dunkelfalke · · Score: 1

      dynamics what?
      microsoft has bought a lot of business software (navision, axapta, great plains etc) and calls them all dynamics. they are still extremly different under the hood.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    2. Re:A Dynamics Feature! by acecamaro666 · · Score: 1

      Then those products must have 'dynamic' names.

    3. Re:A Dynamics Feature! by MajinBlayze · · Score: 1

      We had the same problem. We are evaluating Microsoft Dynamics AX (or as I like to call it: the product which 'til recently was called Axapta)

      I installed the 2008 beta build, (handed to us by a big shot at Convergence) and although the install succeded, the "Object Server" seemed to run, but wouldn't actually do anything.

      --
      "Hate is baggage. Life's too short to be pissed off all the time." Danny Vinyard -American History X
    4. Re:A Dynamics Feature! by squallbsr · · Score: 1

      AX is insanely complex (and a 'black box', don't let the X++ fool you), its stability reminds me of Windows Me. It also makes DBAs cry.

      --
      Sleep: A completely inadequate substitution for Caffeine.
    5. Re:A Dynamics Feature! by PopeRatzo · · Score: 1

      microsoft has bought a lot of business software
      "business software"..

      What a nice name for it.
      --
      You are welcome on my lawn.
    6. Re:A Dynamics Feature! by icepick72 · · Score: 1

      "BS"..

      What a nice acronym for it.

    7. Re:A Dynamics Feature! by icepick72 · · Score: 1

      When the same piece of media blows up on multiple platforms, then get another piece of media. Even though a lot of other posts also lead towards product instability, maybe in this case it was a bad bit.

    8. Re:A Dynamics Feature! by CAIMLAS · · Score: 1

      In case you thought it was your fault, don't worry about it. Dynamics is utter shit. I had a Dynamics GP installer - and her supervisor - monkey around with an install for the better part of the morning before getting it to work. It involved using an older version, upgrading, then installing a yet-unreleased patch and... URG. And there was a problem with the installer itself not working properly in 2k3, but it worked OK on XP, so... don't want to think about it!

      --
      ~/ssh slashdot.org ssh: connect to host slashdot.org port 22: too many beers
    9. Re:A Dynamics Feature! by anexkahn · · Score: 1

      At my last job we used Microsoft CRM 3.0....worst Microsoft Software I have ever used....most early Beta software from Microsoft worked better than the full release of Microsoft Dynamics CRM 3.0 I think they have come out with a newer version since then, but I don't have any interest in checking it out. I assume this is the software that you are referring too.

      --
      Curious about Storage and Virtualization? Check out
  8. well done by geekoid · · Score: 4, Insightful

    they caught an error and patched it for everyone else while working on it.

    This can happen to any patch that rolls out. It's when it's not caught that we should complain.

    No, I am NOT an apologist.

    --
    The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    1. Re:well done by machxor · · Score: 2, Interesting

      They didn't really patch anything. As anyone running Microsoft Dynamics Retail Management System can still break things by installing XP SP3. As far as I can tell they are not changing the actual SP3 installer so that it will not install on a machine running Microsoft Dynamics Retail Management System. Doesn't even sound like it will warn.

    2. Re:well done by geekoid · · Score: 1

      The patched the installer to not run on MSDRMS.
      That's all I meant. And they did catch it.

      Interesting, I wonder if when Bill Gates hears the term DRM, he thinks people are talking about MSDRMS?
      That would explain a lot...no, maybe not.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    3. Re:well done by machxor · · Score: 2, Insightful

      But if you RTFA you'll see that they did not patch the installer. They "patched" Windows Update to not provide you with the installer for XP SP3 if it detects MS DRMS. There have been no changes that prevent a MS DRMS user from downloading the SP3 installer exe and running it. "To help protect our customers, we plan to put filtering in place shortly to prevent Windows Update from offering both service packs to systems running Microsoft Dynamics RMS. Once filtering is in place, we expect to release Windows XP SP3 to Windows Update and Download Center"

    4. Re:well done by geekoid · · Score: 1

      Yes, my bad. I shoudl ahve said instll process.

      Nothing in that statement says that you will be able to run the exe and install it, there could very well be adding code for that...based on history I would say there isn't. But hey, they are getting a little better.

      My concerns is there going to release SP3 to all non-POS users(or prevent the install) makes some changes to the service pack, and then open it up. Essential creating two different SP3s.

      If you are running in production system, and especially one that deals with money in real time and you don't read and understand everything in an SP before testing it, you should be fired.
      The royal you, not you specifically.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    5. Re:well done by menace3society · · Score: 1

      It happened after they announced the release date and after it went into beta, though: that's the problem. One would expect that a company of MS's size could catch this stuff earlier in there development/release process, and the fact that the didn't is a cause for concern. Not really a cause for complaint, mind you, but this is slashdot after all.

    6. Re:well done by bitrot42 · · Score: 1

      > One would expect that a company of MS's size could catch this stuff earlier in there development/release process

      I would say that they missed it *because* of their size. The number of products/versions/editions they have, each with various patches installed or not installed, is effectively infinite.

      --
      FIXME: Add a sig here
  9. why hold back from download site? by Anonymous Coward · · Score: 1, Informative

    I can understand holding back from Windows/Microsoft updates, but why hold back from the download site? Unless you want to make people question the viability of XP and reconsider holding off on Vista.

  10. What else will break? by blunte · · Score: 3, Insightful

    Makes you wonder what software will break that they didn't test...

    I suppose we owe thanks to the early adopters out there for testing all our updates.

    Now you know why your corporate IT department is so reluctant to update software and OSs.

    --
    .sigs are for post^Hers.
    1. Re:What else will break? by CambodiaSam · · Score: 1

      After I installed SP3, it broke Microsoft Office Communicator 2005. Instead of launching as usual, it reverted back to the install script and wanted the CD. Not a big loss, but certainly a flag for an important point:

      The service pack was NOT tested with all current or recent Microsoft software (this app is one version behind). Even just launching it would have revealed this one.

    2. Re:What else will break? by (H)elix1 · · Score: 1

      Now you know why your corporate IT department is so reluctant to update software and OSs.

      Tis worse - even those of us who have an MSDN Universal subscription - cannot get access to this bloody service pack to do testing prior to the release. Looks the corps will find out what works when the boxes start to autoupdate.

  11. Re:I downloaded it... by machxor · · Score: 1

    That's what I gathered from the article. The only thing being changed is whether or not XP SP3 or Vista SP1 automatically installs or downloads via automatic updates on machines running Microsoft Dynamics Retail Management System. My assumption is that you'd be fine installing this now as long as you are not running Microsoft Dynamics Retail Management System but then again it is a new service pack for a Microsoft product so assuming this will be the only problem is silly :-)

  12. Re:XP SP3 = "Vista Migration Plan" by petermgreen · · Score: 3, Insightful

    Windows XP still has just under 6 years of support left (just under a year of mainstream support left, then another 5 years of extended support).

    It seems you are confusing the end of support with the end of retail and big brand OEM availibility.

    --
    note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
  13. Wait a minute.. by mweather · · Score: 3, Funny

    People actually use that POS?

    1. Re:Wait a minute.. by WinPimp2K · · Score: 1

      I think that someone was going for +1 funny as DRMS is a Point-Of-Sale (POS) system - very closely related to ...

      wait for it...

      Dynamics - Point Of Sale

      DRMS is intended as a multiuser/multistore solution complete with an upper level interface for consolidating results from all the individual stores. As such, it does have some fairly large installations - meaning folks with enough money to hire nasty lawyers if someone with deep pockets breaks their business systems.

      --

      You either believe in rational thought or you don't
    2. Re:Wait a minute.. by MajinBlayze · · Score: 1

      come on mods; POS = Point of Sale
      Seriously.

      --
      "Hate is baggage. Life's too short to be pissed off all the time." Danny Vinyard -American History X
    3. Re:Wait a minute.. by pandrijeczko · · Score: 1
      Oy! I'm British, we invented timezones and sailing ships, and 'er Majesty insists we use GMT.

      By God man! So will you call it "the fourth hour" or do we have to put our blasted red jackets on again & sort you bloody colonials out more!

      --
      Gentoo Linux - another day, another USE flag.
    4. Re:Wait a minute.. by PopeRatzo · · Score: 1

      DRMS is intended as a multiuser/multistore solution
      Bigger question is why does Microsoft expect people running "mulituser/multistore solution(s)" to use the same OS as multimedia producers, gamers, programmers, etc?

      One-size-fits-all is not a good approach to operating systems, as far as I'm concerned. You wouldn't believe how much junk I have to disable before I can safely and efficiently run my digital audio workstation or video editing suite.

      --
      You are welcome on my lawn.
    5. Re:Wait a minute.. by porl · · Score: 1

      yeah, i had to disable windows to get my audio environment working as i like it :)

      (i use ardour on linux with an rme hammerfall 9636 and a focusrite saffire pro26io)

      porl

      ps. this is not intended to be a flame, i'm making an attempt at that thing you guys call 'humour'

  14. In a nutshell by Anonymous Coward · · Score: 3, Interesting

    In a nutshell:

      * one of Microsoft's own software breaks after installing SP3 for Windows XP.

      * the software that breaks is a business application, and not some security program requiring undocumented API calls or system drivers

    What are the odds that software from others will break, too?

    A cynical part of me wonders if SP3 contains breaking changes to make life harder for WINE, and possibly other solutions.

    Does anyone have more info regarding the specific reasons for breakage?

    1. Re:In a nutshell by icydog · · Score: 1

      Let's be serious now. Microsoft rolled out SP3 partly in an effort to break WINE? Think about it for a second. If SP3 does voodoo magic that causes incompatibility with WINE, does that break WINE? No! Everything that used to work with WINE still will!

      Sure, they can introduce something to cause future applications targeted to XP SP3 to not run on current WINE (which would probably get fixed pretty quickly by WINE devs anyways). But (1) who will write an app that only works on XP SP3+ and leave everyone else out in the cold? and (2) does MS really want to annoy its own "ecosystem" and all its developers just to annoy a few WINE devs?

  15. It must be hard... by jberryman · · Score: 3, Funny

    getting all those glitches in on time for release.

  16. Re:XP SP3 = "Vista Migration Plan" by mweather · · Score: 1

    Same difference. If I need to deploy more XP boxes after they stop selling XP, and I don't have a volume license, I'm SOL.

  17. I'm not suprised by EmbeddedJanitor · · Score: 4, Insightful
    Firstly, the type of organisation using retail management systems tend to be conservative and not bleeding edge because downtime costs money. They would not be playing with beta SP releases and would not be seeing problems.

    Secondly, Microsoft is not one monolithic entity, as many believe, but a group of different business units. The DRMS folk aren't going to drop their current activities to check whether a different business unit's updates work.

    Thirdly, so what! Why not ship it anyway with a release note saying "Don't use with DRMS!". SP2 broke some MS developer tools and that did not stop them shipping it. Some organisations had to wait months for updates before they could migrate to SP2.

    --
    Engineering is the art of compromise.
    1. Re:I'm not suprised by PopeRatzo · · Score: 2, Funny

      Microsoft is not one monolithic entity, as many believe, but a group of different business units.
      At least that was the assertion by the Justice Department. I don't think MS sees it that way.
      --
      You are welcome on my lawn.
    2. Re:I'm not suprised by amirulbahr · · Score: 1

      Thirdly, so what! Why not ship it anyway with a release note saying "Don't use with DRMS!". Not much good if Automatic Update installs without asking first. I didn't even read TFA but its pretty clear from the summary that that is what is being addressed here.
    3. Re:I'm not suprised by glitch23 · · Score: 1

      Firstly, the type of organisation using retail management systems tend to be conservative and not bleeding edge because downtime costs money. They would not be playing with beta SP releases and would not be seeing problems.

      Okay I'll give you that.

      Secondly, Microsoft is not one monolithic entity, as many believe, but a group of different business units. The DRMS folk aren't going to drop their current activities to check whether a different business unit's updates work.

      Okay I'll give you that.

      Thirdly, so what! Why not ship it anyway with a release note saying "Don't use with DRMS!". SP2 broke some MS developer tools and that did not stop them shipping it. Some organisations had to wait months for updates before they could migrate to SP2.

      MS should be doing their own internal QA on patches and especially service packs which would involve making sure the said updates do not adversely affect other components of the operating system and standard (the definition of standard is an exercise for Microsoft) applications, especially Microsoft's own applications. If they don't do this then what is their QA department doing?

      --
      this nation, under God, shall have a new birth of freedom. -- Lincoln, Gettysburg Address
    4. Re:I'm not suprised by ozmanjusri · · Score: 1
      At least that was the assertion by the Justice Department.

      That raises an interesting question interesting.

      If SP3 breaks any software made by third parties, the companies with broken software will have to wear the costs and damage to reputation. MS won't hold up distribution of the SP for a competitor.

      Clearly, Microsoft has leveraged their monopoly OS position to give clear competitive advantage to one of their own products.

      Should the DoJ be interested?

      --
      "I've got more toys than Teruhisa Kitahara."
    5. Re:I'm not suprised by Iamthecheese · · Score: 1

      Sure, and then we can all say, WTF! MS Office gets preferential treatment! They don't test Open Office for compatibility like that!

      There was a stew at one point over Microsoft making an undocumented API for an Office glitch, the same as they do for other major software with glitches. *cough*Oracle*cough*

      Office must stay seperate.

      --
      If video games influenced behavior the Pac Man generation would be eating pills and running away from their problems.
    6. Re:I'm not suprised by joeytmann · · Score: 1

      You know you can change AU to ask you before it installs anything.

      --
      Insert funny smart-ass comment here.
    7. Re:I'm not suprised by sjames · · Score: 1

      They don't have to change it to leverage their monopoly position. If, for example, SP3 was fine with MS software but broke the GPLed WhizzBang 3000 or for that matter, Firefox, what do you suppose the odds are MS would have let them pre-test the service pack in the first place or if it broke something, hold up it's release?

      In other words, the OS dividion at MS gives preferential treatment to MS applications so that they can leverage the monopoly.

      There are a great many specialized programs out there that businesses depend on and home users have never heard of. Only the ones by MS can cause a service pack to be delayed long enough for the OS team to make special efforts to avoid simply breaking them.

    8. Re:I'm not suprised by Keeper+Of+Keys · · Score: 1

      C'mon! Mod the guy up!

    9. Re:I'm not suprised by greedyturtle · · Score: 1
  18. Our fears confirmed by MrKevvy · · Score: 4, Funny

    SP3...apparently broke a Microsoft application, Microsoft Dynamics Retail Management System...

    Service Pack withdrawn because it breaks the Microsoft DRM System. Cue tinfoil hats.

    --
    -- Insert witty one-liner here. --
  19. Amazed by jdc180 · · Score: 4, Funny

    I'm amazed the submitter didn't go for the glitzy headline: "Microsoft breaks RMS"

    1. Re:Amazed by b4dc0d3r · · Score: 1

      EPIC FAIL - you missed FARK by about half the alphabet at least.

    2. Re:Amazed by i.of.the.storm · · Score: 1

      Obligatory XKCD: http://xkcd.com/225/

      --
      All your base are belong to Wii.
  20. Where is it? by gparent · · Score: 1

    Is there any way to get the Service Pack 3 in its final form if we don't use MS DRMS?

    1. Re:Where is it? by Anonymous Coward · · Score: 1, Informative

      http://download.windowsupdate.com/msdownload/update/software/svpk/2008/04/windowsxp-kb936929-sp3-x86-enu_c81472f7eeea2eca421e116cd4c03e2300ebfde4.exe

  21. for glitches, just use a karnaugh map by solweil · · Score: 2, Funny

    They should have just filled out a Karnaugh map and done the overlapping square trick. That gets rid of some glitches.

  22. It's like Deja Vu by bottlecaps4u · · Score: 1

    If my memory serves me correctly, SP2 was also delayed several weeks to due the discovery of the integer overflow class of vulnerabilities.

  23. Re:Funny - This makes me think of the prior articl by alx5000 · · Score: 1

    We need a quellesurprise tag...

    --
    My 0.02 cents
  24. Re:XP SP3 = "Vista Migration Plan" by kestasjk · · Score: 1

    It seems you are confusing the end of support with the end of retail and big brand OEM availibility.

    --
    // MD_Update(&m,buf,j);
  25. RMS.. by headkase · · Score: 1

    I never knew that RMS was able to stop a service pack! :) I've been waiting all day to make that one. Epic fail.

    --
    Shh.
  26. Actually useful news?!? by DogDude · · Score: 1

    After many, many years of reading the tripe that passes for news here, I'm shocked, SHOCKED to find a news story that is actually useful. I'm shopping for POS systems right now, and this is gonna make me think twice about MS DRMS. The last thing you want in a POS is instability. Lines of happy customers can quickly become angry if the cash registers suddenly die.

    --
    I don't respond to AC's.
    1. Re:Actually useful news?!? by wuputah · · Score: 1

      I would think that if you were looking for a POS, a Microsoft product would fit quite nicely.

      --
      Brought to you by the numbers π, e, and 0x1B.
  27. Re:XP SP3 = "Vista Migration Plan" by DudemanX · · Score: 2, Informative

    No, you buy a Vista Business license which is downward compatible with XP Pro.

  28. Re:Proper prior planning prevents poor performance by machxor · · Score: 1

    Wouldn't it be better if they documented those hidden APIs instead so you'd have access to those nifty features too? So XP SP3 and Vista SP1 are confirmed to cause a problem with 1 Microsoft product out of a total of ___ (- insert number much larger than 1 here) products and that speaks volumes to you?

  29. Re:Patch the patch by pandrijeczko · · Score: 1

    Strictly speaking, it's a patch for a fix in a service pack.

    --
    Gentoo Linux - another day, another USE flag.
  30. A touch or irony? by v(*_*)vvvv · · Score: 1

    So does this mean when its released it will be glitch free!? YAY!!

  31. The headline should be: "XP SP3 breaks DRMS" by angryflute · · Score: 1

    Microsoft racing to restore compatibility with DRMS.

  32. solution? by pak9rabid · · Score: 1

    Their solution is to set up a filter to make sure that no system running the affected software will get automatically updated; once the filter is in place, SP3 will be released to the Web. A fix for the incompatibility will follow. Sounds more like a hack to me.
  33. Re:I downloaded it... by i.of.the.storm · · Score: 1

    If you don't use that app, besides the general wait period for other bugs to come out there's no reason not to slipstream it since the patch will probably be for the MSDRMS, not a change in Windows. They're just going to change Windows Update to not automatically offer it to people who are using MSRDMS.

    --
    All your base are belong to Wii.
  34. What if... by Anonymous Coward · · Score: 1, Interesting

    OK, so it doesn't install the update on systems with Dynamics installed.

    What about those users who choose to install XP, complete all the updates, and then install the rest of their software? Does SP3 revert to SP2? Does it prevent the installation of Dynamics? Or does it just break Dynamics?

    1. Re:What if... by Buchenskjoll · · Score: 1

      It doesn't break Dynamics. It breaks Dynamics RMS. Dynamics is a suite of applications also including Dynamics NAV, Dynamics AX, Dynamics GP, Dynamics SL, Dynamics CRM, Dynamics C5 and some even say Dynamics XAL.

      --
      -- Make America hate again!
  35. XP3 Download by Whiteox · · Score: 1

    I think that it is still going to cause problems. My local computer mag site already has it as a download and will prolly be on their next cover disk: http://www.pcauthority.com.au/Download/109499,microsoft-windows-xp-service-pack-3.aspx

    But as someone else pointed out, not many who run Dynamics will ever bother to do a manual update.

    --
    Don't be apathetic. Procrastinate!
  36. I've already built a slipstreamed SP3 machine by spywhere · · Score: 3, Informative

    After one false start a few days ago, caused when someone posted build 3311 (a release candidate) as the final RTM, I downloaded the final release this morning. I immediately slipstreamed it into a (XP Pro SP2) CD folder, threw an answer file winnt.sif into the i386 directory, and burned a bootable CD.
    Then, I swapped a blank hard disk into this very HP DV9000 laptop, and did the clean unattended SP3 build.
    The build went OK, I installed all my apps with few surprises, and now I'm back up on my old user profile (since I'm on a domain, it even remembers my stored passwords).

    A few observations:
    --They didn't add too many drivers: SP3.CAB (which presumably includes all the contents of SP2.CAB) is only 19587 KB in size, a mere 7 percent larger than the SP2 driver file released in August 2004.
    --I don't think any of those added drivers helped my DV9000: I ended up installing every single device I had to update a few months ago when I last did a clean SP2 install.
    --They did, at least, include the High-Definition Audio update in SP3. This is helpful, since Microsoft no longer offers the update for download; building a clean SP2 box with HD Audio previously required one to find a copy somewhere else before the sound -- and often the modem -- drivers would work.
    --It doesn't include IE7, and my customized Google installer wouldn't work on the SP3 installation, so I had to get it from Windows Update.
    --As one might expect, it saved quite a bit of time on the post-build Windows Updates. Not counting IE7, Office or hardware drivers, this particular machine has only downloaded half a dozen updates so far.

    1. Re:I've already built a slipstreamed SP3 machine by Whiteox · · Score: 1

      Thanks for the info. I'm a bit pissed off that there's no IE7 as some builds require it. Even though I'm pushing Firefox on some of the installs, it would of been nice to have.

      --
      Don't be apathetic. Procrastinate!
    2. Re:I've already built a slipstreamed SP3 machine by Sentry21 · · Score: 2, Informative

      I keep evangelizing this program on Slashdot, but it keeps being worth it, so I'll do it again.

      If people are going to build slipstreamed XP discs, they need to start using nLite. It allows you not only to slipstream in SP3, but also things like Windows Media Player 11 (nice), and there are packs you can grab from the site to add things like Firefox, Acrobat, Sun Java, FoxIt PDF Reader, and so on.

      â¦THENâ¦

      You can go through and remove stuff. Windows XP has a ton of drivers for video cards. It doesn't support most nVidia video cards, or newer ATI stuff either, but it DOES support old Trident cards (likely even my old 256kb Trident card). it also has support for (and drivers for) ATM networking (even in the Home version, afaik). You can strip all of that out. Also feel free to take out fax support, dial-up-networking support, Domain support (if you use XP Pro at home, or MCE), and so on.

      Take out Windows themes. Add other ones in. I make all my systems default to the MCE 'Royale' theme, because hey, it's nicer. You can increase the maximum TCP connections (instead of patching later); you can enable the uxtheme.dll patch to support non-signed themes. Change default preferences, like disabling theme support entirely, turning off animated menus, setting the default folder view, and others. Remove services you don't need.

      I've managed to strip down a 680 MB XP Pro SP2 disc to a 150 MB SP3 disc; at the same time, I configured it for an automated install (with the exception of choosing partitions), I added custom themes, I added drivers for the ethernet cards, video cards, and sound cards I use (including drivers for Parallels and VMWare), and bam. A Windows CD customized precisely for you.

      You also save a HUGE amount of space on-disk after install, the install takes less time (a timed test in a VM went from 1.5 hours to 10 minutes).

      It's an amazing little tool, and I can't compliment the author enough, other than by letting people know.

      Of course, if you have Vista but want to fit it onto a CD instead of filling a DVD, you can check out vLite also. Strip out all the crap you don't need, and save a ton of time.

    3. Re:I've already built a slipstreamed SP3 machine by Sentry21 · · Score: 1

      Just to give you an idea, most of the computers at the organization I work at are running XP SP1. Suffice to say, upgrades are the least of our concerns. :/

    4. Re:I've already built a slipstreamed SP3 machine by SheeEttin · · Score: 1

      --They didn't add too many drivers: SP3.CAB (which presumably includes all the contents of SP2.CAB) is only 19587 KB in size, a mere 7 percent larger than the SP2 driver file released in August 2004.
      Are you seriously basing your opinion on drivers on file size?!
      Good god, man.
  37. Why not just release it? by IntelliTubbie · · Score: 1

    They can always fix the bugs in SP4. :)

    Cheers,
    IT

    --

    Power corrupts. PowerPoint corrupts absolutely.

  38. Re:XP SP3 = "Vista Migration Plan" by mweather · · Score: 1

    It seems you are confusing the end of support with the end of retail and big brand OEM availibility.

  39. Re:XP SP3 = "Vista Migration Plan" by mweather · · Score: 1

    How does that work? I know Dell and some other OEM were doing that, but I don't want to buy a computer.

  40. Not the real reason by Save_Clippy · · Score: 1

    The biggest "bug" that they need to fix is that SP3 makes XP run even faster now than Vista.

  41. Re:Proper prior planning prevents poor performance by porl · · Score: 1

    yes, i think it does speak volumes. this is a product they have *complete* internal access to, and they still only find out about the fact that it is completely incompatible with another major piece of software they have *complete* access to right before official launch. it shows that they don't even test their releases against all their own software properly, let alone major software from other vendors. i would like to know how many other pieces of software are affected but not known yet. if they can't keep compatibility with an up to date copy of software they have complete control over this late in the release, how can i be sure that all the other software we use here will work properly? yes, we will of course test things before we push it out officially, but it doesn't leave me too confident.

    porl

  42. Broke software??? by erat123 · · Score: 1

    SP3 apparently broke a Microsoft application, Microsoft Dynamics Retail Management System. What happens if I install Dynamics Retail Management after installing sp3???
  43. Re:Proper prior planning prevents poor performance by Kunnis · · Score: 1

    My guess is that the issues are more about the software requiring bug-specific behaviors. I had an opportunity to speak with one of the OS people a long time ago, they said that "Long Ago" Lotus 1-2-3 had a nasty habit of writing to files after Lotus told the OS to close the file handle. In the older versions of the OS, the OS didn't check to see if you were writing to a closed file handle, and wrote to the closed file. Then you update to the latest version of DOS, and all the sudden it breaks Lotus because now the OS cleans up after itself and correctly returns an error when you try writing to the closed file handle (which is probably ignored by Lotus, causing the save file to be corrupted somehow). Now who do you blame? MS for not getting the API right in the first place, or Lotus 1-2-3 for writing to the closed file handle, or MS fixing a bug? From what I remember, MS ended up adding code to detect that the application was Lotus and switching into a quirks kind of mode. Having to write fixes for all these crappy applications is why Windows is a POS. More towards the issues with drivers. A friend of mine's printer driver broke with XP SP2. We found out that how the printer driver worked was it has a service that hosted an application that spoke to the printer, and the driver spoke to the local application via TCP. MS firewall blocked it (cause open ports can expose vulnerabilities). I blame the printer company for writing a crappy 50meg printer driver that requires a network connection to print locally, not MS.

  44. Re:You mean this one? by justinlee37 · · Score: 1

    Is this legit or is it a w0rm or tr0j4n? Anyone care enough to check? I don't, I'm running 64-bit Windows Vista. How else would I take advantage of my DirectX 10.1 compatible Radeon 3870x2 and my 2x2GB Corsair "Dominator" DDR2 System RAM?

  45. XP will die, Vista will be adopted by justinlee37 · · Score: 1

    Why, you ask? Because gamers and enthusiasts are always on the bleeding edge in terms of graphics technologies, and Microsoft, in their profane, demonic genius, have made DirectX 10 only available on Vista. In other words, for me to get the biggest bang for my buck out of a current-generation card (in my case a Direct X 10.1 compatible, Radeon 3870x2), I have to run Vista. Additionally, while this is not a Vista-specific feature, I'm running a 64-bit OS to take advantage of 4gb of system RAM (2x2GB Corsair "Dominator" 1066mhz DDR2).

    Now, the earliest Vista adopters will be gamers and the like -- this is a large target market, and practically 100% of it is guaranteed to move to Vista solely due to DirectX 10. They will help float the company until the more widespread adoption of Vista begins. See, as computer hardware continues to develop, it will become cheaper and more common to have ~2GB of system RAM; current-generation DirectX 10 cards selling for $400 will fall in price to $100 or $50; in other words, the falling price of hardware will make adopting Vista in the future easier. Now, since we're in the future, Microsoft's support for Windows XP has long expired. This means that a wide array of new hacks that compromise the operating system will begin to emerge, as is the usual, except in this case Microsoft won't fix them because XP is no longer "supported." So, assuming you can even find a copy of XP to install, you're essentially installing an inferior product due to discontinued development. Now, also because we're in the future, Crysis probably costs about $20. The budget computer you just bought for $300 is capable of running it. Are you going to pass up the opportunity simply because you don't like M$, and refuse to install Vista? For most, the answer is no. Why? Well, not installing Vista would be harder than installing it (you'd have to find an XP copy, or god forbid, learn Linux), and it would also be less beneficial. Not to mention that many of the early adopters we mentioned earlier (those graphics obsessed gamers) are generally considered the "technically literate" in the social circles they travel in. In other words, people will ask them their opinion of Vista. And since they've used it, they'll tell all of their friends who are considering it that it works great!

    Now, let me say that, as an enthusiast, I'm entirely satisfied with Vista SP1. A list of common applications that work in Vista so far has included Hamachi, Steam, Catalyst, Daemon Tools Lite, Azureus, Soulseek, iTunes, Firefox, Avast! Antivirus, Adobe Reader, and WinRAR. Vista was certainly cumbersome on it's initial release, but it is now quite palatable. It even came with the drivers for my Realtek onboard sound already installed, which was impressive, as I have tried to install the Realtek drivers manually on many motherboards and XP installations, usually to such complete, utter, and stunning failure that I ended up just buying a $30 Soundblaster Audigy to stick into any computer whose onboard sound refused to function.

    1. Re:XP will die, Vista will be adopted by The+Gaytriot · · Score: 1

      I consider myself an enthusiast but I'm not adopting Vista until I have absolutely no alternative. I've already moved to Linux for a lot of my computing needs, but I'll probably never be able to move over completely because of the lack of game support. The only reason I would have moved to Vista was to play Crysis in all its glory, but it turns out you can run all the DX10 features in Windows XP AND get better frame rates. As you said, as an enthusiast I want to get the most bang for my buck, but that seems to go against Vista. I don't want a machine that's having its resources hogged up by a crappy OS. That's like buying a Ferrari and loading it down with sandbags. However I do definitely like the move to 64-bit, that's an improvement. Right now my computer shows 3.25Gb of my 4Gb of RAM (only cost $75 for 4 gigs too).

      --
      Srsly u guys. U guys, srsly.
    2. Re:XP will die, Vista will be adopted by justinlee37 · · Score: 1

      but that seems to go against Vista. I don't want a machine that's having its resources hogged up by a crappy OS

      But it isn't crappy and it doesn't hog. You can't just trust reviewers to be objective without trying it yourself.

    3. Re:XP will die, Vista will be adopted by The+Gaytriot · · Score: 1
      I'll concede that Vista isn't a crappy OS, but I still can't say it's not a resource hog. I do own Vista Ultimate and it sits largely unused because XP still beats it out for gaming. I don't mind using it, it feels snappy and as of February I have all of the drivers I need and don't get many BSODs but just look at your CPU and memory utilization and see how much resources Vista is eating up. This is even after disabling all the unnecessary features I could disable, making it look just a little better than Windows 2k, and that did cut down on resource use.

      As far as gaming is concerned, it's going to be a while before Vista will reach the level of acceptance that XP has achieved. Stability issues in games and poor performance with (for the most part) very little appreciable increase in eye-candy are major detractors.

      --
      Srsly u guys. U guys, srsly.
  46. DEVELOPERS by icsx · · Score: 1

    Developers, Developers, Developers, Developers! *Chairs flying in the air at Redmond*

  47. Re:XP SP3= sabotage by Icarium · · Score: 1

    Not as tempting as you may think. You and I are not MS's main customer base, businesses are. And unlike you or I, businesses running hundreds/thousands/++ of XP installations are not just going to shrug and cough up the cash involved in migrating.

  48. Re:XP SP3 = "Vista Migration Plan" by Smidge207 · · Score: 1

    It seems you are confusing the end of support with the end of retail and big brand OEM availability.

    --
    Is it just my observation, or is eldavojohn an idiot?
  49. Microsoft says Upgrade to vista by gravis777 · · Score: 1

    "What, a Microsoft program stops working in XP? Strange, there is no issue in Vista. Just upgrade to Vista, and all your problems will be solved. May I intrest you in the Ultimate Edition? We are running a special today, $5 off if you order in the next 5 minutes."

  50. Not WINE, Vista by swb · · Score: 1

    A cynical part of me wonders if SP3 contains breaking changes to make life harder for WINE, and possibly other solutions.

    I know it crushes the fantasies Linuxites have, but MS could give a shit about W(h)INE.

    MS wants XP broken in favor of *Vista*. If SP3 becomes mandatory (ie, remove other hotfixes and make only SP3 available or make SP3 required for some Genuine Advantage "upgrade") and SP3 becomes known for making XP work worse or slower, it has a good chance of making Vista look better and possibly start gaining people willing to upgrade.

    Other than new systems purchased at retail by consumers, Vista has been a colossal failure and MS wants/needs new technology uptake to keep the wheel turning. Sabotaging XP is an excellent way to do this.

  51. As opposed to breaking a rival/old M$ application by paratiritis · · Score: 1

    in which case it would be rushed to market. Actually it is probably meant to break an old MS product- XP itself, and bring it down to the level of Vista, or lower (which, I concede, would take significant effort)

  52. Re:XP SP3 = "Vista Migration Plan" by petermgreen · · Score: 1

    you will still be able to get system builder packs until next january and vista buisness and ultimate OEM come with downgrade rights (though in some cases they may be a pain to excercise)

    and the bottom end of volume licensing (open license) is only 5 machines iirc.

    --
    note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
  53. Re:XP SP3 = "Vista Migration Plan" by petermgreen · · Score: 1

    note: you only get the downgrade rights with OEM copies, not retail copies. Yes I think this is crazy.

    To perform the downgrade you use either a disk supplied by your OEM (probablly the preffered option), use your volume license media or use your media from an existing system (though this last option is likely to require a telphone activation)

    note that system builder (whitebox OEM) packs for XP remain availible from MS until january and there is nothing preventing stockpiling of retail or whitebox OEM copies.

    --
    note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
  54. I hate being right. by ebbomega · · Score: 1

    Really I do

    I don't see why I got modded as flamebait. The complaints are perfectly valid, and lo and behold I was right.

    Not saying that there aren't other OS's that have these problems off the bat, but really Windows has historically been the worst, either with releases or with Service Pack upgrades.

    --
    Karma: Non-Heinous