Slashdot Mirror


Microsoft Pulls Broken XP Update

Cally writes "Yahoo! reports that Microsoft have pulled a Windows XP update from the Windows Update servers after it killed network access for some users of the claimed 600,000 who installed it. (Does this mean only 600,000 XP users trust Windows Update?) The story hints that the problem was something to do with VPN or IPSec drivers clashing with Symantec software - however I haven't found anything about this on the Microsoft KnowledgeBase (the link Yahoo provide goes to the generic support home page.) Anyone got more info?"

96 of 478 comments (clear)

  1. updated link by Carl_Cne · · Score: 4, Informative

    try http://support.microsoft.com/default.aspx?scid=kb; en-us;818043

  2. windows update by satanicat · · Score: 5, Funny

    windows mustive been getting too stable. .

    Do they have any sort of quality control?=)

    --
    How Now Brown Cow
    1. Re:windows update by BrokenHalo · · Score: 2, Insightful
      One does wonder...

      Does this mean only 600,000 XP users trust Windows Update?

      Probably only 600,000 users actually bother to use the updates. I know any number of people who just use the software that came on their Win98 CDROM, it never even occurs to them to update their software. Like all the academics at my university using Netscape 4.7x with MacOS 9.1.

    2. Re:windows update by Anonymous Coward · · Score: 3, Funny

      No shit. As the CEO, CTO and CIO of Standard Oil Co. I can confirm that when we replaced our Firewall with a Tandy TRS80 colour computer running TRSDOS our hacking attempts were reduced by 105%. Our revenue streams have also increased 97% and the junior messenger in block 3E has gotten laid. I uncovered the Ark of the Covonent after an epic battle of good and evil with 4th Reich Nazis in the Nirobi desert, and my ex-wife has taken a vow of silence as a Bhuddist Nun.

      Without the Tandy Color Computer none of this would have been possible. You just cant equal that with Debian or Gentoo!

    3. Re:windows update by Debian+Troll · · Score: 2, Funny

      Damn, I just re-read your post and realised I'm feeding a troll... Oh well: tough. Yeah, you'd sorta figure the name 'Debian Troll' would give it away, huh?

    4. Re:windows update by Jondor · · Score: 2, Interesting

      off course, then again, netscape 4.7 was the last one to support for example roaming access using an LDAP server or mod_roaming under apache.. A very usefull feature for those who use many different machines.

      You know, there ARE other reasons not to join the upgrade ratrace..

      --
      Nobody expects the spanish inquisition!
    5. Re:windows update by Sazarac · · Score: 5, Funny
      As an IT professional/developer with 130 wintel boxes in my charge, I just want to say thanks to Microsoft for giving me something to fill up the otherwise boring hours of my employment with endless regression testing to make sure everything works with everything else. It's not as if I'm AT ALL busy with keeping everything running anyway. Not to mention writing new code that compiles and runs fine on Win2K but randomly throws exceptions on NT.

      != ("Not!")

      Sheesh... I'm gonna quit my job and start a new thrash band called Rage Against The Butterfly

      --
      This sig is exempt from disclosure under the privacy Act of 1974.
    6. Re:windows update by El · · Score: 4, Funny
      Do they have any sort of quality control?

      Yes, they've got a huge installed user base that reports problems very quickly... why should that pay people to find bugs, when there are 600,000 people willing to pay them for the priviledge of beta-testing their software?

      --

      "Freedom means freedom for everybody" -- Dick Cheney

    7. Re:windows update by mcrbids · · Score: 4, Interesting

      I know any number of people who just use the software that came on their Win98 CDROM, it never even occurs to them to update their software.

      Ummmm, yeah!

      People think of a computer like a machine. Like a car, or a boat.

      Do you take your car in to have the Catalytic converter "upgraded" every year?

      Do you subscribe to an "update service" to update the embedded firmware on the onboard computer?

      Why would you do this? Why should they?

      --
      I have no problem with your religion until you decide it's reason to deprive others of the truth.
    8. Re:windows update by Keeper · · Score: 3, Insightful

      That's just it -- it didn't effect that many people. Of the 600,000 people who downloaded it, only a "small handful" of people had a problem -- not all 600,000. Now, what quantity a small handful is according to the guy making the statement I do not know, but I doubt it's a significant percentage of the 600,000.

      I mean, think about it ... how many possible PC configurations are there out there? How many different versions of drivers for each piece of hardware? How many different combinations of software can be installed on each of those combinations? It is not possible to test each and every possible combination. This is not to say that you don't test all sorts of configurations, but you can't hit them all.

      If it were such a "simple error", it would have happened to ALL of the 600,000 people who downloaded the update. Crap happens. QA isn't an exact science -- there is no algorithm you can follow to make sure you find 100% of all bugs in existance. The best you can do in this case is find the problem and make sure you test for it in the future.

  3. If only they had apt-get by Debian+Troll · · Score: 5, Funny

    I am currently porting apt-get to Windows. This will mean that these types of embarassing security breaches never happen again. apt-get is the answer to all of today's problems.

    1. Re:If only they had apt-get by Saint+Stephen · · Score: 5, Informative

      I got tired of apt-get blowing up my unstable Debian, so I wrote this to make it transactional:

      sub=dists/latest/binary-i386
      dt=`date +"%y%m%d_%H%M%S"`
      cd /data/apt
      dpkg-scanpackages latest /dev/null > $sub/Packages
      grep -Ex "Filename: latest/.+" $sub/Packages | sed "s/Filename: latest\/\(.*\)/\1/" > old/L$dt
      pushd $sub
      rm Packages.gz
      gzip Packages
      popd
      mv latest $dt
      mkdir latest
      for x in `cat old/L$dt`; do mv $dt/$x latest; done
      if [[ `ls $dt | wc -l` -eq 0 ]]; then rm -r $dt; fi

      If it blows up, I can easily roll back, and keep a history of all the intermedate versions.

    2. Re:If only they had apt-get by Debian+Troll · · Score: 5, Funny
      I got tired of apt-get blowing up my unstable Debian, so I wrote this to make it transactional:

      Your code looks very interesting, and would make a fine addition to the new Windows version of apt-get which I have almost finished writing. It is crafted in MMX/SSE accelerated x86 assembler, so it runs really fast! You will, however, need to port your nice Java program to assembler. I am also looking for people to help out with the GUI front-end to win-apt-get, which is based around a helpful paper clip character called 'Klecker'. When the user requires an update, they 'Klick' on 'Klecker', and he helpfully tells the user to "Fuck off and read the manual you filthy Windoze luser", or to "Take a fucking number and wait for win-apt-get stable to be released in 2017".

    3. Re:If only they had apt-get by subreality · · Score: 5, Funny
      Hah, you BSD people are so behind the times.

      subreality@underminer:~$ apt-get cure-world-hunger

      Your ports tree can't do that. No wonder BSD is dying.

      :-)

    4. Re:If only they had apt-get by GroovBird · · Score: 2, Insightful

      You should know better than to make fun of Joel 'Espy' Klecker, to whom the Debian 2.2 release is dedicated.

      Just a thought.

      Dave

    5. Re:If only they had apt-get by phoenix_rizzen · · Score: 2, Funny

      # pkg_add -r world-peace

      Works like a charm here.

    6. Re:If only they had apt-get by tres · · Score: 4, Funny
      Yeah, but try this with apt-get

      • /home/tres:$ sudo pkg_delete osama_bin_laden-1.2

        pkg_delete: couldn`t entirely delete package (perhaps the packing list is incorrectly specified?)

      oops...
      well then, we have:
      • /home/tres:$ sudo pkg_delete saddam_hussein-1.4_4

        pkg_delete: couldn`t entirely delete package (perhaps the packing list is incorrectly specified?)

      hmm... well we couldn't get those done right, but we can fix some other things:

      • /home/tres:$ cd /usr/ports/us/liberty

        /usr/ports/us/liberty: $ make install clean

        ...

        can't find dependency: bill_of_rights.so

      I know it was there just a little while ago. grr...

      Ha! I know how to fix it!

      • /home/tres:$ sudo portupgrade president-43_b
      Oh yeah! Try that with apt-get :-)

      --
      Notes From Under *nix: blas.phemo.us
  4. Link has a typo. by nlinecomputers · · Score: 2, Informative

    Not sure but I think this is the link. Does not mention that it is pulled though.

    http://support.microsoft.com/default.aspx?scid=k b; en-us;818043

    --
    Slashdot, home of supporters of free software, free music, and free speech.Except for Moderators that disagree with you.
    1. Re:Link has a typo. by mattrix2k · · Score: 2, Informative

      Clickable (link to MSKB article)

  5. That's the problem with automatic patching by Tsu+Dho+Nimh · · Score: 5, Insightful

    If XP is allowed to go find its master and patch itself, any problem with a patch will spread widely to the people least able to deal with it.

    At least this patch made it perfectly obvious that it had a bug.

    1. Re:That's the problem with automatic patching by DShor · · Score: 5, Informative

      To the best of my knowledge, the auto-patch would not download this as it was a "security improvement" not an "urgent repair". The only people who would get affected by this are the ones who manually downloaded it themselves.

      --


      Why is it that people always hear what I say, and not what I mean?
    2. Re:That's the problem with automatic patching by Helmut+Kool · · Score: 5, Funny

      "Security improvement"? I guess it improves security dramatically if it kills the network access. Thanks, Microsoft!

    3. Re:That's the problem with automatic patching by ForNext · · Score: 2, Insightful

      Here is a novel idea......make a better product so there is less need for the constant patching for "security improvement" and "urgent repair". When was the last patch to give the user more bang for there buck....instead of ~ohh~ let me go back and fix what I should have given you to start with.

      --
      SELECT Intelligence FROM tblWisdom WHERE 'Knowledge' = 'Power';
    4. Re:That's the problem with automatic patching by Alsee · · Score: 2, Funny

      I hear their next patch improves on this already impressive security, it shorts your power supply causing the PC to turn off, you can't get much more secure than that!

      Sure you can! Don't you know that 90% of all security vulnerabilities lie between the chair and the keyboard? The Third Generation Security Patch eliminates this vulnerability by shorting the powersupply to the keyboard before it destroys the computer.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
    5. Re:That's the problem with automatic patching by angst_ridden_hipster · · Score: 2, Insightful

      Easy to say.

      Not easy to do.

      Think about it. QA on Linux has the advantage that the first "users" of any new module/driver/system are actually developers and other savvy users. Many bugs get worked out relatively early -- certainly before they get rolled into a stable distribution.

      The Windows OS has to support a nearly infinite variety of hardware, and. It doesn't have the same first-tier of support. Sure, it has beta testers, but, by and large, they aren't developers. They certainly can't tweak the source.

      But even then, security is not easy. Think about Open BSD. This OS's community prides itself on its approach security, and they do a very good job. But occasionally, things sneak by (i.e., the SSH remote exploit of a year ago).

      So it's nice idea to just do things right the first time. But you can't just make the decision "hey, from now on we're gonna do things right" and have the problem miraculously solved...

      --
      Eloi, Eloi, lema sabachtani?
      www.fogbound.net
    6. Re:That's the problem with automatic patching by CoolQ · · Score: 2, Funny

      > "Security improvement"? I guess it improves security dramatically if it kills the network access. Thanks, Microsoft!

      How much do you want to bet that it still allows inbound SMB and Windows Messenger? :)

      --Quentin

  6. Why is this news? by 1g$man · · Score: 3, Insightful

    Has a Linux, or FreeBSD patch ever been pulled because it was broken? *yawn*

    I'd say it was a slow news day, but it ain't even daytime yet.

    1. Re:Why is this news? by arivanov · · Score: 4, Interesting

      Yes. Look at the "do not use" and missing kernel numbers on www.kernel.org and "Heads UP" announcements on bsd-current.

      --
      Baker's Law: Misery no longer loves company. Nowadays it insists on it
      http://www.sigsegv.cx/
    2. Re:Why is this news? by mblase · · Score: 4, Interesting

      The second-to-last Mac OS X update had a glitch where, on many portables, it would reset the system clock to the epoch on restart. The update after that corrected the problem, of course.

      This is somewhat minor compared to losing network access, but only somewhat. This sort of thing happens often when OS updates move from the lab to the real world, and the fact that Microsoft responded the way it did should be considered a virtue rather than a vice.

    3. Re:Why is this news? by theCoder · · Score: 5, Informative

      True enough, but then again, I heard this story on NPR on my way to work today, so it's only natural that /. would carry something about it.

      But you're right, this does remind me of the kernel-that-never-should-have-been. I don't remember the version number (it was in the 2.4 series), but it was the one that corrupted your drives when you unmounted them. Of course, IIRC, that kernel wasn't pulled, the next version was just released very quickly. You can still get that kernel version if you really want to corrupt your data :)

      --
      "Save the whales, feed the hungry, free the mallocs" -- author unknown
    4. Re:Why is this news? by ch-chuck · · Score: 2, Insightful

      Because it's a screwup by the richest folks in the world. They keep telling us they have such a monopoly because the educated consumer market freely choose their products as 'better' than alternatives. We keep insisting they keep their cash cow monopoly because their products are automatically bundled in with each and every Intel PC sold, whether the customer wants it or not, and that just gets the foot in the door so they can lead the gullible by the nose down the primrose path to the rest of their crappy, insecure offerings.

      Anyway, hopefully this is yet another incident that tips a few more to 'switch'.

      --
      try { do() || do_not(); } catch (JediException err) { yoda(err); }
    5. Re:Why is this news? by rjamestaylor · · Score: 2, Insightful

      Good thing we have the chance to pay for a professional OS and for professional regression testing. Thanks, Microsoft, for saving us from shoddy, untested software.

      --
      -- @rjamestaylor on Ello
  7. Hmmm....I wonder why... by Howard+Beale · · Score: 5, Insightful
    "Most systems didn't crash; they simply lost network connectivity," said Michael Surkan, a Microsoft program manager for its networking communications group. "There were hundreds of thousands of people who downloaded this, and we know of only a handful of people who had the problem."

    Maybe because they couldn't get online to report the problem???

    1. Re:Hmmm....I wonder why... by johndiii · · Score: 4, Interesting

      According to the article, "Because the software update was considered a security improvement and not an urgent repair, it was available only to customers who specifically visited the Windows Update site Friday. Other repairing patches can be delivered automatically to consumers." This one was not automatically installed.

      Which is not to say that automatic update is not a potential source of major problems. QA needs to be really good for something like this, which it clearly was not.

      --
      Floating face-down in a river of regret...and thoughts of you...
  8. Old news by rjch · · Score: 5, Insightful

    Unfortunately, it's something we've all heard before. I'm a recent entrant to the world of tech support, and the company I work for (much like many other large companies) refuse to touch a new Microsoft OS until it's been through at *least* one, preferably two service packs. Likewise, updates that Microsoft class as "critical" are not to be installed for at least a fortnight, unless they are for serious security holes with known exploits. Whilst I think this is probably a rather conservative approach, it sure as hell is better than having the network crash down around you. I believe this company was bitten badly by such a problem with a patch a couple of years ago, hence their policy on updates.

    1. Re:Old news by Blue+Stone · · Score: 3, Funny
      "I don't know where you're from, but no one uses that term in North America"

      and

      "Don't be so arrogant."

      Let me introduce you to the concept of irony.

      --
      Corporation, n. An ingenious device for obtaining individual profit without individual responsibility. - Ambrose Bierce
  9. Not News by 4of12 · · Score: 4, Interesting

    In real life, people don't trust MS patches until they've tested them on their own systems with their own application mixes.

    Until MS raises their quality assurance and testing to a higher level than it is now, knowledgeable system admins, responsible for managing lots of Windows systems in their environments, will continue not to trust Windows Update.

    --
    "Provided by the management for your protection."
    1. Re:Not News by mobiGeek · · Score: 2, Funny
      In real life, people don't trust MS patches until they've tested them on their own systems with their own application mixes.
      • Since when does a properly managed IT infrastructure qualify as "real life"?
      ...knowledgeable system admins, responsible for managing lots of Windows systems...
      • Since when does a knowledgeable system admin manage an MS-Windows system?
      • Since when does a system admin manage lots of MS-Windows systems (unless you define the terms lots or manage very differently than do I...)
      :-)
      --

      ...Beware the IDEs of Microsoft...

  10. Re:Maybe its not on KB because nobody is at work? by BabyDave · · Score: 5, Funny
    It is 5am in the morning.
    Which is different to 5am in the afternoon ...
  11. More Slashdot Sensationalism by Anonymous Coward · · Score: 5, Insightful

    Does this mean only 600,000 XP users trust Windows Update

    What do you think is more likely: "only" 600,000 people trust Windows Update or everyone else just hasn't patched for checked for patches yet? I personally don't use the little auto-notification thingie, I just check every once in a while.

    Also, how is this different from any automated Linux update method? Software has bugs. Patches may have bugs. Regardless of vendor, patches are not perfect and may induce problems.

    Agree or disagree with me, when you think about it without bias it's true.

    1. Re:More Slashdot Sensationalism by knick · · Score: 2, Insightful

      Most of them are peer-reviewed AFTER the fact, because the whole Linux community is hell-bent on releasing their patches in 4 hours, just to show how much better they are then MS. If mistakes are made, they are usually found after the release.

    2. Re:More Slashdot Sensationalism by PetiePooo · · Score: 4, Insightful

      I think the reason most people here are bitter is the way MS is micro-controlling their patch distribution.

      If (insert your favorite distro here) releases a bug fix, its generally well documented, you get the source if you really care, and you can know exactly whats going into your system.

      If MS releases a bug fix, the only way to retrieve it is through Windows Update, you don't know what else they slipped in, you often must have all the other service packs/hotfixes installed first, and (this is the really irritating part) it may change your EULA if you choose to install it. If you don't accept the new EULA, you don't get the exploit-fixing critical update you must have to keep your server clean.

      I like and use both MS products and Linux, but severly dislike MS's tendency to grab as much control as they can get away with. They grab until there's a user backlash and either ignore it or back off just enough so it looks to the press like they're the good guys for making a concession.

    3. Re:More Slashdot Sensationalism by Cedric+C.+Girouard · · Score: 3, Insightful
      Also, how is this different from any automated Linux update method? Software has bugs. Patches may have bugs. Regardless of vendor, patches are not perfect and may induce problems. Agree or disagree with me, when you think about it without bias it's true.


      I'll agree with you on the bias issue. Slashdot for all I can remember (which is a couple of years) was not pro-microsoft. I'm not speaking for anyone, just stating a fact.

      But there is a difference between Microsoft and where with Windows Update, you have paid for the update service, and you should expect at least a minimum of Q&A done to a patch. With Linux, well... I can remember some packages I installed in which they gave you a very explicit warranty : This might screw you up, we're not responsible if it does.

      I've always installed packages on Linux with this in mind. This might not be the best mentality if we really want Linux on the desktop, but at least, I know what I'm getting myself into.

      MS Update makes it seem like everything was double-checked for you, and all is well and good to install... MS even goes so far as to recommend URGENT patches, which may or may not leave you worst off... And this you (should have) paid for. So yes, there is a difference, bias or not, since I paid money for my MS release, whereas my RedHat is downloaded and free... So yes, I should expect working patches from MS, and not expect RedHat to give me the time of day if they dont feel like it.

      'nuff said.

      --

      Marriage is considered capital punishment for the theft of a goat in some third world countries...

    4. Re:More Slashdot Sensationalism by crawling_chaos · · Score: 3, Insightful
      Software has bugs. Patches may have bugs. Regardless of vendor, patches are not perfect and may induce problems.

      You're correct, but one of the reasons Microsoft has given in the past for being slower on security updates than the Open Source community is that they have a much more rigorous regression testing procedure that must be run before release. The idea is to make sure that something like this never happens. It is one of the ostensible reasons that you pay so much more for Windows. If the extensive test procedure is no better than Red Hat's or SUSE's, then that proposition kind of goes up in smoke.

      --
      You can only drink 30 or 40 glasses of beer a day, no matter how rich you are.
      -- Colonel Adolphus Busch
    5. Re:More Slashdot Sensationalism by lpret · · Score: 4, Insightful
      But there is a difference between Microsoft and where with Windows Update, you have paid for the update service, and you should expect at least a minimum of Q&A done to a patch.

      I assume your speaking of paying for Windows XP when you say that you've paid for the update service, or else someone really ripped you off. If that is indeed what you are referring to, then I have an issue with Mandrake, Red Hat, and SuSe because I did pay for them (support the cause and all) and although you say "I can remember some packages I installed in which they gave you a very explicit warranty : This might screw you up, we're not responsible if it does. " -- this is exactly what Windows Update says in it's EULA.

      So, I would say that Microsoft does a better job in this aspect. Also, you're going to knock Microsoft because they are pro-actively getting people security updates? Wow, this seems to me like a better way, because we all know that many exploits have actually been patched, it's the sysadmins who don't patch their systems that get hacked.

      I know we're supposed to be Anti-MS here and all, and I generally am, but please, don't throw out logic and reasoning when attacking the giant.

      --
      This is my digital signature. 10011011001
  12. Palladium Pre-Testing by heretic108 · · Score: 3, Insightful

    Part of the pro-Palladium spin is that it will stop people infecting M$ machines with worms.

    But that would leave a major gap which, according to this story, has been admirably filled.

    Trusted computing - only trust the worms written and distributed by MS itself.

    --
    -- In the beginning was the WORD, and the WORD was UNSIGNED, and the main(){} was without form and void...
    1. Re:Palladium Pre-Testing by DShor · · Score: 4, Interesting

      In fact, there was an exploit in a previous version of MDAC (Microsoft Data Access Components) that was later patched, but someone could exploit patched users by pushing the unpatched MDAC from their web sites. If anyone had selected to always trust Microsoft for downloads, it would be downloaded and installed without ever notifying the user.

      --


      Why is it that people always hear what I say, and not what I mean?
  13. In Tomorrow's News by AndroidCat · · Score: 5, Funny

    A new worm has begun infecting XP systems that didn't install the latest patch. "It's their own fault, they should have kept up to date" said BG.

    --
    One line blog. I hear that they're called Twitters now.
  14. Re:Microsoft Security by Dot.Com.CEO · · Score: 4, Informative
    RTFA. I mean it is not entirely your fault, the idiotic "reporting" of "news" from michael leaves a lot to be desired, but in the article, as well as in the three line summary to which you reply, there is a mention of some people only losing network connectivity after installing the patch. Actually READING the article (a novel idea, but bear with me) renders the following:

    ""There were hundreds of thousands of people who downloaded this, and we know of only a handful of people who had the problem."

    --
    Mother is the best bet and don't let Satan draw you too fast.
  15. Before you all complain about auto update... by 26199 · · Score: 5, Informative

    The article says that since this wasn't a critical patch, just an 'improvement', auto update doesn't install it.

    1. Re:Before you all complain about auto update... by Timesprout · · Score: 5, Funny

      What the hell are you doing !! Get a hold of yourself man and stop trying to point out the facts in this story. Most posters so far have already managed to increase MS's few reported cases to 600,000 broken updates. Let them have their fun.

      --
      Do not try to read the dupe, thats impossible. Instead, only try to realize the truth
      What truth?
      There is no dupe
  16. Re:Microsoft Security by AndroidCat · · Score: 4, Insightful

    If those people lost network access, how would Microsoft know? ;^)

    --
    One line blog. I hear that they're called Twitters now.
  17. Personal Experience by aaaurgh · · Score: 5, Interesting

    All I know is that, having decided to pull down some of the critical updates (not on auto, you understand) I can no longer get the properties window to appear for a directory in Explorer, except in safe mode. Kind of makes it difficult to administer security that does; oh and the performance went down a heap too. Even tried backing them all out too, but the system restore was disabled - too little disk space apparently, nice of it to tell me in time(!).

    Only four hours ago, I was on the phone to MS support. If the p.c. is started with only MS services enabled (there's only Norton or MS ones on this machine) via the msconfig utility, everything is fine. If I disable all the non-MS services in the services window though and do a normal restart, everything is broken again - duh!

    I'm going to try unloading/reloading all the Norton stuff again but don't hold out much hope. Oh well, looks like I'm up for another rebuild, the sixth in five months... and no, I won't be using the updates in future

    --

    Go permanent? In your dreams and my worst nightmares.
  18. Geez by Quill_28 · · Score: 5, Insightful

    >Does this mean only 600,000 XP users trust Windows Update?

    Umm... NO. It doesn't.

    And stop taking cheap shots at MS, it just make you look like a whiny school kid.

    There is plenty of reasons to bash MS policies and software, but the signal-to-noise ratio is getting silly.

  19. Software Update Services... by jamesh · · Score: 5, Insightful

    ... allows an admin to release patches to users when they have tested them. SUS retrieves patches from Microsoft. An Admin approves them. Client PC's (with an appropriate Group Policy) retrieve and install approved updates from the SUS server. Easy.

    If you're paranoid^H^H^H^H^H^H^H^Hsensible, wait a week or more to give the rest of the world time to find bugs, test the patch thoroughly in a test environment, and of course ask yourself if you actually need it.

    ps. how many of todays slashdot readers know what ^H means?

    1. Re:Software Update Services... by SkArcher · · Score: 2, Informative

      ps. how many of todays slashdot readers know what ^H means?

      Telnet backspace echo

      Man, I miss MUDing

      Anyhow, to respond to your point - independently test bedding M$ updates certainly sounds like a good idea, but it either means 1- A seperate testbed machine or 2- using a standard machine for the process.

      1- requires a fair ammount of money in the company, while 2- still has the possibility of nixxing one machine

      It's still a good idea though :)

      --

      An infinite number of monkeys will eventually come up with the complete works of /.
  20. attribution by Cally · · Score: 4, Informative

    Story submitter here - I forgot the attribution (my bad); I picked this up from the Full Disclosure mailing list, specifically, this post by Richard M. Smith.

    --
    "None are more hopelessly enslaved than those who falsely believe they are free." -- Goethe
  21. Um by Obiwan+Kenobi · · Score: 2, Funny

    (Does this mean only 600,000 XP users trust Windows Update?)

    Or does it mean that after a hundred thousand complaints they pulled it from the site?

    *SLAP*

  22. Windows Update is buggy by delfstrom · · Score: 2, Interesting

    Windows Update is flawed. I did a search the other week to find out more information on why some of our Windows 2000 workstations were suggesting old patches needed to be applied.

    For example, I've downloaded, installed, and rebooted as required for the security update from Feb 13 for MSXML 4.0 and the bloody thing still keeps coming back!

    Now I've got ones from April and later that keep returning like zombies to haunt me. You'd *think* that it would be simple... but noooo.

  23. It wasn't just Symantec by Anonymous Coward · · Score: 5, Informative

    Yet another example of MS trying toi pass the buck and dodge the bullet...

    I had NO symantec s/ware on my system, (I use Mcafee) and I lost all networking / internet access.

    Also, the Yahoo article says that the update had to be removed which is bull$hit, the update could NOT be removed, and the only way to fix my system was to re-install and re-update Windoze.

    MS said only a small number complained, well, I did, and a couple of days later the update was pulled, no reply to my email though, not even a thank you or aknowlegment - typical MS =O(

    fLaMePr0oF

    1. Re:It wasn't just Symantec by Johnny318 · · Score: 5, Informative

      On Friday 5/23 I had a customer complain that our wireless DSL was down. After doing all the usual junk over the phone, I drove out there and checked all wires, etc. Nothing. His machine was grabbing an IP dynamically, so the wiring HAD to be correct. I asked him, "When is the last time this worked properly?" and he said Wednesday (5/21). I was about to uninstall his virus checker (Mcafee online), but first went into the XP System Restore utility, and I noticed a restore point on Wednesday due to the installation of a Microsoft update. I restored to the way the system was before Wednesday and everything worked great! Unbelievable. Microsoft is totally underplaying this one.

  24. Unfortunate by Davak · · Score: 5, Insightful

    This is not good for the average consumer.

    Bugs like this keep the common microsoft user from installing the latest and greatest updates. They might not understand that their security is troubled until they recent damage; however, they understand this:

    "I finally ran windows update... and now I can no longer get on the internet. Crap, I'm never doing that again."

    Methinks it's a Microsoft-is-too-huge-syndrome. Microsoft can't test its fixes on every possible configuration; therefore, problems like this will occur. Episodes like this have previously occurred and will occur again.

    It's the nature of the beast.

    btw, thanks Slashdot. I could have installed that this morning!

    Davak

  25. Re:No by 26199 · · Score: 2, Informative

    Nearly... it was 600,000 downloads, not 600,000 broken internet connections. According to the article only 'a handful' of the 600,000 who downloaded the patch had problems.

  26. Microsoft KnowledgeBase by leeroybrown · · Score: 3, Funny

    It's moments like this that prove that the phrase "Microsoft KnowledgeBase" may in fact be the ultimate oxymoron.

  27. difficulty with software upgrades by e**(i+pi)-1 · · Score: 5, Informative

    Every software update is a risk. Especially OS updates. With software, I always fear that beside enhancements, also restrictions will be built in (happend with quicktime once years ago). Therefore, I usually
    keep a copy of the old software or to make full backups before upgrading the OS. Updating software is not trivial because it X + A + B is not equal X + B + A : the update A can and will in general change something of the modification B. After a few such operations it becomes very difficult to keep track about all possible
    states the users can have on their machine.

    My experiences from updates:

    - even for modern Linux distributions, it is a good idea
    to make full new installs rather then upgrading. I personally
    always had problems with upgrades and almost never had problems
    with full reinstalls.

    - the OS X updates went all smooth so far. Still, I always upgrade
    first one machine, wait to see if everything works fine before
    updating the others.

    - XP updates. No problem with vmware. Just keep an copy of the
    old virtual machine around. If something screws up or one of
    the software has decided to "upgrade" itself:

    rm -rf winXPHome
    mv old.winXPHome winXPHome

    Virtual machines can also easily be copied from one machine to
    an other.

    1. Re:difficulty with software upgrades by wine · · Score: 2, Informative

      Updating software is not trivial because it X + A + B is not equal X + B + A : the update A can and will in general change something of the modification B. After a few such operations it becomes very difficult to keep track about all possible

      I think with a decent package management system, X + A + B should equal X + B + A. Debian for instance refuses to install packages which contain files that already belong to other packages. If there is no overlap, you can upgrade, downgrade, reinstall all way around.

      For this reason it should also be much easier to maintain a computer by upgrading, than by reinstalling it every now and then. I've been running the same Debian system for two years now, and I don't even know which version it is at. All I do is upgrade. No problemo,

  28. Re:Microsoft Security by Dot.Com.CEO · · Score: 2, Informative

    Bollocks. First of all, MS outsources customer support in most countries, so you are likely never to have talked to a MS helpdesk. Second, and most important, I have had to talk to MS helpdesks in three different EU countries and, trust me, it has been VERY easy to get someone to register my problem. NOT ONCE have I been told to send them an e-mail. YMMV, of course, but "always", does not hold true.

    --
    Mother is the best bet and don't let Satan draw you too fast.
  29. XpP by soliaus · · Score: 2, Funny

    Thankfully, I uh.. well, lets just say that windows update would cause information about my machine *caugh*cd key*caugh* profile to be 'exposed'. So, like any self respecting geek, I killed update at the machine level. Now your thinking...insecure? No bug fixes? C'mon, its windows for gods sake! RAID couldnt kill THAT bug.

    --
    Speaking at Defcon 12 - Credit Card Networks Revisted: Pen
  30. DRM by Root+Down · · Score: 5, Funny

    It's not a bug, it's digital rights management preventing illegal file sharing!

  31. Automatic Updates by bjb · · Score: 5, Informative
    I think the biggest problem is how the Windows Automatic Update feature is turned on by default on everyone's machines.

    For most people, it is the only way they're ever going to install updates on their computer. However, I've found production Windows 2000 servers with this feature enabled! This is at least the 2nd or 3rd time that I've read a story on /. about a Windows XP/2000 patch that was no good.

    If you want to disable automatic updates on your computer, go to Control Panel->System->Automatic Updates tab and click the buttons to turn it off. You'll be better off picking what you want to update manually.

    --
    Never hit your grandmother with a shovel, for it leaves a bad impression on her mind...
  32. updated clickable ..... by Anonymous Coward · · Score: 4, Informative
  33. Obligatory Matrix reference by Zog+The+Undeniable · · Score: 4, Funny

    What good is a Knowledge Base article, Mr Anderson? If you're unable to surf?

    --
    When I am king, you will be first against the wall.
  34. Re:Maybe its not on KB because nobody is at work? by olderchurch · · Score: 2, Insightful

    The patch has been out some time now (more then a week). I have indeed installed it and have been figuring out for a day why my network card did not work anymore :(

    After deinstalling the update (luckily that was possible, there are updates where there is no rollback) everything worked fine.

    I checked again with windows update and the patch wasn't avaialble anymore (this was last saterday), so I reckoned it had nothing to do with my setup, or at least was not the only one.

    --
    Disclaimer: This opinion was created without the use of any facts
  35. Also don't install the 811493 fix by drwtsn32 · · Score: 5, Informative

    If you're running XP SP1, you definitely do not want this fix. It will bring your system to a crawl. See this for more info.

  36. Re:Microsoft Security by zm · · Score: 3, Funny

    See, there's this new technology called "the telephone".... :)

    --
    Sig ?
  37. What Happened by dr+ttol · · Score: 2, Interesting
    This is related to threedegrees, a Microsoft software. I tracked it down 3 months ago and detailed the process on their message board that can be reached here:
    http://www.threedegrees.com/MessageBoards/ShowPost .aspx?PostID=427

    What is going on is that Symantec's AntiVirus software is clashing with Microsoft's attempt to update some critical files, and when only half of the files are updated and the other half is denied, the result is a broken machine.

    The fault can't entirely be blamed on Microsoft in this case.

    1. Re:What Happened by dr+ttol · · Score: 3, Informative
  38. retard by dizzy+tunez · · Score: 2

    (Does this mean only 600,000 XP users trust Windows Update?)

    Not everbuddy checks their windowsupdate every fifth minute :P

    --
    "If you loved me, you`d all kill yourselves today"
    Spider Jerusalem
  39. Re:Maybe MS should have tested the software first by Anonymous Coward · · Score: 2, Interesting

    What was the liability when linux kernel version 2.4.12 or whatever it was that would nuke a partition if unmounted? None. And this was a stock kernel in the stable branch... oops.

    Everyone fscks up, not just Microsoft!

  40. Lots More Slashdot Sensationalism by gad_zuki! · · Score: 5, Insightful

    >Also, how is this different from any automated Linux update method?

    Its not. Well, this wasn't automated, it had to be downloaded from the windowsupdate.com site, but I think we're just seeing something of a double standard here.

    Okay /. has an anti-MS bias. So do a lot of people, but losing network connectivity is pretty serious, especially on the world's monopoly OS.

    What really gets me is that whenever there's an MS problem the /. crowd complains about ignorant users who don't patch. Now the patchers are the problem?

    MS's automated patching system isn't bad, it keeps Joe User updated and there simply will be x amount of problems over y amount of time, as you said just like with any other vendor.

    Enjoy the schadenfreude guys, it'll just make real MS complaints sound all the less convincing. Optional supplemental reading: the boy who cried wolf.

    Crying wolf is a big problem when criticizing MS to the uninitiated. I have the displeasure of taking a 3 hour class with a rabid anti-MS type and at this point no one takes him seriously because of his zeal, even though 2/3 of the stuff he says are actually excellent points.

    Engaging in simple-minded schadenfreude simply makes people look less credible. Seems like a tough lesson to learn for the loud-mouth anti-MS types.

  41. don't trust windows update by prell · · Score: 3, Insightful
    Does this mean only 600,000 XP users trust Windows Update?
    Well, it's only been available since Friday, so you do the math on vacations (in America), frequency of use, and such.

    For whatever reason, though, I never use Windows Update, and I don't know that I've ever patched my Windows XP, outside of SP1. Maybe it's because I really only want to use Windows for gaming and not bother with much else, but I think it's also because, when I get something working, it's sometimes through some steps that elicit black magic from Windows, and I'd like the feature to stay working. The most recent example is the Windows XP VPN service, which for whatever reason will issue me an IP I want, and will work with other users' routers, only occaisionally. Windows allows so little control over its features (compared to Linux and others), and VPN is no exception: A set of wizards, so when it works, yea I'd like it to stay working, and this patch warning that VPN may be affected, is certainly only redoubling my avoidance of Windows Update.

    We all know the history of Microsoft and patches, so I'm certain that is a sort of "subconcsious" reaction when I see that awful tooltip in the corner. My Windows patching tendencies are highlighted by my almost religious running and adherence to OS X's Software Update panel (alright, I haven't installed the latest iTunes update ;-), and the fact that I'll usually run up2date in RedHat. In defense of OS X, usually their updates add all sorts of neat features, as compared to Windows XP, whose patches are usually the equivalent of them saying "OOPS, MY BAD!"
  42. No, that's not what it means by nochops · · Score: 3, Insightful

    "Does this mean only 600,000 XP users trust Windows Update?"

    No, that's not what it means. Users who are savvy enough to know about the 'issues' with Windows Update probably don't use Windows XP, for the most part.

    Actually, what this means is that you found a story about Microsoft, and needed a way to trash them, so you came up with a lame rhetorical question.

    Honestly, what would you have them do? Not retract the broken update? Around here Microsoft is "damned if they do, damned if they don't". They just can't do right by many Slashdot posters.

    Sure Microsoft does a lot of bad things, but certainly retracting a broken is not one of them.

    Call them on their bad business practices, sure. But snide remarks like yours only make anti Microsoft people look childish, foolish, and generally make you look like you're really struggling to find something wrong with them.

    Anti Microsoft Slashdot Goldmine
    1. Find non-news story about Microsoft rightly retracting a broken update.
    2. Insert witty, yet trollish rhetorical question.
    3. Post to Slashdot.
    4. Wait for the Karma to roll in.
    5. Profit!

    --
    "A terrorist is someone who has a bomb but doesn't have an air force." -William Blum
  43. Re:What a bunch of crybabies here by clonebarkins · · Score: 2, Funny
    First you people complain that MS ships buggy OS's and no one knows how to update it. Now that they put in an auto-update feature for the newbie, everyone complains that it's also bad.

    You're right -- the expectation that a product should work as intended is entirely unfounded. Thank you for freeing me from the ignorant cave in which I have been hiding all these years.

    --

    "The evil of the world is made possible by nothing but the sanction you give it." -- Ayn Rand

  44. Re:Automatic Updates by clonebarkins · · Score: 4, Funny
    This is at least the 2nd or 3rd time that I've read a story on /. about a Windows XP/2000 patch that was no good.

    Only 2nd or 3rd? Don't visit /. much, do ya?

    --

    "The evil of the world is made possible by nothing but the sanction you give it." -- Ayn Rand

  45. Re:Automatic Updates by nachoboy · · Score: 2, Informative

    I think the biggest problem is how the Windows Automatic Update feature is turned on by default on everyone's machines.

    Note that the Automatic Updates feature has three possible configurations.

    1) Notify before downloading, notify before installing. This is the most conservative as user intervention is required twice along the way.

    2) Download updates automatically, notify before installing. This is probably the best of the three options as it will trickle all updates down to your computer using unused bandwidth and then prompt you to install when everything is there. User still has FULL control over which patches get installed. This, by the way, is the default setting for Windows 2000 and Windows XP.

    3) Download updates automatically, install them automatically on a preset schedule. For complete hands-off system administration, let Microsoft have full control over your machine. Not recommended but available anyway.

    Of course it can be turned off completely or never installed in case you never want to deal with automatic patching.

  46. Time to think about Mac again? by Anonymous Coward · · Score: 5, Interesting

    I guess I was not the only one who got hosed downloading this update recommended to me by MS thru the update site. It ruined my DSL connection and could not be uninstalled. I wound up fdisking and formatting, which of course required the nice little phone call to Microsoft to get this number and that number. When they asked me why I was calling, I told them I downloaded an update from the update site that killed my internet connection - they were very polite after that.....wonder why? :)

    When Apple comes out with their new PPC 970 systems I will be first in line to buy one. I dont like what I see coming down the Microsoft trail re DRM and all the spying going on. I liked my G4 when I had it but it was so slow compared to my windows box I sold it. Seems like Mac maight make a comeback, I'm sure I'm not the only one thinking this way. But there's no way I'm buying a G4 unit.

    1. Re:Time to think about Mac again? by Xerithane · · Score: 2, Interesting

      Wow, that was a lame comeback. MS is being blamed for a complete disregard for quality control.

      I have an XP box. I use it to play games, and for media, it works great. BF1942 crashes, but aside from that the machine never crashes. I use Windows Updater (that prompts me) constantly. I got the notice for this update, and skipped it for some reason. Glad I did.

      In the last 6 months since I've had this machine, I have downloaded every update and installed them without any concern or issue. That is pretty good quality control right there. For me, this is the first time I've seen them muck up MS Update for XP, that's a really good track record.

      Considering I've had Nvidia bugger their drivers all to hell more times than I can count (Upgrading to a new driver on a geforce2 go took up about 80% of the RAM when I started X, but if I rolled back it was unstable...)

      Saying that Microsoft is being blamed for a complete disregard for quality control is just dumb. Yes, quality control needs work, but they do work hard for it. From a programmers perspective, there is always something wrong. I'm working out this bug right now that only hits sometimes, that segfaults at a certain point in the code with a really "can't access memory" code in the debugger (gdb) and Valgrind just segfaults.

      This is just one, and I guarantee that there will be more. Bugs happen. You can't always expect every piece of software to work flawlessly.

      I've had better luck with Windows Update than urpmi, up2date. The only Linux equivalent that works, in what I would say, better fashion that Windows Update is Gentoo's emerge.

      --
      Dacels Jewelers can't be trusted.
  47. greased turkey by JahToasted · · Score: 2, Informative

    2.4.15 I believe. Released on thanksgiving day so it was called "Greased Turkey". I remember reading about it on a machine that was using it. There was a way to unmount the drives without them being corrupted, luckily, so I was able to reboot into a different kernel. But it was pretty dicey.

  48. Re:Unfortunate = Flame War? by Davak · · Score: 2, Funny

    Hmmm... while tempted to launch into the whole PC vs Apple debate, currently I don't have the time...

    I've got to get down to the pro-choice rally before I go lobby for my right-to-bear arms. After lunch I am attending the pro-captital punishment rally. Then hopefully tonight we can attend the fund raiser for the statue of Al "i invented the internet" Gore.

    Here are the flame war rules. Please print them out for later reference.

    Davak (in asbestos underwear)

  49. Poor argument... by aksansai · · Score: 2, Insightful

    First things first - I love open source software. I prefer Linux. But let's be realistic:

    Microsoft is a software vendor - a software vendor has employees that know, love, and baby their source code to produce a software product. Windows XP is one of their software products. These software developers know their particular piece of the puzzle well - while they may know jack and doodle about another piece of the puzzle within the same product. Nevermind they have no clue on how another piece of software is written from a completely different vendor!

    If Microsoft were to release a patch to Windows XP - do you honestly want them to test the patch against the fifty three million software products that are available to run under their operating system? Let's not forget all the legacy versions that are still floating out there.

    C'mon - that's ridiculous. It's an unfair argument to state that Microsoft should test against software not written by them. I would expect Microsoft's testing strategy is to make sure that the software does not adversely affect the performance of their own operating system and the software that came with it.

    Since we do not have sufficient information about all the software that was affected by the patch, we do not know the whole scope of the problem. All we know is that Symantec's software product conflicts with the latest update.

    If five software products out of fifty three million are broken while the remainder has absolutely no problem - would it not be safe to say that the problem does not lie within the patch, but perhaps the coding practices of the five software products that have the conflicts?

    Unlike what I would have expected from Microsoft, pulling the patch was the right idea. I imagine their quality department immediately dispatched a request to Symantec to evaluate the possible conflict and to work a resolution as a fast as possible.

    --
    Ayup
  50. The Fix by Davak · · Score: 4, Informative
    This problem should be easily fixable on any system.

    When the update occurs, XP makes a new restore point.

    If you are ever having problems after an update... just roll the system back. Easy.

    Restore Point Link


    DavaK

  51. Antivirus software by Cardbox · · Score: 2, Interesting

    According to the story the main (although not the only?) problem is with systems that have anti-virus software installed. I'm not surprised. Anti-virus software is written by people who don't fully understand MS's incomplete and incomprehensible documentation, who have often had to reverse-engineer something that MS might change at any moment... and the AV suppliers do not, themselves, bother to document the ways in which their product subtly buggers up a Windows system... so that we can't even tell whether a particular eccentric behaviour might be the fault of the AV.

    Whenever a really mysterious bug in a Windows program appears, I always ask users to try running it on Windows (rather than Windows-as-modified-by-an-AV). More often than not, the bug goes away.

  52. Oh no! The sky is falling! by delus10n0 · · Score: 2, Informative

    Give me a break. Let's all start the Micro$oft bashing, right? Because it couldn't possibly be another vendor's fault, like *cough*Symantec's*cough*?

    I had a similar problem to this about a year ago, under Windows 2000. I was using a piece of firewall/intrusion detection software called BlackIce. They released a new version of BlackIce, I installed it. Then I installed a network/security update from Windows Update.. rebooted, and what do you know, my internet doesn't work anymore. I contact BlackIce's tech support (who was very helpful) and they admitted they were aware of an issue with that particular security update and their software not working together, and that they would be releasing a patch soon for BlackIce. Microsoft wasn't at fault for it, BlackIce was, and they admitted it.

    --
    Not All Who Wander Are Lost
  53. Ironic I heard about it on Slashdot first by OldBus · · Score: 2, Informative
    I downloaded the update yesterday and I had problems later, although I didn't lose all networking. There didn't seem to be any sign what the problem was on the Microsoft support site.

    So, I read Slashdot and find the answer to my Windows support problem! That's certainly different :)

    BTW, to those who said the only way to solve is to reinstall Windows, have you tried rollin gback to the last system checkpoint before the upgrade? (worked for me on XP)

  54. Come On Now... by tomakaan · · Score: 4, Insightful

    Many of us here on /. are developers. Are you going to honestly say that you've never screwed up in one of your releases and had a security or other bug slip through testing? You tell me that and I've got two words for you...bull ****. Yeah, Microsoft is on a much bigger scale than most of us, and they make a lot more money in sales, but everyone screws up still. Everyone screws up, even the "big-bad-money-hungry" Microsoft everyone loves to complain about!

  55. The parent post is false to get modded up-see here by Overly+Critical+Guy · · Score: 3, Informative

    Quoting from the site:

    "This problem occurs because of a regression error in the Windows XP SP1 versions of the kernel files (Ntoskrnl.exe, Ntkrnlmp.exe, Ntkrnlpa.exe, and Ntkrpamp.exe) that were included in the original 811493 security update. On May 28, 2003, Microsoft released a revised version of the 811493 security update for Windows XP SP1 to address this problem."

    It's fixed and is a non-issue. Moderators were had.

    --
    "Sufferin' succotash."