Slashdot Mirror


Microsoft Fixing Windows 8 Flaws, But Leaving Them In Windows 7

mask.of.sanity sends this news from El Reg: "Microsoft has left Windows 7 exposed by only applying security upgrades to its newest operating systems. Researchers found the gaps after they scanned 900 Windows libraries using a custom diffing tool and uncovered a variety of security functions that were updated in Windows 8 but not in 7. They said the shortcoming could lead to the discovery of zero day vulnerabilities. The missing safe functions were part of Microsoft's dedicated libraries intsafe.h and strsafe.h that help developers combat various attacks. [Video, slides.]"

218 comments

  1. Shoddy Ethics by mfh · · Score: 4, Interesting

    The bugs exist for a reason. If it's not broken now why buy the new version?

    --
    The dangers of knowledge trigger emotional distress in human beings.
    1. Re:Shoddy Ethics by Anonymous Coward · · Score: 5, Insightful

      Windows 7 is still supported, so doing this now isn't shoddy ethics, it's a breach of contract. If they think that having shorter support periods will drive more sales, then have to start with Windows 9.

    2. Re:Shoddy Ethics by hodet · · Score: 1

      Huh? Read what you just wrote. I would say knowingly breaking your contract is a breach of ethics.

    3. Re:Shoddy Ethics by Anonymous Coward · · Score: 2, Informative

      No, it's a breach of law meaning it can be taken to court. A breach of ethics doesn't necessarily allow that unless what they're doing is not only unethical but also unlawful due to existing laws.

      Cutting off support for software isn't against the law unless you were promised updates for a specific longer term of support. Which was given with Windows 7. If there wasn't a promised amount of time for updates/patches promised beforehand, it'd just be a dick move.

    4. Re:Shoddy Ethics by Poingggg · · Score: 5, Funny

      Breach of ethics is not possible for Microsoft: They never had any to break in the first place.

      --
      What person will donate an airborne act of love?
    5. Re:Shoddy Ethics by shutdown+-p+now · · Score: 1

      This is not about fixing any (known) bugs, but rather about making code more resilient in the face of potential buffer overrun bugs.

      Simply put, it's taking an existing codebase that uses strcat and strcpy, and replacing their use with strlcat and strlcpy. StrSafe.h is a Windows-specific equivalent of those two BSD functions. IntSafe.h is a library that does something similar for integer arithmetic (to trap overflow issues).

    6. Re:Shoddy Ethics by mfh · · Score: 1

      I didn't know that. If that's the case there is really no excuse not to apply the fix in Win7, unless MSFT wants Win7 to have the vulnerability. Why?

      --
      The dangers of knowledge trigger emotional distress in human beings.
    7. Re:Shoddy Ethics by Anonymous Coward · · Score: 0

      Breach of ethics is not possible for Microsoft: They never had any to break in the first place.

      Ha! Good one. Seriously though, what exactly are "ethics"? I don't ask for a definition, or yours, or the dictionaries, I mean IN CONTEXT OF M$'s behavior. The term is used by various professions to form meta-laws, such as ethics for lawyers. You as a "civilian" in law aren't generally held to be prohibited from discussing a court-case unless you're on the jury, or a judge issues a gag-order. A lawyer, despite the first amendment, (in the USA) is proscribed from talking because of the confidentiality of his clients. There isn't a law saying he can't talk about it, it's a rule issued by the Bar Association to further the cause of people feeling they can tell their lawyers what they need to to facilitate the lawyer's being able to do his job to represent him in court, etc.

      They refer to this as ethics. The rules of ethics act as a second set, a complementary set of laws that bind a subset of society, such as engineers, scientists, university professors, etc., to set standards for their behavior without government having to step in. This also allows the trade organizations to self-regulate, which mostly will (or is supposed to) result in better regulation because the regulators know more about what they're regulating than the people in government. So the Bar Associations of the states regulate lawyers actions, the SEC regulates stock traders, etc.

      WHO REGULATES SOFTWARE VENDORS?

      No one. So the notion of their being unethical is nonsense. Not because they're ethical, but because they're not held to any particular standard. Maybe I'm wrong. Tell me please, if I'm wrong, what national or international organization, akin to the IBEW, IEEE, SAE, the Bar, AAOS, etc. etc. etc. has the authority to censure a software author or publisher? AFAIK, NO ONE. This is why M$ has been able to act the way they have all these years. Only two things could theoretically stop them. The government, (and they didn't/couldn't/didn't have the balls,) and people voting with their wallets/purses, but they avoided one by being rich enough to hire an army of lawyers and playing the game better than their competitors, and they avoided the other by pursuing a campaign of fear, uncertainty and doubt, and embrace-and-extend, and when those don't work, they simply buy their competitors out, or make their products deliberately incompatible, or use their entrenchment with their other software...

      Maybe there is such a group, but if there is, obviously they lack the teeth, or they've been dozing on the job, because M$ acts and always has acted as if nothing constrains their misbehavior.

      I'm tired of talking about them, actually, I just look forward with anticipation to the day it's reported they've filed for bankruptcy protection. It happened to GM, and to Chrysler repeatedly, and both of them make real, actual products that are at least somewhat useful. I will throw a party the day that happens, and think you all will too, when you breathe free air, and learn to know the sweetness of it.

    8. Re:Shoddy Ethics by shutdown+-p+now · · Score: 1

      The excuse is that it doesn't magically happen by itself - TANSTAAFL. You need to get people to do it, and it will take a significant amount of time for them to do so (the simple cases can be as easy as find & replace, but the harder ones require putting some thinking, so it's not an automated process) - time for which they're paid considerable amount of money, and, of course, not working on anything else.

  2. This makes sense... by Anonymous Coward · · Score: 5, Informative

    Windows Sustained Engineering is a different org across the street with different funding and goals, and they don't automatically fix all of the bugs the Windows feature teams fix. There's a triage process for deciding whether bugs are important enough to fix in downlevel releases.

    1. Re:This makes sense... by ElPerezoso · · Score: 5, Informative

      This. And there's no evidence that these changes correspond to exploitable security vulnerabilities. If you look at the slides, what they're actually complaining about is that certain OS code paths have been updated to use intsafe.h/strsafe.h functions in Windows 8, but not in Windows 7. Because intsafe/strsafe are used to help avoid overflow vulnerabilities, the conclusion the article draws is that these must be actual vulnerabilities, which are being fixed in Windows 8 without being ported to Windows 7.

      It's worth noting that the entire presentation that the article is based on is an advertisement for their DiffRay diffing tool, so they have some incentive to overstate things. It's entirely possible that the changes that they're pointing out as "fixing potential 0-days in 8 but not 7" are actually just moving a couple of bounds checks from ad-hoc implementations in the functions themselves to the standardized common intsafe calls. Or it could be that there is already correct bounds enforcement elsewhere, and these checks are just added for redundancy, or to make function-local static analysis a little bit cleaner. I honestly don't know, but there are enough plausible benign explanations that the alternative of "Microsoft is deliberately exposing its largest set of customers to vulnerabilities" seems kind of absurd. Bring me the extraordinary evidence for this claim.

      Disclosure: I'm a dev on the Windows team. I don't have any specific knowledge of this, and I'm not writing this in any official or compensated capacity.

    2. Re:This makes sense... by PRMan · · Score: 4, Interesting

      And 8 has code that 7 doesn't have. There is a HIGH degree of likelihood that most bugs would be in the new code, the code not shared by 7, which has been well-tested for years.

      --
      Peter predicted that you would "deliberately forget" creation 2000 years ago...
    3. Re:This makes sense... by lgw · · Score: 2

      If you've ever actually used those libraries, there's nothing magically safer about them. You can more easily port old code to those libraries in such a way that all vulnerabilities are maintained than you can port and do it right. So it comes down to code review during the port. You get the same safety with the same code review without actually porting anything.

      Those libraries (with good code review) are like a "W2K safe" sticker of yesteryear: a sign that someone looked at the problem, which is great, but doesn't necessarily mean anything.

      IME the important thing to look for in older code is not the bounds checking, but whether there's an error path at all. It's all too common for some leaf function to avoid a buffer overrun and set come error code, but the calling code was never changed to care about the error code, so something very odd happens 47 calls down the road. This is why IMO using a language with exceptions is the key to security - you don't need the language to provide bounds-checked arrays, you can always write that library, but you really want an unhandled error to be a crash, not an unpredictable state no one thought about during design!

      --
      Socialism: a lie told by totalitarians and believed by fools.
    4. Re:This makes sense... by Anonymous Coward · · Score: 0

      Since I did pay for W7 I expect FULL support for its lifetime not some half assed job designed to force people to upgrade prematurely.

      So what you're asking for is Patch Tuesday, every hour on the hour, with most of the fixes being obscure text clipping issues in Chinese or threading problems that only show up when you open MMC and add all of the snap-ins twice?

    5. Re: This makes sense... by Anonymous Coward · · Score: 0

      You paid a premium because it is an older release, and supporting multiple versions means extra work.

    6. Re: This makes sense... by Anonymous Coward · · Score: 0

      I think maybe he paid a premium to the computer shop because they had to wipe the OS that shipped on the machine from the factory and install Windows 7

    7. Re:This makes sense... by harryjohnston · · Score: 2

      Support, even FULL support, means fixing bugs; in practice, fixing important bugs. One thing it certainly doesn't mean is making every possible improvement.

      There's no evidence as yet that any of the changes in question were bug fixes.

    8. Re:This makes sense... by Billly+Gates · · Score: 1

      YEAH and I could say IE 6 is just as secure as no security in design does not mean more exploits. One of my clients who switched from XP to 7 noticed a drop in malware.

      Newer kernel features reduce 0 days as evident in 7 compared

    9. Re:This makes sense... by Anonymous Coward · · Score: 0

      So you are a developer on the Windows team, but yet
      you have no knowledge of these library functions whose
      purpose is to make the OS more secure?

      This is indicative of over-compartmentalization, which
      is a trait of the MIC.

      This is why Windows can not be trusted.

    10. Re:This makes sense... by mwvdlee · · Score: 1

      It all sounds like basic refactoring to me.
      A simple search-&-replace of old function to new functions, not because it's necessary but because their current coding standards says they should.
      I've done similar refactoring in the past, simply to get rid of some automated coding standard checker notices.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    11. Re: This makes sense... by Anonymous Coward · · Score: 0

      No. He paid a premium because to him Windows 7 is better than Windows 8.

    12. Re:This makes sense... by duck_rifted · · Score: 1

      These changes most certainly do correspond to security vulnerabilities, but they're inherent in the language; not the platform. Microsoft could easily argue that their API need not address security pitfalls introduced by the language itself. And they would be correct.

  3. It's Time To Move On. by Anonymous Coward · · Score: 4, Insightful

    "People are aware that Windows has bad security but they are underestimating the problem because they are thinking about third parties. What about security against Microsoft? Every non-free program is a 'just trust me program'. 'Trust me, we're a big corporation. Big corporations would never mistreat anybody, would we?' Of course they would! They do all the time, that's what they are known for. So basically you mustn't trust a non free programme."

    "There are three kinds: those that spy on the user, those that restrict the user, and back doors. Windows has all three. Microsoft can install software changes without asking permission. Flash Player has malicious features, as do most mobile phones."

    "Digital handcuffs are the most common malicious features. They restrict what you can do with the data in your own computer. Apple certainly has the digital handcuffs that are the tightest in history. The i-things, well, people found two spy features and Apple says it removed them and there might be more""

    From:

    Richard Stallman: 'Apple has tightest digital handcuffs in history'
    www.newint.org/features/web-exclusive/2012/12/05/richard-stallman-interview/

    1. Re:It's Time To Move On. by LordLimecat · · Score: 5, Interesting

      Richard Stallman is full of crap if he is claiming that Windows is endemically, technically less secure. Anyone remember the Pwn2Own games? Anyone remember what OS fell first every time? Thats right, fully patched OSX (think that changed ~2012).

      This could turn into a debate lasting days, but suffice it to say that from a technical level Windows is pretty secure. 90% of all exploits these days hit third-party applications that also happen to run on Linux and OSX (flash, java, adobe reader). Im sure Stallman would rail against those too, and he would actually be right, but the point is that the vast majority of users need those plugins and he is being deceitful if he is attempting to paint the various Flash player exploits as problems with Windows, or as problems endemic to Closed Source Software.

      And you, too, have a bit of gall posting this, after some of the hugest security holes to hit the net were just released, both affecting OSS. Ideology is great until you hit the real world, and realize that things are never as simple as "I hate Microsoft, therefore Windows is technically bad", or "Closed source software has trust issues, therefore all OSS is inherently more secure". My hope is that all who take this like will grow up and abandon their zealotry before they enter the workforce.

    2. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      Don't worry. They do. The moment you find how difficult it actually is to migrate a business from one OS to another you start to realize just how fucking pointless all this bullshit is anyway. There's a reason companies like Red Hat thrive on providing support. Software development costs are miniscule compared to the cost of running the damn thing and keeping it properly integrated with every other system you have.

    3. Re:It's Time To Move On. by msobkow · · Score: 4, Insightful

      The question is not just whether an OS is secure, but how long it takes for patches to be rolled out. While Microsoft often sits on their laurels when it comes to releasing patches, the king of procrastination is Oracle, which has left known issues in the wild for decades.

      Still, I don't disagree with the general intent of your post, which I read as "closed source is not necessarily worse than open source." But that's only up to a point -- timely patches are critical to maintaining the security of a system, and when Microsoft purposely omits patches for downlevel releases that are still under support, they do a great disservice to their customers, to the 'net community as a whole, and to their own reputation and therefore bottom line.

      --
      I do not fail; I succeed at finding out what does not work.
    4. Re:It's Time To Move On. by jones_supa · · Score: 1

      Digital handcuffs are the most common malicious features. They restrict what you can do with the data in your own computer.

      There's many sides to this. With all the bugs, missing features, and subpar performance, also free software restricts what I can do with my computer.

      The ideas of free software can be beautiful, but if they produce crusty software which just makes my life unnecessarily more clunky compared to the proprietary alternative, it's a bit of a "meh" to me. To squeeze the most out of my computer is still the most important battle for me.

    5. Re:It's Time To Move On. by LordLimecat · · Score: 1

      I imagine there are architectural differences between Win7 and Win8. Win7 is still supported heavily in the enterprise, and I dont believe for a second that Microsoft has some perverse desire to screw over their biggest customers.

    6. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      Richard Stallman is full of crap if he is claiming that Windows is endemically, technically less secure.

      Seems pretty clear that the GP's quote is talking about DRM and other intentional but user-hostile "features", not security holes in the traditional sense.

    7. Re:It's Time To Move On. by RR · · Score: 5, Insightful

      Richard Stallman is full of crap if he is claiming that Windows is endemically, technically less secure. Anyone remember the Pwn2Own games? Anyone remember what OS fell first every time? Thats right, fully patched OSX (think that changed ~2012). This could turn into a debate lasting days, but suffice it to say that from a technical level Windows is pretty secure.

      You totally misunderstand Stallman's point. Stallman is not arguing that open source leads to better quality software. That would be Eric Raymond. Stallman is arguing that you can't trust Microsoft. More of an Auguste Kirchhoffs interpretation. And I don't see what OSX has to do with free software.

      Stallman objects to closed source philosophically, and Windows especially. In addition to being proprietary, Stallman is arguing that Windows has features to report your use of Microsoft software and potentially lock you out (Windows Activation), to add or delete software without warning (Windows Update), to track you across any device around the world (Microsoft Account), and to keep you from using the computer in inappropriate ways (Protected Media Path, Driver Signing, Secure Boot). I don't see how he's wrong.

      Somebody in the Chinese government seems to have noticed, and is now trying to get Windows banned there.

      My hope is that all who take this like will grow up and abandon their zealotry before they enter the workforce.

      "The reasonable man adapts himself to the world: the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man." - George Bernard Shaw

      --
      Have a nice time.
    8. Re:It's Time To Move On. by symbolset · · Score: 3, Insightful

      The problem appears to be that if you choose Microsoft you are going to get this OS migration hassle anyway, on a regular recurring cycle, because their business model requires it. So if you are migrating OS anyway you may as well do it right once, leave them, and be done with that hassle forever.

      --
      Help stamp out iliturcy.
    9. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      "from a technical level Windows is pretty secure."

      stupid is as stupid does.

    10. Re:It's Time To Move On. by SeaFox · · Score: 5, Insightful

      Richard Stallman is full of crap if he is claiming that Windows is endemically, technically less secure. Anyone remember the Pwn2Own games? Anyone remember what OS fell first every time? Thats right, fully patched OSX (think that changed ~2012).

      Yes, and OSX falling first had nothing to do with the participants specifically targeting it. I mean, they would have nothing to gain from focusing their efforts on a single operating system, like the bragging rights of hacking a supposedly "secure" platform, or taking Macintosh snobs down a notch, or winning a $2000 Mac laptop instead of a $500 Dell. No siree.

    11. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      No that is not even an argument. Microsoft has not addressed its problems comprehensively. In any case its too late to be looking back at what could of been when the only choice for me is one of the Linux systems. Grow up and learn something good for a change. Apple is not even in the race and don't know any better. Ideology would be spending money on Windows. Practical is learning Linux. Standards for the world and the future of Mankind. No one addressees the money issue from the Microsoft side.

    12. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      "And you, too, have a bit of gall posting this, after some of the hugest security holes to hit the net were just released"

      That's nothing. It seems like every update, doesn't matter what version of Windows you're using, contains one or multiple patches to secure remote exploits which could take control of the system. Count them, I dare you.

      "Richard Stallman is full of crap if he is claiming that Windows is endemically, technically less secure."

      Woosh.

      Little broken trolls need to go back into their boxes when they're done playing for the day.

    13. Re:It's Time To Move On. by UnknowingFool · · Score: 4, Informative

      Anyone remember the Pwn2Own games? Anyone remember what OS fell first every time? Thats right, fully patched OSX (think that changed ~2012).

      Do you remember how Pwn2Own worked? Obviously not. It was turned based not race based meaning a team/person was selected to try their exploit first before any other team. And the team got to select which system they tried because they got to own that system.

      If that team did not succeed, the next team got a try. Of course, teams would try systems they both wanted and had exploits. No one picked a system they didn't want. Most often it was OS X first on the first try. But Windows systems also fell on their first try. Almost never did a Linux system fall. In fact, many times, a Linux system was never attempted.

      And it was never fully patched system. The systems were also fixed at a certain date prior to the contest so that the teams had a chance to attack it. Sometimes the exploits had been patched already.

      --
      Well, there's spam egg sausage and spam, that's not got much spam in it.
    14. Re:It's Time To Move On. by donaldm · · Score: 1

      Richard Stallman is full of crap if he is claiming that Windows is endemically, technically less secure. Anyone remember the Pwn2Own games? Anyone remember what OS fell first every time? Thats right, fully patched OSX (think that changed ~2012).

      Err you do realize that OSX is not Linux don't you?

      --
      There ain't no such thing as proprietary standards only proprietary formats. Standards are by definition open.
    15. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      Did you miss the second sentence? "What about security against Microsoft?" It's a key part. Security is about keeping unauthorized users out while letting authorized users in. It is possible for a secure system to have a backdoor, for some definitions of secure.

      RMS is correct in his statement that Microsoft and Apple keep secrets from their users. He is correct that those secrets are not for the direct benefit of the users.

    16. Re:It's Time To Move On. by Grishnakh · · Score: 1

      90% of all exploits these days hit third-party applications that also happen to run on Linux and OSX (flash, java, adobe reader). Im sure Stallman would rail against those too, and he would actually be right, but the point is that the vast majority of users need those plugins and he is being deceitful if he is attempting to paint the various Flash player exploits as problems with Windows, or as problems endemic to Closed Source Software.

      No one needs Adobe Reader. It's a bloated piece of trash which, as you point out, has lots of security exploits. There's tons of alternative PDF viewers you can use. There's also alternatives for Java I believe (OpenJDK I think). With Flash, you're right; there really aren't any alternative viewers for that (which is odd considering the specs are open), but for the others, especially Adobe Reader, there's little excuse for using it.

    17. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      " Stallman is arguing that you can't trust Microsoft."

      When Stallman can give me a fucking reason to trust him (and those little tantrums on-stage of his do no fucking good for that) then maybe I'll listen to a guy that has probably had his unshorn ass hacked more times than I.

    18. Re:It's Time To Move On. by LordLimecat · · Score: 3, Insightful

      Hes not wrong, except he beats a dead horse. Everyone knows what Windows activation is, that you cant patch Windows yourself, that you cant inspect the code.

      Incidentally Driver Signing and Secure Boot can both be turned off, and theyre not to stop you from misusing your computer. You (he) might as well complain that AppLocker or Software Restriction Policies are draconian DRM-- except theyre really not, theyre a mechanism to harden the OS.

      >>(Quote)

      Stallman takes his ideology so far that he becomes completely irrelevant. I know of noone outside of the OSS movement (and surprisingly few in it) that actually take him seriously-- he goes so far off the deep end that hes managed to alienate a full half of the Unix userbase as well.

    19. Re:It's Time To Move On. by LordLimecat · · Score: 3, Insightful

      Pwn2Own was useful because the common claim was that it wasnt just the huge userbase of windows that attracted exploit writers. but that it was that Windows was actually less secure than OSX. But when a shiney new laptop is on the line, people had no problem getting root. You can argue that OSX had 9 root-level exploits and Windows had 10 in any given competition-- but its sort of a moot point. By far and away the biggest factor in what systems get exploited is monetary gain and return on investment.

      Id also note that, in the actual real world, somethin like 85-90% of exploits are non-OS-- theyre browser or browser plugin exploits. The only people arguing that Windows is more vulnerable to viruses are people with no friggin clue. Remove Java and virus incidence goes down like 50%.

    20. Re:It's Time To Move On. by LordLimecat · · Score: 1

      No one needs Adobe Reader...There's tons of alternative PDF viewers you can use.

      A lot of them lack features that Adobe Reader has. You're right that Adobe makes awful software, but again: in reality, people actually use it, and its sort of irrelevant to go on about how they dont actually need to.

      OpenJDK hasnt worked with any applet I've ever tried.

    21. Re:It's Time To Move On. by UnknowingFool · · Score: 1

      Pwn2Own was useful because the common claim was that it wasnt just the huge userbase of windows that attracted exploit writers.

      Again you failed to understand Pwn2Own. It said NOTHING about the relative security of OS X vs Windows or exploit writers. All it said was whether a system had an exploit not how easy it was to exploit. Either could have had an exploit so complicated that it was only usable the by the most skilled of hackers. Also remember th

      But when a shiney new laptop is on the line, people had no problem getting root. You can argue that OSX had 9 root-level exploits and Windows had 10 in any given competition-

      Again you failed to understand Pwn2Own. All it took was 1 exploit each. And the exploit was not always about getting root access. For browser exploits, it might have been launching another desktop program (like calculator) or writing a file to the HDD without permission.

      Id also note that, in the actual real world, somethin like 85-90% of exploits are non-OS-- theyre browser or browser plugin exploits. The only people arguing that Windows is more vulnerable to viruses are people with no friggin clue. Remove Java and virus incidence goes down like 50%.

      Again you don't seem to understand the nature of the problem. By its nature Windows was always more susceptible to viruses and OS X and Linux were far less susceptible due to the nature of the OS. Specifically viruses by definition self-propagate which Windows allowed. OS X and Linux by their nature did not allow program to autoexec.

      --
      Well, there's spam egg sausage and spam, that's not got much spam in it.
    22. Re:It's Time To Move On. by mwvdlee · · Score: 1

      OpenJDK hasnt worked with any applet I've ever tried.

      It runs the Netbeans and Eclipse IDE's just fine.
      Either you've only ever tried applets you hacked together yourself or you haven't tried running anything since OpenJDK was out of it's early alpha stages.
      By the way; who uses applets any more?

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    23. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      Except you're migrating between software compatible OS releases when you go from one Windows version to another. Even if you skip a release here or there they make a monumental effort to support old software. Migrating to a different OS entirely is a completely different scenario.

    24. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      Linux systems spy on users too. You live in a bubble if you think otherwise.

    25. Re:It's Time To Move On. by LordLimecat · · Score: 1

      Either you've only ever tried applets you hacked together yourself ...By the way; who uses applets any more?

      * Any Cisco web interface (generally REQUIRE official java 1.4.2
        * Dell's iDRAC
        * Assuming HP's iLO
        * Xerox EFI configuration interface

      Actually, really any of the "enterprise" applets seem to have this issue-- they have the commonality that they are all terribly written and require ancient versions of official JRE.

    26. Re:It's Time To Move On. by UnknowingFool · · Score: 1

      Thanks for nonsensical irrelevant and almost factually deficient rant.

      --
      Well, there's spam egg sausage and spam, that's not got much spam in it.
    27. Re:It's Time To Move On. by toddestan · · Score: 1

      It couldn't be features like ASLR and isolation control in Windows, with Apple taking years to catch up to the level of security that Microsoft included in Vista. Naw, couldn't be.

    28. Re:It's Time To Move On. by Lennie · · Score: 1

      Solution:

      Move as much as you can to webbased solutions, probably running on Intranet servers.

      That can be managed on the server.

      Every platform has a browser and they are more and more capable each release.

      --
      New things are always on the horizon
    29. Re:It's Time To Move On. by Anonymous Coward · · Score: 0

      > By its nature Windows was always more susceptible to viruses and OS X and Linux were far less susceptible due to the nature of the OS. Specifically viruses by definition self-propagate which Windows allowed. OS X and Linux by their nature did not allow program to autoexec.

      I had a thought after reading this paragraph. Your username is particularly apt.

    30. Re:It's Time To Move On. by UnknowingFool · · Score: 1

      Spoken like someone who was not there at beginning of Windows XP where there was a new virus of the week. But hide behind your anonymity, coward.

      --
      Well, there's spam egg sausage and spam, that's not got much spam in it.
  4. Dear Microsoft.... by DigitalSorceress · · Score: 5, Funny

    Dear Microsoft,

    Dear gods, please catch a ride on the clue train. Businesses don't want Windows 8 - the retraining necessary is just too costly, and all the cool features involving touch are useless for the cube farm drones.

    So just stop your stupid shit, realize the Windows 7 is your nex XP, make sure that Windows 9 undoes a lot of the silly bullshit, and maybe you won't completely jump the shark.

    Um also while I (fail to) have your attention - the Ribbon is still stupid. Stop wasting my screen real estate and go back to proper menus. // yeah I know it's a pipe dream, but I needed to rant and rage.

    --

    The Digital Sorceress
    1. Re:Dear Microsoft.... by Cley+Faye · · Score: 5, Informative

      You're very wrong when you say "all the cool features involving touch are useless for the cube farm drones."

      After having played with a surface tablet and an "embedded" windows 8 computer (those things that combine the computer and the screen), I can tell you this about the touch features: they are broken by design, gets in the way of doing things (even moving a file is more complicated than using a mouse, and why doesn't the keyboard pop up when hitting a textbox?), and as such are useless for everyone, not just the cube farm drones.

    2. Re:Dear Microsoft.... by savuporo · · Score: 5, Funny

      Dear Microsoft,

      Please make Windows 9 touch only, do not give anyone any menu, use the well known principle of most surprise for the user interface design, break all possible APIs, come up with another Uncommon Language Runtime, force me log into everything with the same username and password security be damned, put Bing on the way of actually getting to internet and if you could Ribbon me another two three screenfuls, all would be dandy.

      Only by implementing these urgent measures will you guarantee your local fanbase of 2 people will stay very loyal. And the rest can move on to better things and world will be a better place.

      Thanks,
      Your local detractor.

      --
      http://validator.w3.org/check?uri=http%3A%2F%2Fwww.slashdot.org Errors found while checking this document as HTML5!
    3. Re:Dear Microsoft.... by PrimaryConsult · · Score: 4, Interesting

      I've successfully gotten die-hard MS Office users to use OpenOffice precisely because it had menus rather than the stupid ribbon. The Oracle branding helped, and I think the Apache one probably would be just as effective.

    4. Re:Dear Microsoft.... by LordLimecat · · Score: 2

      and all the cool features involving touch are useless for the cube farm drones.

      Powershell 4.0 and 5.0, however, are not, nor is HyperV.

      Sort of amazing that a supposedly technical community thinks that the only thing different about Windows 8 is the GUI.

    5. Re:Dear Microsoft.... by Richy_T · · Score: 2

      And, of course, these are unavailable on 7 for purely technical reasons.

    6. Re:Dear Microsoft.... by JDAustin · · Score: 2

      I still use Excel 2003 for 90% of my excel work as I still have several custom toolbars that cannot be recreated w/ the ribbon. Being able to do many repeated functions w/ one click makes a world of difference.

    7. Re:Dear Microsoft.... by Anonymous Coward · · Score: 0

      Hyper V is useful. We installed win8 on a bunch of machines on ou test network solely for the VM stuff. Then we decided to use VMware anyway. So the only reason we haven't switched back to Win7 (or linux since IT won't claim these machines anyway) is because we're all too lazy to install more software. I spend nearly all my time in ssh sessions or with Workstation fullscreened anyway. So it's not like the underlying OS matters too horribly much.

    8. Re:Dear Microsoft.... by Anonymous Coward · · Score: 0

      Powershell is worthless. HyperV is great.

      PS is worthless because, in order to do anything useful, you need to fire up visual studio. Give me a gnu userland any day.

    9. Re:Dear Microsoft.... by PRMan · · Score: 1

      I like the ribbon for one reason only. You can apply 5-6 settings at once and get a visual image of what it's going to look like. That saves a lot of time vs previous Office versions.

      --
      Peter predicted that you would "deliberately forget" creation 2000 years ago...
    10. Re:Dear Microsoft.... by The+MAZZTer · · Score: 1

      The problem I have for Windows 8 is that the keyboard DOES pop up when hitting a textbox... when I have a hardware keyboard attached.

      That said, I am developing a touch-friendly web app, so as a cube farm drone, touch is very useful for me. :)

    11. Re:Dear Microsoft.... by Cley+Faye · · Score: 1

      Ooooh I only used the touch interface without a physical keyboard, that might explain things... ;)

    12. Re:Dear Microsoft.... by Nkwe · · Score: 1

      Powershell is worthless. HyperV is great.

      PS is worthless because, in order to do anything useful, you need to fire up visual studio. Give me a gnu userland any day.

      Um... PowerShell has nothing to do with Visual Studio. In fact (among other things), PowerShell lets you easily script against the native .NET libraries without having to compile code.

    13. Re:Dear Microsoft.... by Anonymous Coward · · Score: 0

      Oracle is not a positive thing here.

    14. Re:Dear Microsoft.... by BaronM · · Score: 1

      I wouldn't go so far as "useless", but I'd say powershell would be a lot more useful if I could count on having the AD and Exchange cmdlets available. As it is, many of my admin scripts are tied to my workstation due to dependencies.

      Or, the answer is I'm an idiot who doesn't know the right way to package and distribute powershell scripts.

    15. Re:Dear Microsoft.... by symbolset · · Score: 1

      Oracle branding helped, really? That surprises me.

      --
      Help stamp out iliturcy.
    16. Re:Dear Microsoft.... by Billly+Gates · · Score: 0

      Am I in the minority of prefering the ribbon over crappy nested menus all over the place and mouse hover/ change preview?

      It only took me a week to get used to it and I don't use open office because the menus are all so cumbersome.

      Has Slashdotters aged into their 40s and hate change or perhaps many use Linux so much that adopting to ribbons never took place? I also like the keyboard shortcuts integrated into the ribbon when I hit alt. No mouse nor learning combos thanks to the visuals.

      I have not heard anyone outside of Slashdot complain about the ribbon in years

    17. Re:Dear Microsoft.... by Grishnakh · · Score: 1, Troll

      Dear Microsoft,
      Dear gods, please catch a ride on the clue train. Businesses don't want Windows 8 - the retraining necessary is just too costly, and all the cool features involving touch are useless for the cube farm drones.
      So just stop your stupid shit, realize the Windows 7 is your nex XP, make sure that Windows 9 undoes a lot of the silly bullshit, and maybe you won't completely jump the shark.

      Dear DigitalSorceress,

      Please see our raised middle finger, aimed in your direction. We don't care what businesses (or consumers) want; they'll take what we give them, whether they like it or not. We don't care about their retraining costs, or how much the Windows 8 UI affects productivity. We want to make everyone used to our new UI so that we can sell more Windows Phones and become dominant in that market. If businesses don't like that, too bad. What are they going to do, convert their entire MS-based infrastructure (including Exchange/Outlook, Office, Sharepoint, AD, etc.) to something else? Bwahahahaha! Your naivety is really quite amusing.

      Stop complaining and learn to like Windows 8, the Ribbon, and anything else we deign to provide to you. We know you're not going to bother to switch to anything else.

      -- Microsoft

    18. Re:Dear Microsoft.... by Grishnakh · · Score: 1

      That's rather optimistic thinking there. Businesses haven't switched away from MS yet, despite all the dumb stuff they've done, so I'm quite sure they could do all those things you listed there, and businesses would continue to buy their crap.

    19. Re:Dear Microsoft.... by Anonymous Coward · · Score: 0

      For the casual user, the Ribbon is a vast improvement. For the 'power' user, the ribbon may have obscured some functionality that was easier to access via menus. The vast majority of users fall into the former category yet few care enough to post about it, so you most often see posts from those who find it annoying. Their grievances seem to stem from a major shift in UI design towards simplifying the appearance at the cost of hiding functionality, which is often not a good thing. I quite like the Ribbon for most basic tasks, but it does make more advanced document formatting / manipulation cumbersome; of course, if you're doing that it's nearly time to ask whether Office is the best tool for the job.

    20. Re:Dear Microsoft.... by LordLimecat · · Score: 1

      Im not sure you understand how commercial software works. Theres no technical reason that the features in any particular software, version n+1, couldnt be backported-- except for the fact that a lot of the time the whole point is that new features require additional work and additional funding.

      And for the record, Powershell 4 actually IS backported to Win7... not sure about Powershell 5, as its still in RC.

    21. Re:Dear Microsoft.... by LordLimecat · · Score: 1

      PS is worthless because, in order to do anything useful, you need to fire up visual studio.

      Yea, thats basically entirely false. I use it every day in managing a network, including our storage and printing infrastructure. I do 50% of my work in the console, 30% in notepad++, and 20% in an IDE like PowerGUI or Powershell ISE.

      Visual studio doesnt even work with Powershell-- Im not sure where you're getting your info, but its terribly incorrect.

    22. Re:Dear Microsoft.... by LordLimecat · · Score: 1

      You CAN do AD stuff without the AD cmdlets, but it ends up being sort of like VBS. Generally you will need RSAT.

      Simple solution would be to deploy it with GPO.

    23. Re:Dear Microsoft.... by shutdown+-p+now · · Score: 1

      Visual studio doesnt even work with Powershell

      It does now, though this is a third party extension (albeit based on Microsoft's own Python Tools - yay open source).

    24. Re:Dear Microsoft.... by mwvdlee · · Score: 2

      Oracle is a famous and well-respected brand for anybody who hasn't a clue what they actually produce.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    25. Re:Dear Microsoft.... by mwvdlee · · Score: 1

      Hate to admit it, but having recently had to use both LibreOffice and Word (2010) and I strongly prefer the ribbon over the two-rows-of-tiny-indistinguishable-icons.
      The ribbon may offer less functionality, atleast I don't have to search for basic functionality.

      Fact is, if you want to do complex things in either, your most productive "user interface" is Google.
      Word's ribbon is basically a narrow and deep organization of features, LO/OO is wide and shallow. Neither one makes finding advanced features easy.

      I'd wager there are actually very few true power users. Most daily users just use a small subset of regular features. The problem with the ribbon is that each of these users has atleast one feature in their small subset of features, that has been made harder to get to (I'm looking at you, keep-lines-together and custom-table-of-content).

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    26. Re:Dear Microsoft.... by Anonymous Coward · · Score: 0

      I provide phone support for enterprise storage; more businesses are switching to Linux because of Win 7/8.

    27. Re:Dear Microsoft.... by PrimaryConsult · · Score: 1

      Precisely. The Oracle splash screen was the most important "feature" when trying to pitch an MS Office replacement to the type of people who only buy brand name groceries.

    28. Re:Dear Microsoft.... by Grishnakh · · Score: 1

      For servers or desktops? Linux has long been dominant for things like webservers; that's nothing new. It's seen some use for other server duties too thanks to Samba. But it's not so easy to replace things like Sharepoint or Exchange or AD servers with it. And then desktops are another issue entirely.

    29. Re:Dear Microsoft.... by LordLimecat · · Score: 1

      It is not as simple as that. I dont recall the exact issue (i think its really wonky/bad intellisense), but suffice it to say you're far better off using Powershell ISE, PowerGUI, or Powershell Studio.

      Either way, the idea that you even need an IDE for Powershell is as dumb as claiming that bash requires the use of Eclipse.

    30. Re:Dear Microsoft.... by shutdown+-p+now · · Score: 1

      You don't need an IDE for a day-to-day use of PowerShell, of course (as you rightly note, if it did, it would be a failure of a shell). But it's also used to write lengthy scripts, just as bash. And for those, having something that is more akin to a developer tool can be very helpful.

      The extension I linked to is still in early stages of development and the guy is working hard on it. I've no doubt that it has a lot of quirks at the moment, but it's also improving really fast - to the point that some people inside MS have noticed.

    31. Re:Dear Microsoft.... by Richy_T · · Score: 1

      That's largely the point. Microsoft use non-core improvements to drive OS upgrades even when the only reason that those features don't run on older OSs is due to something as trivial as an OS check. Indeed, many people have been successful in backporting stuff from one version of Windows to another even though that's not supported by Microsoft.

      This leads to all sorts of problems when people are dependent on features or bugs from that old OS and all sorts of problems for Microsoft as they try and carry those features and bugs forward into their new OSs to maintain compatibility.

      Software should only be limited to OS by technical requirements, not marketing requirements.

    32. Re:Dear Microsoft.... by david_thornley · · Score: 1

      Oracle produces many wonderful things, the strangest and most wonderful being their pricing. With a lack of clear guidelines, it exists in a quantum superposition of "lots more expensive" and "whole lots more expensive".

      --
      "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
    33. Re:Dear Microsoft.... by Curate · · Score: 1

      The problem I have for Windows 8 is that the keyboard DOES pop up when hitting a textbox... when I have a hardware keyboard attached.

      Define "hitting a textbox". Do you mean touch it (assuming you have a touch screen), click it with the mouse, tab to it using the keyboard, ...? In a set-up with both a touch screen and a physical keyboard attached, which is common in a lot of new laptops, if you "touched" a textbox then I think it's reasonable for Windows to assume you want to continue touching rather than switch to keyboard input. But if your set-up has no touch capability at all, then yeah, it's dumb to ever see an on-screen keyboard.

    34. Re:Dear Microsoft.... by Anonymous Coward · · Score: 0

      PS - Kinect should also be required.

  5. Naturally, they've done it before by Todd+Knarr · · Score: 4, Insightful

    This is just an extension of the kind of coerced upgrade Microsoft's attempted before. With Vista and then with Win7, when they didn't take off on their own MS tried to force the issue by making the latest versions of IE and DirectX and such only available for Vista/7, not XP. This is the same thing: "Upgrade to Win8 or take the heat for running a vulnerable OS.". Thing is, it'll backfire the same way the "no latest DirectX on XP" did. Win7's such a large base that developers can't afford to write code that won't run on it, so they won't be able to use the new Win8-only safe functions. Which means applications will remain vulnerable on Win8, just like on Win7 where they also run.

    1. Re:Naturally, they've done it before by symbolset · · Score: 1

      Somehow the very same people who call Android "fragmented" are quite fine with this kind of arbitrarily forced fragmentation. The latest Chrome, Firefox, OpenGL are available on 99% of the Windows installed base, and 80% of the vastly more numerous mainly mobile other platforms as well. The latest IE and DirectX? 12% of Windows only, less than 6% of the installed base in active use. Is it any wonder web developers have come to ignore IE, game developers are shifting to OpenGL? It doesn't matter how good it is if only one in 20 people can use it, and the competing platform gives you 9 in 10.

      --
      Help stamp out iliturcy.
    2. Re:Naturally, they've done it before by Anonymous Coward · · Score: 0

      There were some pretty big differences between Vista and XP in terms of technology. Newer versions of IE were built on top of these technologies. Should these technologies be backported to XP? Or should the same version of IE run differently on different OS versions?

  6. Don't Tell Me This by Nom+du+Keyboard · · Score: 4, Informative

    I don't want to hear this. I just finished the migration from XP to Win7.
    Do not want to go through that again for another 6 years.

    --
    "It's the height of ridiculousness to say for those 9 lines you get hundreds of millions."
    1. Re:Don't Tell Me This by Anonymous Coward · · Score: 0

      True your safe from getting Aids unless its from a blood transplant. Even your right hand wont have sex with you.

    2. Re:Don't Tell Me This by symbolset · · Score: 1

      Somewhere along the line you said "we must migrate, losing most of our apps, business data formats, device support, UI familiarity. Let's migrate to the one platform we know for sure will make us do it again." Don't expect anybody to cry for you when you have to do it again. You knew, and you chose it.

      --
      Help stamp out iliturcy.
    3. Re:Don't Tell Me This by Anonymous Coward · · Score: 1

      UI familiarity

      Given the recent history of both gnome and KDE, I'm not sure this point has as much weight as it once did....

      To be fair, windows 8 takes UI redesign and failure to a whole new epic level of failure.

    4. Re:Don't Tell Me This by symbolset · · Score: 1

      If you want to, you can choose the old UI.

      --
      Help stamp out iliturcy.
  7. Is security a feature? by Glasswire · · Score: 1

    The interesting question is: should an OS vendor be able to sell a later generation of OS as "more secure" than a previous one as a feature to induce users to migrate to it, (clearly Microsoft's position on Win 8.1 vs Win 7 ) or does it have a responsibility to make all released product as reasonably secure as it can based on what it knows to and define features as capabilities, performance, etc outside of security?
    I think it's fair for Microsoft to tout improvements like more secure kernel design or other elements that are core architectural advantages of a new OS (which cannot reasonably be replicated in earlier versions) but limiting fixes to common libraries, present in old and new OS, which have been found to be insecure, that could be patched for minimal effort in the old OS, to create an artificial distinction between old and new is not a security feature difference, it's a churlish forcing function. Win 8.1 is not better on security than Win 7 if the part of that difference depends on selectively responding to vulnerabilities.
    Ironically, toward the end of it's life, XP got better support than Vista, because a Vista was a short-lived, poorly received follow-on that was quickly succeeded by Win 7. I'll predict that 3 years from now, after Win Next (9.0 or what ever) has been shipping for a while, the install base of Win 7 will still be far higher than that of Win 8.x and support (Microsoft and 3rd party drivers/apps) will be much better for Win 7 than it will be for Win 8.x. No doubt Microsoft will say it's most secure OS at that time will be Win 9.x but if it stopped providing critical patches to the second most popular OS way back in 2014, there's going to be trouble. (Anybody want to bet Microsoft at some point will be providing patches to vulnerabilities in Win 7 that they DON'T bother to do for Win 8.x because no one will care about "Vista-Next" anymore?)

    1. Re:Is security a feature? by symbolset · · Score: 1

      Should they be allowed? Yes. They should be allowed to sell almost anything. Should they be able? People buy stuff for reasons other than it is good stuff. Whether or not they should is a tricky question. The question of whether they should be able to sell it is equally tricky. Whether they should ethically in turns leave their legacy customers vulnerable is equally tricky. A longer term of security support investment implies a higher cost that must be matched with a higher price.

      --
      Help stamp out iliturcy.
    2. Re:Is security a feature? by Grishnakh · · Score: 1

      Yes, they absolutely should be able to sell later generation OSes as "more secure", and totally ignore security exploits on older versions.

      If customers are dumb enough to continue to patronize such a vendor, they deserve whatever happens to them.

    3. Re:Is security a feature? by shutdown+-p+now · · Score: 1

      This is not a patch for any known security exploit. It is preventive hardening of the code that may potentially have exploit due to use of C functions that may result in a buffer overrun, like strcpy.

    4. Re:Is security a feature? by Glasswire · · Score: 1

      Same thoughts apply to hardening exploitable code. If it's common to old and new OS and easily fixed (vulnerability is lessened) then it probably should be updated.

    5. Re:Is security a feature? by shutdown+-p+now · · Score: 1

      The cost of doing such things is usually much lower on the code that's already experiencing heavy churn than it is on something that has been largely laid to rest a while ago. Trivial or not, every such change comes with a cost for code review, testing of the code (can you imagine the Windows test matrix? don't forget localization), testing of the update procedure (incl. from various combinations of previous updates) etc. On the other hand, if you're going to ship an update touching that many bits for another reason, then that cost is already there.

      BTW, note that we're still not talking about "exploitable code" here. Just because a code uses strcpy doesn't automatically make it exploitable - it's perfectly possible to use it right, it's just easier to make a mistake, and you wouldn't know either way without a code audit, so it's cheaper to put range checks everywhere.

  8. Re:Two bits to say here by Anonymous Coward · · Score: 1, Insightful

    I believe that the updates have not been applied to Windows XP. There was a point in time when Win7 was being updated but XP was not getting those updates.
    The only significance I'm seeing in this is that WIn7 is still within its support period. Still, this could make some sense if the new security implementations actually rely on technology foundations that are actually built into Windows 8 but which are not a part of Windows 7. That's one possibility that would make some sense.
    Unfortunately, Microsoft may feel an incentive to categorize updates as being appropriate only for Windows 8, simply in hopes of driving people away from older operating systems.

    Rant: It's not like updating only Windows 8 is sufficiently convincing to get people to move from Windows 7 to Windows 8. Even if Microsoft refused to fix a terrible flaw threatening Windows 7 machines, that doesn't mean I would worsen the situation by going to Windows 8.1 or, even worse, Windows 8. Like Vista, Windows 8 (including 8.1) is condemned to be something that should be skipped. Hopefully Windows 9 will be less useless.

  9. let the hand wringing begin by Anonymous Coward · · Score: 0

    So basically what happened is that as part of developing 8 and 8.1, Microsoft improved the security model in various places. This is done in every major OS release from every vendor. You wanted the latest and greatest? Then upgrade.

    It's not as if there are unpatched vulnerabilities that are being left in there. But neither the submitted or other commenteds so far seem to understand that.

  10. Windows Tax by BoRegardless · · Score: 1

    Pay the upgrade or you deal with the "other" costs.

    Apple is pushing the envelope: Free OS updates. Works on their hardware back 4-5 years.

    My suspicion is MS, likewise, must get into the hardware business & become vertical.

    1. Re:Windows Tax by BoRegardless · · Score: 2

      "14% of Windows personal computers were on Windows 8", noted by Tim Cook vs "51% of Macs on Mavericks"

      Heavily fractured ecosystems are difficult for both OS & App suppliers. What is "working" in the real world.

      Where are we going?

    2. Re:Windows Tax by bondsbw · · Score: 1

      That means about 12.3% of computers are Windows 8 vs. 3.7% Mavericks. So take from that what you will.

      --
      All my liberal friends think I'm a conservative, all my conservative friends think I'm a liberal.
    3. Re:Windows Tax by Belial6 · · Score: 1

      That was my first thought on the numbers. For all of the "Everyone is now buying Macs." that we keep getting astroturfed with, OSX market share is still far closer to that of Desktop Linux than it is Windows adoption. (Of course, we have to limit the linux market share to "Desktop" because it would otherwise completely eclipse OSX market share.)

    4. Re:Windows Tax by ron_ivi · · Score: 1

      My suspicion is MS, likewise, must get into the hardware business & become vertical.

      Suspicion?

      That's been pretty obvious for a while.

      There's even a word in the tech community coined from how Microsoft resorts to competing with its hardware partners: http://gigaom.com/2006/07/22/z... "Microsoft Partners, You Been Zunked".

      For handheld devices, they've been doing since at least 2003: http://www.theregister.co.uk/2... .

      And Surface is obviously a sign that Microsoft sees laptop vendors like HP and Dell as their direct competitors now.

    5. Re:Windows Tax by amxcoder · · Score: 1

      Yeah, and to add to that, as anecdotal from my own survey of everyone that I see running a mac, about 80% or more of them in the business realm, are also running Windows on their Mac... either in the form of boot camp (dual boot), or parallels/VMWare virtual machines to get a lot of work done on them that they can't do on OSX for various reasons, mostly because they need to run software that is windows based.

  11. Article is dumb. by Kaenneth · · Score: 3, Insightful

    These are mostly new functions added for Windows 8, they don't exist in the Windows 7 SDK.

    If you wrote your programs to use them, they wouldn't work on 7, only 8, which everyone seems to hate.

    If MS added them to a patch for 7, there would then be 2 fragmented versions of Windows 7, so if a customer calls you asking if your software works on Windows 7, you would have to ask if they have installed KB######, and they would say 'I don't know.', or they might lie and say yes, or no, and you'll have to walk them through checking installed Windows updates...

    1. Re:Article is dumb. by msobkow · · Score: 1

      Have you ever noticed the runtime libraries that application installers check for and auto-install while installing the application?

      Is there some reason you couldn't do the same for these magical Win7 patch libraries/DLLs?

      --
      I do not fail; I succeed at finding out what does not work.
    2. Re:Article is dumb. by Anonymous Coward · · Score: 0

      This "fragmentation" situation has happened before. Say, requires XP SP2 or greater. The versioning model is the service pack.

    3. Re:Article is dumb. by shutdown+-p+now · · Score: 1

      StrSafe.h has been around since XP, actually. It can also be used header-only, with all the functions declared as inline.

  12. Re:Still sticking with XP... by Anonymous Coward · · Score: 0

    You own a 1974 Volkswagen, don't you?

  13. Nope, not gonna downgrade to Windows 9 by penguinoid · · Score: 5, Interesting

    Sorry Microsoft, people use your product for two reasons: 1) it's well entrenched 2) it's easy to use and familiar. If you want them to switch from win 7 to win 8, you have to do it by ruining the usability of win 7, not its security.

    --
    Don't waste your vote! Vote for whoever you want, unless you live in a swing state it won't matter anyways
    1. Re:Nope, not gonna downgrade to Windows 9 by Anonymous Coward · · Score: 0

      If you want them to switch from win 7 to win 8, you have to do it by ruining the usability of win 7, not its security.

      Aha! Just dump metro your captive Windows 7 audience, MS.

      It's not like changing OS core radically in between Windows versions is new; the [optional] IE4 installs had major changes to Win95's explorer shell behavior, beyond the largest one (remember Active Desktop? well how about the fact that JPEG wallpapers were impossible until then?). The PC had to reboot twice after that one, and on 4MB ram the experience was much slower after that. Updated File copy dialogs were slower even for single item copies.

      Metro would still be pretty huge a change for a non-number upgrade, but at that point, Win7 Metro would leave you cursed with little to do but move forward for security updates. Genius.

    2. Re:Nope, not gonna downgrade to Windows 9 by Billly+Gates · · Score: 2

      Actually Windows 9 will have HUGE impact on games as the DirectX will have mantle like performance where CPU waits on redraws are near gone. Trim in raid and PCI ssd is nice too and cortana ... Well we will see but I always wanted a system like the enterprise on star trek with voice.

  14. Re: Inside The Giant Spider's Den, hacking at webs by Anonymous Coward · · Score: 0

    First off: Too long; didn't read.

    But seriously, people knew about the lack of privacy using a Kinect way before the Xbox One was even released, it was well publicized and MS received backlash over it.

    This is like people using Facebook for 5 years and then hearing that they might be being tracked... DUH!

    Get a clue, man.

  15. Re:Inside The Giant Spider's Den, hacking at webs by meerling · · Score: 1

    Somebody please mod that AC idiot offtopic, and maybe a few other things as well, and let the rest of us get back to ragging on microsoft for not doing the security patches on win7.

  16. Amazed by asmkm22 · · Score: 1

    I'm just amazed that no matter how horrible Microsoft handles their Windows dominance, there is literally no competitor ready to pick up the slack. Open Source is largely a joke when it comes to most businesses, and Apple seems more interested in the hipster and grandma crowd than actual networks. Where is the competition? It's like Microsoft has managed to reach a natural position of "too big to fail." Is it just because the young startups are more interested in creating the next Cloud Service (tm) or Flappy Birds? Is it a funding issue, where you can't get VC support on something that won't show a massive return in under a year? What's the deal?

    1. Re:Amazed by Funk_dat69 · · Score: 3, Interesting

      Why would anyone new enter a market that has clearly peaked? Smartphones and tablets are replacing PCs for web surfing, video watching, social media, email and some gaming. You basically have your enthusiast gamers (not really that big of a market) content creators and developers left.
      And I don't see how you call open source a joke. The only thing funny is that some people still look to Microsoft or Apple to tell them what technology to use. Why?
      Windows 8 is a very confused product, reflecting the confusion of it's parent company.

      Who needs this crap? Give Linux a chance. On the server it's a no-brainer. On the desktop, it takes some getting used to, but it is more than adequate for what you need from desktop OS.

      --
      FUNK!
    2. Re:Amazed by asmkm22 · · Score: 1

      My clients range from property management to law firms to multi-million dollar construction contractors. Every single one of them has one or more bits of software that won't run on Linux. Quickbooks, Sage products, Office (to properly open files their clients send), medical software, etc, all depends on Windows. "More than adequate" simply doesn't cut it.

    3. Re:Amazed by Anonymous Coward · · Score: 0

      Or maybe, just maybe, writing an OS, driver, and productivity application ecosystem to appease a large majority of people in the REAL WORLD is HARD.

      GUIs on Linux are at at better advantage because they get to pick and choose what works and what doesn't, based on what Microsoft attempts to do first.

      Microsoft comes out with a feature or element that is a huge success: copy it
      Microsoft comes out with a feature or element that is an embarrassing failure: claim you're better because you don't have that feature.

    4. Re:Amazed by Attila+Dimedici · · Score: 2

      Let's see, you have clients who need software that only runs on Windows...and you ask why no competitor has come out with an OS to compete with Windows? Um maybe the answer is because there are so many business applications that only run on Windows?

      --
      The truth is that all men having power ought to be mistrusted. James Madison
    5. Re:Amazed by Funk_dat69 · · Score: 1

      There are small business accounting software applications for Linux. Now maybe your or your clients prefer ones that are not on Linux, but that doesn't mean others are not satisfied with them when running Linux.

      Check out GnuCash or Lazy8. Also quickbooks online works with Linux.

      --
      FUNK!
    6. Re:Amazed by Anonymous Coward · · Score: 0

      You are right about one thing: Open Source is a joke.

    7. Re:Amazed by Anonymous Coward · · Score: 1

      GUIs on Linux are at at better advantage because they get to pick and choose what works and what doesn't, based on what Microsoft attempts to do first.

      I haven't seen that kind of trend in the OSS world. Linux desktop environments are usually something between Windows and Mac, and just when all the bugs are ironed out, the whole damn thing is completely rewritten from scratch. Rinse and repeat.

    8. Re:Amazed by Belial6 · · Score: 1

      I am still confounded by the fact that any businesses send or are willing to accept files other than PDF or CSV. Really I get that there are some extreamly unusual cases where something else might be needed, but for 99.999% of all cases anything that could be sent as an MSOffice file would be better served as a PDF or CSV file.

    9. Re:Amazed by TapeCutter · · Score: 1

      It's not about what the client prefers, it about the system the client already owns. Business only cares about two things when they look at competing software with similar functionality, how much and how long. Many businesses get stuck in a time warp when backwards compatibility is broken (eg:IE6, Python, PHP). IE6 aside, this is actually a strength of Windows and one of the (non-evil) reasons why they were able to dominate the market in the first place, overall they maintain a much higher degree of backwards compatibility than (say) solaris.

      Sure if you have one PC that you do your accounts on then the expense and time to swap may be trivial. However let's take an example from my own workplace that has nothing to do with windows, we run a CVS repository that has 5-6 large applications and about 30 different product/version combinations stretching all the way back to the 90's. This giant spaghetti ball is wrapped in python scripts to make it comprehensible. There are significant organisational benefits to be had by switching our ~25 devs to subversion, git, clearcase, or any other modern revision control system. However there are 2 perfectly rational reasons why we won't do that, namely time and money.

      --
      And did you exchange a walk on part in the war for a lead role in a cage? - Pink Floyd.
    10. Re:Amazed by asmkm22 · · Score: 1

      PDF's are common, but I never see CSV's in the wild. Anyway, the real problem is the stuff like Sage products, or other industry-specific software like Lexis Nexus or Time Matters, or medical records stuff. There's basically zero Linux support with the big players.

    11. Re:Amazed by asmkm22 · · Score: 1

      And if a strong competitor were to show up and actually offer an alternative, I'm sure the programs would be ported. My point is that I find it amazing how Windows has been strongly criticized for a solid 10 years, and there has been zero competition or market influence to challenge Microsoft.

    12. Re:Amazed by Attila+Dimedici · · Score: 2

      Linux is a strong competitor (or as strong as any competitor can be if no one ports their software to it).

      --
      The truth is that all men having power ought to be mistrusted. James Madison
    13. Re:Amazed by Belial6 · · Score: 1

      Is any of this being sent in MSOffice format though?

  17. Re:Inside The Giant Spider's Den, hacking at webs by Anonymous Coward · · Score: 1

    tl;dr

    Anyway, I only take me advice from APK.

  18. Windows 8 would be fine without that new UI by Joe_Dragon · · Score: 1

    Windows 8 would be fine without that new UI.

    Enterprise users are on 7 and moving to 8 now when windows 9 maybe hear next year and some have just moved to windows 7?

    While you get 3rd party tools to make windows 8 like windows 7 in Enterprise useing them can be iffy.

    1. Re:Windows 8 would be fine without that new UI by Anonymous Coward · · Score: 0

      It's just fine with the new UI. Faggots, assholes, and idiots have always bitched about UI changes. That won't ever change. With a growing population, the number of those people is continuously rising. Hence, increased bitching. 99% of these people NEVER understood how to customize the original start menu and left their desktop splattered with shortcuts of which only about 15% of them they actually use frequently. Fuck em'.

  19. Re:Still sticking with XP... by asmkm22 · · Score: 1

    Probably best that you didn't bother upgrading if it would have taken you 2 to 3 days to learn the differences between XP and 7...

  20. Re:Still sticking with XP... by Anonymous Coward · · Score: 0

    Except that programs are running faster on Windows XP than on Windows 7, because the OS take less CPU resources.

    Bang! Idiot destroyed.

  21. Hitting The Geek's Berzerk Button by westlake · · Score: 2

    From a post to the The Register:

    NumptyScrub :

    The fact that these extra functions are aimed at developers, and as far as I can tell are intended to provide bounds checked variables (e.g. protected against buffer overflow shenanigans) could be cause for some concern. It does not count as a fix of existing broken functionality though, so I don't see how it would qualify as MS ''ending support'' for Win7 if they chose not to add these extras to all existing OSs of theirs.

    Redmond is patching Windows 8 but NOT Windows 7, say security bods

  22. Re:Still sticking with XP... by Mashiki · · Score: 3, Insightful

    Yep, Windows 7 and XP are so fundamentally different in terms of the UI that it *might* have taken you all of 15 minutes to learn the differences.

    And of course if it was Windows 8, it might have taken you all of 10 minutes to install a UI shell which would have made the experience exactly the same. Then again if your internet is the equivalent of a string between two cans, I can see it taking 2-3 days to find this out.

    --
    Om, nomnomnom...
  23. Re:Giant Spider's Blood by ledow · · Score: 1

    TL;DR

    (but wrote you off as a nutter anyway)

  24. Re: Two bits to say here by binarylarry · · Score: 1, Insightful

    Hopefully Google, Apple and Canonical find a way to replace Microsoft products before Windows 9 ships.

    --
    Mod me down, my New Earth Global Warmingist friends!
  25. My explaination by yuhong · · Score: 2

    Well, it is relatively cheap to do things like this during development of a new major version but relatively expensive to do a security update or hotfix, so they need proof there is actually an exploitable bug, though they will often review surrounding code and do additional fixes when developing security updates.

  26. Dude, you left me hanging! by Anonymous Coward · · Score: 0

    These are mostly new functions added for Windows 8, they don't exist in the Windows 7 SDK.

    If you wrote your programs to use them, they wouldn't work on 7, only 8, which everyone seems to hate.

    If MS added them to a patch for 7,

    written from scratch,

    there would then be 2 fragmented versions of Windows 7

    and wouldn't be done.

    And that is why windows 7 would be shunned.

  27. Dear Microsopft by Anonymous Coward · · Score: 0

    Every time I hear what this company is doing or not doing next, I have to take a shit.

  28. Re:Still sticking with XP... by Livius · · Score: 0

    Two to three days to *fix* the differences between XP and Windows 7.

  29. Do they still sell windows 7? by nurb432 · · Score: 1

    If not, that is what you get for using out of date software. Get your wallet out and climb on board the upgrade train, or accept the situation and be happy.

    Sarcasm aside, who honestly expects a company to support non-products ? I dont.

    --
    ---- Booth was a patriot ----
    1. Re:Do they still sell windows 7? by Anonymous Coward · · Score: 0
    2. Re:Do they still sell windows 7? by Belial6 · · Score: 1

      Really? I expect every reputable company to do that. They don't tend to support them forever, but if they drop support as soon as a new version comes out, I don't trust buying the new product from them.

    3. Re:Do they still sell windows 7? by Anonymous Coward · · Score: 1

      Sarcasm aside, who honestly expects a company to support non-products ? I dont.

      Windows 7 SP1 doesn't go End of Life until 7 months and a week from now. Yes, I expect it to be supported.

    4. Re:Do they still sell windows 7? by Anonymous Coward · · Score: 0

      Hmmmm...I believe the auto industry is required by law to make sure parts for any given model year are available for 30 years after the car is introduced. So to answer your question, the federal government.

    5. Re:Do they still sell windows 7? by ThatsMyNick · · Score: 1

      Yes, they still do sell win 7.

    6. Re:Do they still sell windows 7? by Anonymous Coward · · Score: 0

      No. That's only the end of "mainstream support", which means no more platform changes. The normal security updates will be flowing till 2020.

    7. Re:Do they still sell windows 7? by shutdown+-p+now · · Score: 1

      Microsoft publishes timelines for various degrees of support for all its products, and just because a product is no longer sold (which I doubt is actually true of Win7) doesn't mean it's out of support.

      The reason why this is really a non-story is that the change is not to fix any particular security issue, it's just generic hardening of code. It's literally the Windows equivalent of replacing strcpy with strlcpy in a bunch of code, just in case there's a heretofore unknown way to trigger a buffer overrun.

  30. Squeeze blood from the rocks! by Your+Average+Joe · · Score: 1, Insightful

    I say de-support all OSes but Windows Server 2012r2 and Windows 8.1 x64!

    Force all users to buy the latest OS and use it! I am sure the shareholders will LOVE that card trick.

    --
    Your Average Joe
  31. Re:That is scummy. by jones_supa · · Score: 1

    Nerd rage, the funniest form of rage.

  32. Open source many eyes is pure BULLSHIT PR by Anonymous Coward · · Score: 0

    Debian had a REDUCED ENTROPY random number generator for TWO YEARS

    https://www.schneier.com/blog/archives/2008/05/random_number_b.html

    All these claims of openness and MANY EYES, is PURE BULLSHIT.

    These features are HIGH SECURITY IMPACTING, HBI (High Business impact) yet open source FAILED for TWO YEARS.

    Linux is NOT the answer.

    1. Re:Open source many eyes is pure BULLSHIT PR by Poingggg · · Score: 2

      First: how long would this have lasted when the source had not been open? Three years? Four? Ten?
      Second: The article you mention is from 2008, SIX years old so no longer relevant,
      Third: Open Source is not ideal, nor is Closed Source. But WHEN a fault is found in OSS, as a rule it will be fixed. Failures may exist in CSS for long times, and be exploited, without anyone but the exploiter knowing about it. And when such a failure is exposed, you have to wait if and when the maker of the software fixes it.
      So, OSS is, as a rule, safer then CSS. Maybe Linux is not THE answer, Windows should not even be asked for.

      --
      What person will donate an airborne act of love?
    2. Re:Open source many eyes is pure BULLSHIT PR by TapeCutter · · Score: 2

      Your confusing transparency with vigilance, in my 25yrs experience working in commercial software houses, I have rarely seen anyone attempt to review, debug, or modify OSS code, they just plug it in to their own application and wait for a patch to be released if something goes wrong, which is exactly what they do with CSS. Why? - Because as soon as you apply your homespun patch to the source you have forked the OSS source and you now have yet another ball of spaghetti to maintain. The unspoken principle of "you touched the source, so you own the problem" comes into force.

      --
      And did you exchange a walk on part in the war for a lead role in a cage? - Pink Floyd.
  33. Re: Two bits to say here by SuperTechnoNerd · · Score: 1, Flamebait

    Hopefully Google, Apple and Canonical find a way to replace Microsoft products before Windows 9 ships.

    Out of the frying pan, into the fire..

  34. Maybe... by Anonymous Coward · · Score: 0

    all you crotchety nerds should stop whining. Windows 8 and 2012 are here and are the future. If you can't sell it to your business, you're doing it wrong. But hey, keep your old OSes. There will be more jobs for me. Dear Microsoft, please keep innovating and providing a solid platform for those of us that actually see what your products can do.

    1. Re:Maybe... by symbolset · · Score: 1

      You tell 'em! "Get over it. It's not like you have a choice. We have all your data locked up in proprietary apps on our proprietary system so there is no escape. Your helpless pleas only bring us joy. We have no compassion for you, you feeble wretch. Hahahahaha."

      --
      Help stamp out iliturcy.
  35. I absolutely HATE to say this but... apk by Anonymous Coward · · Score: 0

    Sometimes, Microsoft REALLY disappoints me: & I'm one of their BIGGEST fanboys out there + possibly certainly here as well on this forums - they're turning into the Roman Empire near its decline (then again, so is the USA)... I suppose it's really the nature of man himself & greed.

    I say that, since we all KNOW it doesn't have to be that way... but, there's how it OUGHT to be, & then there's the way it really is.... especially due to the TRUE "root of all evil" the big crap table, the stockmarket - since when all that matters becomes money in the end for a company (& it should be about QUALITY PRODUCT, or the money goes "bye bye" eventually when folks wise up to that fact happening when it's not), it's over, or near to it, & you're on the way down.

    APK

    P.S.=> Where's it all come from? The "top" of their mgt. chain & boards of directors, like anything else does in a stratified organization... I wish "King Billy" would come back in there & "clean house", I really do - beneath him, MS could essentially do no wrong & was batting a 1000 constantly imo @ least (for the most part, most of the time) - that doesn't seem to be the case anymore. I just hope they do a GREAT JOB on Windows 9, bringing back the desktop interface we all used for decades last seen in Windows 7, & concentrate on shoring up their code vs. security issues + of course, optimizations for speed/performance too & STEERING CLEAR OF "CLOUDIFYING" IT & THEIR OFFICE SUITES... & per my subject-line? I don't *think* that's going to happen, @ least not on ALL counts I just noted... makes me sad, like it does anything in life - especially when I see GREAT THINGS start to go bad!

    ... apk

    1. Re:I absolutely HATE to say this but... apk by Opportunist · · Score: 5, Insightful

      MS is the IBM of the new century. No, really.

      IBM was the "computer company" up 'til about the 1980s. You could simply not ignore IBM if you had anything to do with computers in a way that goes beyond hobbyist interests. You had a company and that company used computers? You had IBM. You might have had some other tools and toys, but the core of your computer system, the backbone, the framework and pretty much everything that was relevant to actually getting and keeping your computer system running was IBM.

      This of course led to some serious hubris by IBM. The same "my way or the highway" attitude you can see in MS today. We tell you what you buy and you will eat our shit and call it chocolate fudge. I guess it goes without say that this didn't really sit too well with the various companies, but, well, what can you do? If you need computers in your company, you can't ignore IBM.

      Times changed and PCs came, and IBM ignored them as petty machines that don't fit their paradigm of the mainframe - terminal ideal. They did enter the PC market halfheartedly, but when they noticed that the PC is here to stay, they tried to regain control over it. The MCA illustrates this very well. It was a bus vastly superior to the (then standard) ISA bus. Their licensing practice ignored completely the emerging PC clone market, though, the market that became more and more important as small companies and private people wanted to use PCs and considered money a deciding factor for the choice of computers. Add that companies so far using IBM wanted to get out of their stranglehold and one can easily see why the "clones" became more and more popular and why a bus that was at least on par with the later very popular PCI bus never became popular or widely supported by third party manufacturers.

      MS is now following that "my way or the highway" hubris. I guess they need to learn it, too, that you can only force people to drink your cool-aid as long as they don't have an alternative.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    2. Re:I absolutely HATE to say this but... apk by Anonymous Coward · · Score: 0

      Dear Microsoft,

      Please do all of us who read Slashdot a huge favor, and deprecate the hosts file. Forever. Immediately.

    3. Re:I absolutely HATE to say this but... apk by Anonymous Coward · · Score: 0

      You must be another slashdot troll apk's spanked on hosts vs. adblock the cpu/memory hogging wreck https://blog.mozilla.org/nneth...

  36. Re: Two bits to say here by symbolset · · Score: 1, Insightful

    1.2 billion smart devices shipped without Windows last year, and more than that number will ship this year, making over 2.5 billion devices shipped in only two years and likely still in use. There are only 7 billion humans and two thirds of them are too impoverished, young, old or uninterested to be in the market for such things. So this event you are hoping for appears to have already happened.

    --
    Help stamp out iliturcy.
  37. Patching time by ArchieBunker · · Score: 1

    You do realize that with paying customers you can't just crank out a patch overnight and hope it doesn't affect any other piece of software. Of course when a Linux patch breaks something all you have is neckbeards sending you nasty emails. Microsoft is open to lawsuits and contract issues.

    --
    Only the State obtains its revenue by coercion. - Murray Rothbard
    1. Re:Patching time by Anonymous Coward · · Score: 0

      Microsoft is open to lawsuits and contract issues.

      LOL

    2. Re:Patching time by Grishnakh · · Score: 1

      Microsoft is open to lawsuits and contract issues.

      No, it's not.

    3. Re:Patching time by msobkow · · Score: 1

      How, pray tell, does delivering a new DLL with new APIs "break" existing code? Microsoft has added those APIs for writing safer software; they didn't modify existing APIs to do it. But in order to "run on Windows", developers can't use those new APIs without ignoring the huge number of Windows 7 boxen out there, never mind the old Vista boxes.

      --
      I do not fail; I succeed at finding out what does not work.
  38. This makes sense... by Darinbob · · Score: 4, Interesting

    No, they should not consider Windows 7 a "downlevel" release. I just bought a NEW computer with Windows 7 on it for a relative, and had to pay a premium to get W7 instead of W8. I don't need a repeat of the XP debacle! Windows 7 is the MAIN operating system from Microsoft today, Windows 8 is only a trial balloon. Since I did pay for W7 I expect FULL support for its lifetime not some half assed job designed to force people to upgrade prematurely.

    The advice from the computer repair shop my relative used this very week was to get W7 and avoid W8. This is not just some disgruntled people avoiding W8, it is very much mainstream.

  39. Re:Still sticking with XP... by Darinbob · · Score: 2

    I take it you don't have to support an older relative who lives a long distance away who calls you up every time an icon changes location. If Windows is only for the experts then it should be labeled as such, and leave Linux for the beginners.

  40. No matter how you "upgrade" Win8 by Opportunist · · Score: 0

    Coming from Win7, it still is invariably a downgrade.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  41. How about the delete problem by Murdoch5 · · Score: 1, Interesting

    Windows 7 is the only operating system I have ever used that has trouble deleting information from the Operating System. I just had to deal with being told that a file / folder didn't exist and couldn't be removed. This kind of issue, even though small, shows the lack of refinement and the false young nature of the Operating System. In contrast Linux is the adult in the Operating System war, I'm not saying that just to blow smoke or be a Linux fan boy, I'm saying that because when I run into issues in Windows, I don't run into them in Linux.

    1. Re:How about the delete problem by Anonymous Coward · · Score: 0

      Are you serious? Linux is absolutely full of little glitches like that.

    2. Re:How about the delete problem by Anonymous Coward · · Score: 0

      Hilarious joke. You're serious. You had OS/2, BeOS, even BSD, AND many more.
      You insist on settling for garbage whether it is Windows or Linux.
      Although I concede, ripping useless shit out of Linux is easier because they didn't make the foundation out of a turd.

  42. This is not news by Anonymous Coward · · Score: 0

    It is widely known that Microsoft ended support for Windows 7 at the same time it ended support for XP.

    1. Re:This is not news by Anonymous Coward · · Score: 0

      Gullible idiot...

    2. Re:This is not news by Anonymous Coward · · Score: 0

      Pustulent twat...

  43. Duh by koan · · Score: 2

    Microsoft doesn't want another Windows XP, I'll wager they are after a 5 year turn around or perhaps even faster.

    $'s.

    --
    "If any question why we died, Tell them because our fathers lied."
  44. Re: Two bits to say here by binarylarry · · Score: 1, Interesting

    Yep but not on the Desktop. :(

    I don't see the desktop disappearing either, although its role has definitely changed.

    --
    Mod me down, my New Earth Global Warmingist friends!
  45. Re:Still sticking with XP... by Mashiki · · Score: 2

    I take it you don't have to support an older relative who lives a long distance away who calls you up every time an icon changes location. If Windows is only for the experts then it should be labeled as such, and leave Linux for the beginners.

    Nope, they died last year at the age of 86. Until then I did, and that distance was 3200 miles. Then again, I found that explaining to them before hand that the "icons change" and why they change, and how, makes it much easier.

    --
    Om, nomnomnom...
  46. In the Microsoft boardroom... by edibobb · · Score: 1

    There's GOT to be a way we can get people to buy Windows 8!

    1. Re:In the Microsoft boardroom... by Anonymous Coward · · Score: 0

      There's GOT to be a way we can get people to buy Windows 8!

      Rename Win7 SP2 to Win9, and fire all the UXtards that ruined Win8. But they won't do it. The enterprise doesn't want the Win8 UX. The end user doesn't want the Win8 UX. Just fire the UX team and go for stability over BS UX crap.

  47. Re:Still sticking with XP... by Billly+Gates · · Score: 1

    Yeah that's real secure. FYI your chrome is not even sandboxed on it because the kernel is so ancient.

  48. I agree by Anonymous Coward · · Score: 0

    Would you like to learn how to make one million dollars in 10 minutes?

    Click I agree to learn more from our Trusted, Secure, website.

    The security hole is the end user.

  49. Re:Still sticking with XP... by Billly+Gates · · Score: 1

    Except that programs are running faster on Windows XP than on Windows 7, because the OS take less CPU resources.

    Bang! Idiot destroyed.

    Yeah on a Pentium IV. On a modern i5 the same code will run faster as a new kernel supports better smp, page swap, ram buffers, and the runtimes use all your CPU instructions. Not part as XP had to run on Pentium IIs.

  50. Re:Still sticking with XP... by Billly+Gates · · Score: 1

    I can't find anything to fix. 7 is better and has more features and takes advantage of modern hardware

  51. Supply and demand by TapeCutter · · Score: 1

    I am still confounded

    Aside from the fact that spreadsheet formulas cannot (easily) be ported to different spreadsheets via csv, there's a very simple supply and demand explanation, client says: "We only use MS office, that's the way we have done business for over a decade, it's what we are set up to handle now, if you can't deliver we will have to find someone who can". - Actually in the "real world" they would probably just laugh their asses off and walk away.

    obig car analogy: It's like a mechanic saying I can't work on your Mazda because it's not a Ford.

    --
    And did you exchange a walk on part in the war for a lead role in a cage? - Pink Floyd.
  52. Microsoft Now The Virus Company ? by Anonymous Coward · · Score: 0

    "It does seem logical." A paraphrase from the Star Trek reboot of a few years ago. Even Spock can have doubt about logic !

    "In order to persuade an attacking enemy from attack, one must remove the reason for attack by giving the enemy what it needs to attack." Paraphrase of a Ninja proverb. :-)

  53. It's Microsoft's way of saying by reboot246 · · Score: 0

    eat shit or die.

    Thanks a bunch, Microsoft!

  54. People think Microsoft is a software company. by Anonymous Coward · · Score: 0, Troll

    People think Microsoft is a software company that is sometimes evil. That's wrong. Microsoft is an evil company that delivers evil through software. The main purpose is evil.

    My opinion, but one shared by many others. When you buy from Microsoft, you are making yourself the target of manipulation. The anti-trust laws are not being observed, and Microsoft has a virtual monopoly.

    It seems likely that Microsoft will not treat buyers of Windows 8.1 better than they have treated buyers of Windows 7.

  55. Sticking with XP is a good choice by Anonymous Coward · · Score: 0

    Windows 7 and Office 2013 are the buggiest software I have ever used.

    I think the only reasons Windows 7 gets any positive reviews are: (a) astroturfers; and (b) people relieved it's slightly better than Vista.

    It's been funny reading all the articles by the technical media pontificators bemoaning and wondering why people stick with XP. It's because XP was the best OS Microsoft has ever produced. Everything that has come after has been complete shite.

  56. Backporting? by Anonymous Coward · · Score: 0

    Is any backporting of the fixes possible by installing the Windows8 fixes in Win7?

  57. Good reply (you merit your +5 rating) by Anonymous Coward · · Score: 0

    I'm with you on that, as I was there thru much of that myself programming professionally since 1994 here (& as a user thru the 80's before it in academia or on the job working during my schooling etc. using IBM mainframe &/or midrange systems from System 34/36/38 onward into the AS400 series along with VAX VMS systems (all the slave terminal type setups/glass house stuff we both apparently used)).

    So, yes - It seems that decay in corporations along with their products is just an "unfortunate natural progression" apparently, since history seems to back you & yes, I agree... history & human nature as I alluded to. The bad side of human nature, in greed mostly imo... CEO's & top mgt. + boards of directors BONUSES (which they do NOT merit imo - the workers creating it do).

    All they do, is force engineers of ANY KIND to make the product 10% cheaper to make each quarter so they can get those "bonuses" THEY do NOT merit.

    APK

    P.S.=> Sorry for the late & rather SHORT reply on my part, it's just that I am mega-busy today... gotta "jet"! See ya... apk

  58. Re: Two bits to say here by Lehk228 · · Score: 1

    more likely the fix will come from Valve

    --
    Snowden and Manning are heroes.
  59. Ethics? Microsoft? Hahahhaha... by Anonymous Coward · · Score: 0

    Windows 7 is still supported, so doing this now isn't shoddy ethics, it's a breach of contract. If they think that having shorter support periods will drive more sales, then have to start with Windows 9.

    I once used Windows 7, I'm ashamed to admit, but I don't recall signing a contract.

    In fact, the EULA, I think explicitly states that you assume all liability, and absolve M$ for ever and ever throughout the universe of time and space, from any and all liability on behalf of your heirs, your assignees, etc., as well as yourself, naturally, from any and all claims of harm if you're STUPID ENOUGH to trust ANY of M$ products to work as advertised, and that they are NOT to be used in any situation where someone's life may DEPEND upon the system working as advertised.

    I think that speaks volumes, and much louder than their bullshit advertisements about how wonderful and great their crippled crapware is. Ironically, every single thing M$ does, or has done for about a dozen or more years, has been as great a reason as any to switch to a better OS.

    The solution is dirt-simple. If you have the resources, (money!) upgrade to Apple's OS X on a Mac. If you DON'T, upgrade to GNU/Linux, which is better, AND free. Windows isn't free, even if it came with the computer you bought, because you're still paying the cost of the licenses, including all the ones they don't end up selling. So when everyone started clamoring for the latest version of Windows (or M$ forced it on OEM's by telling them they wouldn't sell them the old version anymore,) where did the OEM you bought your computer from get the money to pay for all the unsold and unsellable copies of the old one they already bought?

    It's rolled up into the price for the new machine. That means, you not only paid for a copy of, let's say 8, you also paid for part of a copy of 7 you never got, a copy of Vista you never got, and so on down the line... unless you think M$ gave them their money back, or they actually managed to sell one machine for every single one of the volume-purchased copy of Windows they already previously paid for... which would be pretty awesome for them, but it seems a touch unlikely. And even if a bigger company could get cost concessions for old, unsold copies, the Dells and HP's of the world, do you think the little Ma' and Pa' computer store that builds its own customer systems could? Don't bet on it. Misrosoft never does anything by playing fair that it can't do cheaper by sneaky, illegal, underhanded backdoor means.

    Anyhow, one solution (OS X) is a little more expensive, but has an ever increasingly higher (than a PC with M$ Windows) value/dollar ratio, and the other (GNU/Linux) is free, and will generally run on whatever computer you already have, so it's a win-win, and a no-brainer, as well as several other old, tired cliches I can't think of right now.

    Shoot, GNU/Linux will probably run on a toaster, if you're prepared to compile your own kernel.

    M$ has done to itself what the US government, an organization that once broke up Standard Oil and spanked Ma' Bell's ass black and blue, didn't have the brains or balls to do. Happily, unlike a dozen years ago, when there was really NO option, NOW there are several. You are now free, finally, to give up your Misrosoft Wrechware, and upgrade to something better.

    Apple, (for those who haven't been paying attention,) is GIVING AWAY THEIR NEXT OS-X RELEASE FOR FREE, to all who have a Mac that can run it, which I think means probably every machine running Mavericks, or possibly 10.7 or 10.8 or later, (consult Apple for details, I know it'll run on my MacBook Air, so I never bothered to look deeper). In addition to it's existing awesomeness, the new OS X and iOS will be integrated enough that if you have an iPhone 4 or higher, (I think, 5 definitely) with the newest iOS, and a Mac with Yosemite (OS X 10,) and the phone is somewhere else, like in another room, and someone calls while you're on the computer, you can actually jus

  60. Rhetorical question by Anonymous Coward · · Score: 0

    So... how many years, and how many hundreds of billions of dollars would it take for M$ to produce ONE SINGLE PIECE OF SOFTWARE that doesn't crawl with bugs, and isn't riddled with security holes and vulnerabilities?

    Just wondering. Ten years? One hundred billion dollars?

    Twenty years? Two hundred billion dollars?

    Because so far it's been what... 30 years? How many billions have funneled into MS, without their having made a single product that can claim to be secure, or stable?

    By the way, for an OPERATING SYSTEM, if the only way they can make it not crash is by managing to convince you not to run 3rd party software on it, is like a car company saying "our cars don't spontaneously explode as long as you don't hit them, or move them out of your drive-way. They're totally safe to sit in, just don't move them anywhere." It's not tenable. For an OPERATING SYSTEM to be useful, you have to be free to use the software you want and/or need to be able to use to complete the tasks for which you bought the machine, and limiting yourself only to the crap M$ pumps out, like Office, etc., is NOT doing anything but perpetuating the problem by providing M$ with revenue streams to add to their war-chest.

    One's and Zero's don't generally go bad, so there's no reason why you should have to keep buying the same software over and over again, but M$ depends on your being dumb enough to do just that. Why reward them for harming you? Unless that sort of thing just gets you off...

    I wonder how much money they'd have to get to feel comfortable enough to make a single release of software that is as good as it could be if they didn't have a huge incentive to make it with all the holes, errors, failures, etc. built right into it? I guess all of it, because they KNOW as soon as they make one that actually fucking WORKS, they won't sell (to any person who buys it,) another OS ever again.

    XP came close enough to that that M$ has had to resort to refusing to update the holes they purposefully left in it when they released it, to pry that old OS from people's cold, dead hands, and it was SHITTY. If they made VISTA FREE, most people STILL would not have taken it, when word got out what dreck it was. Seven was to Vista what XP was to ME, and to XP what XP was to 98.

    M$ knows they can't make a good product, because that would invalidate their business model. Why continue to support that?

  61. Re: Two bits to say here by Ol+Olsoc · · Score: 0

    Hopefully Google, Apple and Canonical find a way to replace Microsoft products before Windows 9 ships.

    Out of the frying pan, into the fire..

    Cites? My migration to Unix-like machines has been only positive. My remaining Windows 8 machine has been an exercise in less than optimal computing. Forced updates, and setting changes, broken programs, and a more rapid slowing of the system and program breaks than in any other Windows Distro, would seem to be an opposite effect than what you claim. Several programs completely changed their prefs. Nasty stuff. OS not ready for primetime.

    Fortunately, the Mac and Linux boxes need virtually no upkeep, which saves me for the W* repairs.

    --
    The shepherds did so well protecting the flock that the sheep no longer believed that wolves existed.
  62. FixIT or ForgetIT by Software companies is typical by OldHawk777 · · Score: 1

    Simple Reality: It is profitable to release new improved [undocumented bugs] software to buyers.
    It is costly to fix software bugs for free, because old buggy products are a an excellent free marketing tool.

    HookWare is good for US and always good for companies and greedy.

    --
    Unaccountable leaders are masters, and unrepresented people are slaves. How do US and EU fare?
  63. Re: Two bits to say here by unixisc · · Score: 1

    Apple already has it. It's just that their biz model requires that it run only on their boxes.

  64. Re: Two bits to say here by symbolset · · Score: 1

    Remember when desktop computing was bigger than pocket computing? I do. But then I remember when personal computers were new too - back before there was an IBM PC as such. Things change.

    --
    Help stamp out iliturcy.
  65. Re:Ethics? Microsoft? Hahahhaha... by dumb+kid · · Score: 1

    I'm a Mac guy, but Apple's license agreement for OSX has the same kind of limitations on liability and fitness for use.

    --
    - Never attribute to malice that which can adequately be explained by stupidity.