Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Microsoft Operating Systems Software Windows Businesses The Almighty Buck

Windows 7 Likely Going Modular, Subscription-based 603

Microsoft CRM writes "When Windows 7 launches sometime after the start of 2010, the desktop OS will be Microsoft's most 'modular' operating system to date. That's not necessarily a good thing, of course; Windows Vista is a sprawling, complex OS. From Microsoft's perspective, though, there are many possible benefits. The OS's developers can add/remove functionality module by module. New modules could be sold post-launch, keeping revenue streams strong. A modular approach could also allow the company to make functionality available on a time-limited basis, potentially allowing users to 'rent' a feature if it's needed on a one-off basis. Microsoft is already testing 'pay as you go' consumer subscriptions in developing countries."
This discussion has been archived. No new comments can be posted.

Windows 7 Likely Going Modular, Subscription-based

Comments Filter:
  • The primary idea (Score:5, Insightful)

    by Shados ( 741919 ) on Tuesday March 25, 2008 @10:47AM (#22857180)
    Their primary concern is probably far more to be able to ditch or unbundle a feature as soon as they feel a threat from Anti-Thrust agencies or something of the kind: they learned the hard way that saying "but its so integrated, we can't separate it!!" doesn't work, so there's no point to program their OS like crap on purpose anymore, and they can deal with the real problems instead.
    • by dch24 ( 904899 ) on Tuesday March 25, 2008 @10:51AM (#22857266) Journal
      I'm excited for this new ability to unbundle! Pretty soon, Windows Server 2010 will offer me Good News Office Modular Extensions(TM), which will work something like this:

      1. open command prompt
      2. yum install msoffice2010.msi
      3. cat "http://www.officeupdate.com" >> /etc/apt/sources.list
      4. apt-get update
      5. emerge -pDNu windows
      • by jaavaaguru ( 261551 ) on Tuesday March 25, 2008 @11:36AM (#22858018) Homepage
        I was thinking more along the lines of:

        apt-get remove msie7
        cat "http://3rdparty.windowsupdate.com" >> /etc/apt/sources.list
        apt-get install firefox
        apt-get install openoffice

        If they're going to go to the bother of making it modular, they'd make life a lot easier for many geeks if they let users choose their "modules".

        • by innerweb ( 721995 ) on Tuesday March 25, 2008 @12:06PM (#22858510)

          Of course you will get to choose the modules. MS will have a large list of MS or MS partner made pre-approved apps or modules that you can install from.

          They might allow open source, but I would not be holding my breath.

          I am surprised at how long it has taken the MS to get to this point. This has the potential to be far more profitable to them than the current model. If it is not installed, they do not support it. If it is installed, then that is an extra cha-ching for them. It eliminates the bundling issues, and allows people to semi-customize their MS installations. It is a huge win-win-win for MS, MS partners and MS customers. That is provided they do it right.

          I am willing to bet that there is a fee to become a viable installable module proivder (or at least to get a module listed). I am willing to bet that there might be some kind of specialized location where the modules can be downloaded (and only from this locations of other *approved* locations). MS was (is?) very smart at making money. This could be a great time to buy their stock. If they can put out an OS that actually competes with many of linux's merits and allows the *windows* experience their fans have come to desire, they have a chance for a strong winner.

          Now, lets see what they actually release. Everything else until then is vapor.

          InnerWeb

      • by MajinBlayze ( 942250 ) on Tuesday March 25, 2008 @11:47AM (#22858182)
        no, this will be based on PowerShell
        ps> Get-An-Install-File microsoft_office_2010.msi
        ps> Append-String-To-Text-Document "http://www.officeupdate.com", "C:\WINDOWS\7\module\installer\config.txt"
        ps> Update-Installer-With-The-New-Config-File
        ps> Update-The-Computer-To-The-Newest-Version-Of "Everything"
    • Mach (Score:3, Interesting)

      by goombah99 ( 560566 )
      So I wonder if this will be some high level granularity or some true kernel level modularity like Apples quasi-mach kernel. Or even go all the way to a Objective-C message passing interface at the code level.

      It's interesting to note that Apple's OS is ultra-modular at the lowest levels but is sold monolithically. Apple has always done well by specing out it's hardware and software at a maximum consistent level for every machine. Thus developers could assume that firewire exists or this or that OS feature
      • Re:Mach (Score:4, Interesting)

        by misleb ( 129952 ) on Tuesday March 25, 2008 @11:28AM (#22857902)

        t's interesting to note that Apple's OS is ultra-modular at the lowest levels but is sold monolithically.


        In what way? How is it more modular that, say, the Linux kernel with as much as possible compiled as modules?

      • Re:Mach (Score:5, Insightful)

        by IamTheRealMike ( 537420 ) on Tuesday March 25, 2008 @11:39AM (#22858066)

        I wouldn't call the bizarre mess of the MacOS kernel "modular". It's certainly not a micro-kernel, if that's what you mean.

        All the mainstream operating systems today are somewhat modular, in that you can swap components in and out if they implement the same interface. This is especially true for Windows, in which long-term heavy usage of COM (which was explicitly designed to promote modularity) has meant that you can do things like swap out the IE rendering engine for Firefox, and it'll work. Well, assuming that Firefox supports the features the embedding app in question needs, of course. If you doubt this, feel free to download the Gecko ActiveX plugin and try it ... most apps use IE just as a convenient rendering engine and can run when Gecko replaces it.

        That might not sound impressive, but try swapping out Gecko for WebKit or Opera on Linux and see what a mess you get into. Hell, just try upgrading Firefox on Ubuntu. You will almost certainly fail. I know, because I've tried it. About the only sane way forward is to leave the old version in place and install a new, parallel copy - but that has its own problems due to general brokenness in the way ELF was designed (it doesn't seal off shared libraries from each other properly, so they can interfere and cause crashes). Although to be fair, Linux (really, unix) does let you swap out your display subsystem for another one thanks to X. So they all have strengths and weaknesses in this area.

        I'm not really sure why you think Apple has "specced out its software at a maximum consistent level". Dealing with missing features is just a part of the software development game, and Apple supports that with what they call weak symbols. It's important because not everybody upgrades their OS at once, so even if you only have one edition of your operating system, developers still need to adapt at runtime to things that are missing. The piss-poor support for this in Linux is another reason upgrades are so flaky (it's only done at compile time for most programs).

        I'll be interested to see what Windows 7 actually ends up being. I suspect that this whole modularity drive is coming from upper management somewhere, and by the time it reaches the engineers they will say "well .... but windows is already modular!". They'll make some token gestures, clean up some cruft that users won't really notice except in worse app compatibility, marketing will trumpet the changes as meaning that things will Really Be Different This Time! and nothing will really change.

        • Re:Mach (Score:4, Informative)

          by snowgirl ( 978879 ) * on Tuesday March 25, 2008 @01:01PM (#22859514) Journal
          This is especially true for Windows, in which long-term heavy usage of COM (which was explicitly designed to promote modularity) has meant that you can do things like swap out the IE rendering engine for Firefox, and it'll work.

          Well... in a way. COM is now pretty dated, and it required a lot of extra programming to make sure that things were properly supported. Programs that bundle with Microsoft Windows are extremely integrated, regardless of whatever libraries and APIs are made available. There is no "cd %notepad_dir%; make" command for the Windows system, literally, there is no way to know for sure if something needs to be rebuilt without literally recompiling the whole source code.

          You make a change to some random library, that changes the publics for that library, and that disseminates out and touches potentially tons of binaries. The reason Vista started using componentization is exactly for this reason, so that you could trust that updating a certain library only hit a limited number of binaries. However, even this isn't ideal, as many of the changes to library don't propagate changes out to binaries, but since they're all in the same component, you have to bundle all of them together, even if most of the component is just updating version numbers.

          For quite awhile the Service Pack for Vista was looking at being a ton of GiBs big... once they made some changes to be able to again only patch at the binary level *gasp* the SP size went down. Oddly enough it was called "small SP", even though it is still larger than other SPs before. (There's just data to "touch" the version number of all the binaries that didn't change despite being in a component that was serviced.)

          (it's only done at compile time for most programs).

          As noted above, most of the internal modularity of Windows the OS is done at compile time as well. As for updating things, I've updated on the fly the Linux kernel, X-Windows, WINE, and Mozilla/Gecko before on the ol' Red Hat systems. Honestly, I don't know where you're getting your troubles from, but I've never experienced any of them myself. Most notably tough, I don't have to recompile everything from scratch each time a new version of Gentoo is released... rather, I just compile what was updated. Windows Vista still isn't uncomplicated enough in compiling to be able to do this. No less, its dependence upon the Microsoft Corporate network.

          And you're actually wrong. Mach is a microkernel. But just because the kernel is a microkernel doesn't mean that the stuff built upon it actually make use of that microkernel. Windows has also been based on a microkernel since Windows NT. The difference between a microkernel and a macrokernel are pretty irrelevant once you get to the layer of stuff on top of the OS.
    • Re: (Score:3, Funny)

      by Nullav ( 1053766 )

      Their primary concern is probably far more to be able to ditch or unbundle a feature as soon as they feel a threat from Anti-Thrust agencies
      How fitting for a corporation with so many customers bent over the table.
  • Well... (Score:4, Funny)

    by name*censored* ( 884880 ) on Tuesday March 25, 2008 @10:47AM (#22857184)
    No matter how horrible a business model they use, it still can't be worse than Vista.
    • Re:Well... (Score:5, Funny)

      by PoliTech ( 998983 ) on Tuesday March 25, 2008 @11:05AM (#22857476) Homepage Journal
      Were Windows ME and MS BOB worse than Vista? Why yes they were!

      Have some faith! Microsoft can always do worse!

      • Re:Well... (Score:4, Funny)

        by RailGunner ( 554645 ) * on Tuesday March 25, 2008 @11:07AM (#22857512) Journal
        Windows ME is better than Vista. Both are complete shit, but at least WinME doesn't require 2 GB to be complete shit.
        • Re:Well... (Score:4, Funny)

          by PoliTech ( 998983 ) on Tuesday March 25, 2008 @11:12AM (#22857614) Homepage Journal
          And that's what it has come to. Arguing about whether Windows ME or Windows Vista is the worst MS OS ... evah. (well, besides BOB)

          It's both sad and funny at the same time.

    • Re:Well... (Score:5, Insightful)

      by alexgieg ( 948359 ) <alexgieg@gmail.com> on Tuesday March 25, 2008 @11:07AM (#22857536) Homepage

      No matter how horrible a business model they use, it still can't be worse than Vista.
      Sure it can. Just imagine the possibilities:

      a) What? You want to use ALL of your installed 8 GB or RAM, not only 2 GB? Sure! The "improved memory accessibility module" subscription goes for just $1.50/GB/month!

      b) So, you say you want to use all 4 of your cores instead of just 2? Plus have access to the 2nd processor in your 3D graphics board? Why, no problem! We're selling a PERMANENT, I say PERMANENT license to the "multi-core compatibility mode" for just $35! Offers end by July 13th, 2011.

      c) Ah, you need to have 5 USB devices connected simultaneously, and need them all to work in fast USB 3.0 mode instead of USB 2.0? We had a promotion for that last month, but unfortunately now we're back to the standard price, sorry. It'll be $0.50/USB device/month for every device above the 4th, plus $14.99 for the permanent 3.0 functionality, or $0.90/month for the subscription version. The module name is "FastUSB expansion/speed-up bundle package", and you can find the different option in the Connectivity tab at the Module Shop window.

      And so on and an so forth.

      Not a pretty picture.
      • Re:Well... (Score:5, Interesting)

        by jalefkowit ( 101585 ) <jasonNO@SPAMjasonlefkowitz.com> on Tuesday March 25, 2008 @11:31AM (#22857960) Homepage

        What? You want to use ALL of your installed 8 GB or RAM, not only 2 GB? Sure! The "improved memory accessibility module" subscription goes for just $1.50/GB/month!

        It was a bit before my time, but the story goes [findarticles.com] that IBM used to operate in pretty much exactly this way back in the mainframe days. They would sell the customer a mainframe at a certain performance level, but actually ship them a much more powerful machine with some of its resources disabled/limited/throttled via software, so that it performed at the (lower) level the customer had been sold. Then when the customer needed an upgrade, they would bill them a ginormous amount, then send out a service tech to "install the upgrade" -- but all he really did was remove the limiters. This was called a "golden screwdriver" upgrade because the tech could earn IBM hundreds of thousands of dollars just with the proverbial turn of a screw.

        • Re:Well... (Score:5, Informative)

          by tokuchan ( 445264 ) on Tuesday March 25, 2008 @12:42PM (#22859154) Homepage
          IBM didn't sell you anything back then. You leased the machine, rather than buy it. IBM would charge you a low price but ship and install a bigger machine with extra processors and memory modules installed. The lease terms limited you, rather than physical limitations. This was actually a very good thing. First, whenever something broke, IBM could switch it out over the phone, which made those late night calls much more tolerable. Second, if you needed more power, they could switch on more processors and bill you. Then, when you no longer needed the extra, they could switch them off again and save you money. It was really a win-win situation for everyone.

          The big difference here is that we are talking about software, not hardware. If MS really does this, it will either be a wild success or a dismal failure. Personally, I will stick with my Mac or move back to Linux.
    • Re: (Score:3, Insightful)

      by Sandbags ( 964742 )
      I like Apple's model better. They have one OS, one price. Everything is included, for home or for business. $149... It's modular in the sense that nothing runs unless you run it, and uninstalling a program is a simple as dragging it's folder to the trash can. Heck, have you installed Office on a mac lately? Put the CD in and it says "Drag this to Applications to install"

      OS 7 may choose to go modular, but if it's a sales model, not a feature model, then it will likely fail. I can understand the abilit
  • Artificial Bundling? (Score:5, Interesting)

    by samkass ( 174571 ) on Tuesday March 25, 2008 @10:48AM (#22857192) Homepage Journal
    Considering Microsoft has, in the past, been accused of artificially bundling components together (IE+Windows, DirectX10+Vista, etc), I'm going to remain skeptical on this plan. It seems like Microsoft can get much higher revenue from a several-hundred-dollars major upgrade than a pick-n-choose bundle of features. The only way I see them breaking it apart is if their monopoly really does begin to be challenged and they have to start selling in a truly competitive market.
    • by CastrTroy ( 595695 ) on Tuesday March 25, 2008 @11:10AM (#22857576)
      The problem will be in the dependancies. Want MSN Messenger, that relies on IE, because it can display HTML content. So to install messenger, you have to install IE. Same goes for Linux. You want GIMP, well you have to install GTK, because you can't have one without the other.
    • Re: (Score:3, Informative)

      by drsmithy ( 35869 )

      Considering Microsoft has, in the past, been accused of artificially bundling components together (IE+Windows, DirectX10+Vista, etc), [...]

      Of course, accusations != truth. For your two examples, IE was no more "artificially bundled" into Windows than its equivalents were into contemporary OSes and DirectX10 requires features only present in Vista's new display system.

      "Artificial bundling" is as meaningless as "bloat". Stuff that you, personally, aren't interested in != stuff that no-one is interested i

    • by click2005 ( 921437 ) on Tuesday March 25, 2008 @11:35AM (#22857998)
      It seems like Microsoft can get much higher revenue from a several-hundred-dollars major upgrade than a pick-n-choose bundle of features. The only way I see them breaking it apart is if their monopoly really does begin to be challenged and they have to start selling in a truly competitive market.

      I dont think its about selling the add-ons for hundreds of dollars. I honestly think the basic Windows will eventually be free but by then it'll just be stripped down to the basic OS & browser. They wont sell the add-ons, they'll license them to people for a monthly fee. As the mess they made with Vista shows... if the OS doesn't sell they make less money and the hardware vendors make less money.

      By giving away Core Windows with every new PC they get around the MS Tax on buying computers by charging you more later. Then you can upgrade as much as you wish...

      Multimedia upgrade for $10 per month
      DirectX upgrade for $15 per month
      Office upgrade for $30 per month (or $7 per app per month)

      Microsoft wants a continuous revenue stream from its users. They want you to keep giving them money whether you upgrade or not. They wont care if you insist on running your 4 years out of date OS as you'll still be paying your MS Rent. All the software will be auto-installed, auto-patched, auto-scanned and made nice and safe. They'll get people to upgrade to newer versions by charging more for older OSes which encourages them to upgrade their hardware (so the system feels less sluggish).

      Its all leading to TPM/NGSCB machines riddled with DRM-locked hardware. Only 'approved' software will run (cue the protection from malware excuse) and any attempts to bypass security or normal operating functions will be reported. Future Windows versions will check all the files on your PC to make sure its safe, deleting anything they decide is bad for you.
      • Re: (Score:3, Interesting)

        by FLEB ( 312391 )
        I doubt they'd do that to something like DirectX or multimedia drivers. Those are core system components, and the people who make their OS relevant-- application builders-- wouldn't stand for paid prerequisites to use their basic products. However, one could take a look at Apple's strategy with iLife, iWork, and QuickTime Pro and see that while content viewing apps are usually too basic or needed to be an upgrade, simple content production apps are enough of a seperately added value that they could be split
  • by inTheLoo ( 1255256 ) on Tuesday March 25, 2008 @10:48AM (#22857204) Journal

    Once again, Microsoft is making fantastic promisses that have little to do with their last set [roughlydrafted.com]. I wonder how many current features will evaporate [wikipedia.org].

    This is not a good way to make money. Vista is a failure and Windows 7 will be an even bigger failure. At a minimum, the next three years belong to GNU/Linux. Users and hardware makers alike know better than to buy into Vista now and people looking for new hardware and software are going to go Linux. By 2010, Microsoft's base will be erroded. The Microsoft game, at long last, is over.

    • by the_humeister ( 922869 ) on Tuesday March 25, 2008 @10:55AM (#22857320)
      That's the same rhetoric that's been said by the anti-MS crowd for the past 10 years. What makes the next 5 any different?
      • That's the same rhetoric that's been said by the anti-MS crowd for the past 10 years. What makes the next 5 any different?

        Because, in the next 5 years, Linux will really be ready for prime time. Trust me.

      • Re: (Score:3, Funny)

        by kestasjk ( 933987 )

        That's the same rhetoric that's been said by the anti-MS crowd for the past 10 years. What makes the next 5 any different?
        Because 2008 is going to be the year of Linux on the desktop!
      • Re: (Score:3, Insightful)

        What is different now from 5 years ago is that MS is facing heavy weather on a number of fronts: OOo is really growing up, with a certified, fully open document format with multiple other implementors; Google is one hell of a competitor; Ubuntu is improving faster than MS' offerings; MacOS X market share is rising, even more on laptops; Neelie Kroes (EU) is watching MS' every move; dirty MS politics are more well-known (ISO); all of MS' 'visionary products' are nowhere to be seen (tablets are but a small ni

    • Anybody remember Vista Ultimate edition? The one that promised Ultimate Extras - regular extras that you could download through Windows Update? They released 3 things through that: an small card game, DreamScene (sucks up CPU to animate your desktop background), and Bitlocker full drive encryption. That was all just a little after RTM - nothing since then.

      When they came up with the idea I thought it might be interesting, but they've shown they can't follow through. If this is at all similar I'm sure it will fail. Microsoft won't be overthrown just from this, certainly not by 2010, but I'm sure it will pave more of the Disappointment Road that Vista started.

      When they say "subscription" I get kind of worried. Valve carefully calls their Steam games "subscriptions" to remove your right of resale.

  • by scubamage ( 727538 ) on Tuesday March 25, 2008 @10:49AM (#22857214)
    So that will be around the release of Ubuntu 10, right? Glad I know which OS I'll be using :)
    • Re:Hmmm (Score:5, Insightful)

      by mwvdlee ( 775178 ) on Tuesday March 25, 2008 @11:06AM (#22857488) Homepage
      Renting an OS is only sensible if you aren't dependant on it for your applications and files.
      If you're no longer dependant on the OS, then why rent one if you can get an identical one (from a productivity perspective) for free?
  • A bit risky? (Score:5, Insightful)

    by sholden ( 12227 ) on Tuesday March 25, 2008 @10:51AM (#22857254) Homepage
    Once that becomes possible, less microsoft-friendly jurisdictions (like say the EU) might demand they open up the interfaces so competitors can use them. People buying chunks of OS from non-microsoft vendors probably isn't in microsoft's best interest...
    • Re:A bit risky? (Score:5, Interesting)

      by JustinOpinion ( 1246824 ) on Tuesday March 25, 2008 @11:11AM (#22857588)
      Another 'danger' (from Microsoft's perspective) would be "the WINE effect", a.k.a. reverse engineering. If they separate their OS into well-defined modules, then others can create replacements for those modules. Even if the interfaces are secret and there is no public documentation (which is likely to be the case), the partitioning into modules will mean that at some level there is a well-defined API (even if it isn't publicly disclosed). So people can reverse-engineer that API and write their own drop-in replacement modules.

      This would be great for lots of people: other companies could write competing modules to replace Windows functionality (why pay for Microsoft's system-wide search module when Google's is so much better?). Also, free and open-source modules will probably be created for many of those features.

      Of course, it may be that Microsoft intends to create a complicated system of internal certificates and code signing so that only MS-approved modules can use these hidden APIs. It seems like that would add a considerable performance penalty, but then again I guess that's not too different from the decisions they made in designing Vista.
  • by tjstork ( 137384 ) <todd.bandrowsky@ ... UGARom minus cat> on Tuesday March 25, 2008 @10:51AM (#22857272) Homepage Journal
    Microsoft seems to be hell bent on making their product harder to use, and at its own peril.

    What Microsoft doesn't get is that operating systems and computers, in general, are just appliances. Yes, people like to tinker, but, when one opens up the box, they want everything. This fascination with dynamically installed and dynamically loaded modularity has been the ruin of Microsoft ever since Windows 3.1 began prompting me for Disk 5 when I tried to do something, and it continues to this day. All the Windows versions continually ask for the CD/DVD, whatever, Visual Studio defaults to online help - which sucks when you are on the train, and now they want to make Windows even more modular?

    By contrast, I put in a Linux DVD, and I install everything. If I want to install something more, I can do the insanely difficult exercise of typing "sudo apt get install [programname]".
    • Re: (Score:3, Insightful)

      by secPM_MS ( 1081961 )
      Microsoft does make digital appliances. Look at Server 2003 and even more so, Server 2008. With Server 2008, you can install the core functionality (without a GUI) and then install your server role to enable a headless server. If you find the GUI useful, you install the standard server functionality and then install the roles and features that you want. I run standard server on my desktop with the search indexer (from the file server role) and the wireless feature installed. It runs fast, stable, and does w
    • by BForrester ( 946915 ) on Tuesday March 25, 2008 @11:58AM (#22858380)
      "Modular" is a tenet of good programming; it's not a dirty word. Modularity in the various Windows operating systems isn't nearly as much a problem as bloat.

      Besides, this isn't about programming practises or about providing something that the customer has asked for. This is a new attack vector in MS's ongoing battle against piracy. The more the product shifts to online management and control, the easier it is for MS to cut loose individuals or organizations (or countries...) that it suspects are not fulfilling their subscription requirements. It also lets them offer value packages that have the same core OS without gimping the product.

      I don't like this development, but MS is going to go this way regardless of what the customer wants.
  • competitive? (Score:5, Insightful)

    by Johnny Mnemonic ( 176043 ) <mdinsmore&gmail,com> on Tuesday March 25, 2008 @10:53AM (#22857298) Homepage Journal

    I wonder if this will backfire. A modular OS means that each component is easier to replace, as it's not intrinsically linked with the rest of the OS.

    If you can replace a component, and choose which pieces to run piece by piece, people might make choices that aren't in Microsoft's interest.
  • It makes me laugh... (Score:5, Interesting)

    by Toreo asesino ( 951231 ) on Tuesday March 25, 2008 @10:54AM (#22857302) Journal
    ...how that more & more Windows looks like *nix sometimes.

    Since NT 3.5 we've had:
    True multi-user (Terminal services, fast-user switching), sudo (UAC), headless servers (server core), decent scripting (PowerShell), and now more modularity?

    Yeah I know, some of these aren't exactly the same, but you see my point.
  • by damburger ( 981828 ) on Tuesday March 25, 2008 @10:54AM (#22857304)
    Microsoft intends to reverse the mistake of Vista by making an operating system that continues in the direction of Vista even further, and force users to pay continuously for the privilege. All this and they don't plan to release it until 2010 giving Mac OS X and Ubuntu a chance to chip away at their market dominance for two years whilst their current top of the range OS flops.
  • In other words... (Score:5, Insightful)

    by Oxy the moron ( 770724 ) on Tuesday March 25, 2008 @10:54AM (#22857314)

    ... if you haven't started your plans for moving away from Windows, now would be a good time.

    I think Microsoft is starting to realize the gig is up. In Vista, the whole "we'll just produce a mound of crap, and people will have to buy it" model is starting to dwindle. Unfortunately, it looks like the new model is "we'll only force half the amount of crap we used to, and you can pay for the rest when it's released."

    I honestly like using Windows 2000 and Windows XP. I don't like it as much as my Ubuntu installation, but it isn't terrible... at least, not after SP2. I simply just can't tolerate Vista, though. I was somewhat hopeful for Windows 7, but news like this (albeit far from 100% sure to happen) puts a big dimmer on it.

  • Module? (Score:4, Interesting)

    by Bogtha ( 906264 ) on Tuesday March 25, 2008 @10:57AM (#22857362)

    The OS's developers can add/remove functionality module by module.

    How is this any different to what they have done all along, where custom installations allow you to pick and choose components? I remember doing that all the way back in the mid-90s.

    I guess what I'm saying is: what separates a "module" from an application or a library? There appears to be no meaningful difference.

  • Rentier economy (Score:5, Insightful)

    by dpbsmith ( 263124 ) on Tuesday March 25, 2008 @11:00AM (#22857410) Homepage
    Michael Hart (of Project Gutenberg) has it right. He's been saying for about a decade now that publishers, music companies, software companies, etc. are trying to move us into a world where ownership as we know it will no longer exist; nothing will be owned (at least not by consumers), everything will be rented. E.g. http://onlinebooks.library.upenn.edu/webbin/bparchive?year=2003&post=2003-01-22,3 [upenn.edu]>here

    This is an issue that both liberals and conservatives should be united on. The desire to own stuff goes deep in the human psyche. The person who rents everything is utterly dependent on a high, steady stream of income can't survive even a short interruption or reduction in that stream. It's a very insecure and anxiety-provoking way to live.
    • Re: (Score:3, Interesting)

      by bnenning ( 58349 )
      This is an issue that both liberals and conservatives should be united on.

      Exactly. As a conservative/libertarian (not to be confused with the current White House occupants), I despise DRM because it's an assault on real property rights. It means that I own my computer only in the sense that I paid for it. The Cato Institute has an excellent analysis here [cato.org].
  • by wardk ( 3037 ) on Tuesday March 25, 2008 @11:02AM (#22857442) Journal
    that "object file system" is gonna rock
  • Because (Score:4, Funny)

    by eclectro ( 227083 ) on Tuesday March 25, 2008 @11:03AM (#22857450)
    Microsoft secretly wants you to switch to Linux. Really, they do.
  • by JustinOpinion ( 1246824 ) on Tuesday March 25, 2008 @11:04AM (#22857460)
    This is a perfect example of why Windows looks less appealing over time, and why I started shifting everything I do to be inherently platform agnostic (e.g. if I'm going to learn a new piece of software, I preferentially find programs that work on any OS).

    Basically, they are redesigning Windows not so much for engineering reasons, but for marketing reasons. Having a modular OS could be a very good idea, if done properly. However if this is just artificial fragmentation so that they can nickel-and-dime their customers, then this means the software is going to get worse.

    Why? Because it's hard enough to optimize software just to do its job properly. You can't optimize for every constraint simultaneously, so if you add requirements like "separated into marketable modules" or "resistant to user tampering" then the coders will necessarily have to compromise on other optimizations, like "speed of operation" or "flexibility" or "reliability" or whatever.

    Software is becoming more and more of a commodity... which means that open-source software is rapidly catching up (in those fields where it wasn't already the leader), and also that companies like Microsoft who are still caught in the "must sell proprietary code in boxes" mindset have to add more and more user-hostile features.
  • by rubycodez ( 864176 ) on Tuesday March 25, 2008 @11:08AM (#22857540)
    I've got one of those modular operating systems, can just have a bare-bones core for appliance or add things until it turns into a desktop or server or supercomputer node.

    but what I'm scared of is I've been hitting the shopping cart too often, apt-get this and apt-get that.

    I'm dreading the day the bill for all these nifty modules comes in the mail.
  • So? (Score:5, Insightful)

    by Phoenix666 ( 184391 ) on Tuesday March 25, 2008 @11:09AM (#22857562)
    After Vista, you have to wonder what Microsoft thinks it can do to revive its fortunes. A modular OS? Hello, meet *nix.

    I've been an exclusive linux user for ~10 years. I know more than some, less than many. But friends, relatives, and co-workers are suddenly coming up to me and asking about "Ubuntu." And three days ago I read an article in CIO magazine posing the question, "Is is time to dump Vista?" to which many replied, "switch to Ubuntu."

    That's significant. I've been happy to be ahead of the curve in terms of usability, stability, and security. And I can't lie--it gives me pleasure still to hear about people having problems with Windows issues while knowing I'm immune. But when people who've previously given me blank stares when I extolled the virtues of FOSS come to me and ask about a distro whose name is based on an African language, I can't help but wonder at the exigency that drove them to such extremes.

    I look forward to the era of the 2nd coming of Apple, and the underlying gospel of *nix. For a time, Apple will collect those who have money and favor dead-easy implementation. But eventually they too will succumb to the ineluctable realities of *nix.
  • Subscription? (Score:4, Interesting)

    by VitrosChemistryAnaly ( 616952 ) on Tuesday March 25, 2008 @11:11AM (#22857592) Journal
    Okay, there is no way in hell that I'm going to run any OS as my main OS that requires a fucking *subscription*.

    What happens when you're late with a payment? You windows will refuse to let you log in?

    I've been using Linux pretty exclusively at home for the past year (my wife does OSX on her new intel macbook). The more I use it, the more I can envision a completely MS free life. Now this news just gives me a date to go along with that vision

    I'm going to say it: 2010 will be the year of the Linux desktop! Thanks to MS!
  • by realmolo ( 574068 ) on Tuesday March 25, 2008 @11:14AM (#22857646)
    What they REALLY mean is that they are going to be taking out huge chunks of functionality, and then charging you separately for each of those chunks.

    I *fully* expect that the first version of Office that runs on "Windows 7" will have formerly free features that no require you to pay for add-ons to Windows before they will work.

    I actually like Microsoft for the most part, but their push towards software-as-a-service is really turning me off. If anything is going to bring them down, it will be this. I don't think they understand just how much of a backlash their is going to be. No one wants to be nickeled-and-dimed to death. Business won't do it, and consumers won't care.
  • by imgod2u ( 812837 ) on Tuesday March 25, 2008 @11:23AM (#22857806) Homepage
    And here I thought they were called "applications". And I believe they already are sold separately. And can be added/removed at whim. Hell, my Windows XP even has a friendly UI to help me keep track of, and add/remove any that I want.
  • by WombatControl ( 74685 ) on Tuesday March 25, 2008 @11:24AM (#22857824)

    What we're seeing is the end of Microsoft--not as a company, but as the monolithic OS vendor that they've been for years. It's much like IBM in the 1980s. IBM went from the monolithic vendor of PCs to a company that had to compete with the "IBM compatible" clones. The reasons are the same in both cases:

    Corporate Culture: IBM, like Microsoft, had the "IBM way" of doing things. They had a corporate culture that stifled real innovation and was all about maintaining revenue streams above all. They weren't willing to take risks, they weren't willing to sell products at less cost, and they were all about promoting their own ecosystem. Just like Microsoft. There have been plenty of rumblings about the way in which Microsoft is becoming a less and less hospitable place to work, and the erosion of the corporate culture is one of the biggest signs of a failing company.

    Erosion of Markets: Microsoft depends on a Microsoft ecosystem. Windows on the server, Vista on the desktop, Windows Mobile, SharePoint, etc. The second there becomes a viable alternative to anything, they lose revenue. If people don't upgrade to Vista, they lose revenue. If people stay with Office 2003 rather than Office 2007, they lose revenue. Don't even get them started on Linux servers, Macs, or iPhones. Microsoft's real biggest competitor, though, is Microsoft. The reason why they're moving to a subscription model is because they have to keep people on the upgrade cycle. If their old stuff works well enough that people don't need Vista, 2008, and the latest Windows Server, they lose their chief revenue stream. That's the wall they're running into today.

    Stronger Competition: The iPhone is set to eat Windows Mobile's lunch. Macs are taking the educational market back. Linux is gaining more and more acceptance. Firefox has taken browser share from IE. Why pay $100 for a Windows license for a device like a $299 eeePC? As computing becomes a commodity, Windows loses relevance. The rise of the web has taken 15 years to start breaking the MS stranglehold, but it's doing what we said it would back then. You don't need Windows to use Facebook, Myspace, Twitter, Flickr, or Gmail. Every web app challenges Microsoft's OS dominance. If those web apps run on commodity UNIX servers, even more so. Microsoft is competing for the market space of 5 and 10 years ago, while Google and Apple are creating their own market spaces where Microsoft isn't dominant.

    This doesn't mean that Microsoft will go away, but it does mean that their days of dominance are over. The OS market will fragment, and we're already seeing that happen now. It isn't nearly as quick as some had predicted, but it is happening. Microsoft won't go out of business any time soon--but they can forget about being the only player that really matters anymore. It's the business cycle in action, and this was bound to happen sooner or later.

    • Re: (Score:3, Interesting)

      by Vegeta99 ( 219501 )
      iPhone eating Windows Mobile's lunch? What planet are you on?

      Windows Mobile isn't going anywhere, and the iPhone is not going to replace the hundreds of Windows Mobile phone models out there. Wanna take a guess why? Windows Mobile is more open.
  • User Mode Drivers (Score:4, Informative)

    by QuantumFTL ( 197300 ) on Tuesday March 25, 2008 @11:25AM (#22857836)
    Does this mean we might see drivers for most devices that aren't part of the kernel itself? A stock Windows XP install is surprisingly robust, but add even one crappy driver to the mix (Yeah, ATI, I'm looking at you!) and soon the computer's gone on a one-way vacation to Reboot City.
  • Windows 8 (Score:3, Funny)

    by whisper_jeff ( 680366 ) on Tuesday March 25, 2008 @11:27AM (#22857884)
    Is Windows 8 going to be the COS - Collectible Operating System - sold in stores beside the CCGs? Open a booster pack and see how long it takes to build a complete OS. Just gotta hope that the components needed to connect to the 'net aren't one of the ultra-rares...
  • Can I just say, "Holy crap!"? On the surface, my first response was - "Huh. Actually, that sounds pretty cool. I'm tired of getting Windows installs with all the extra shit I don't want."

    Then I put on my developer hat, and reached the aforementioned "holy crap" conclusion. The best thing that Windows has going for it from a development perspective is its consistency. (I know enough people disagree with this, but just let it ride for argument's sake.) What I mean by that is that you know, for a target OS version, exactly what is available to you. If you have Windows 2000+, various security APIs work. If you have win98+, various common controls are available, etc.

    This obviously isn't ideal, but it does work well; and IMO it makes Windows easier to develop for than Linux (yes, I've done both). You know exactly what to expect for a given version of the OS, and for most of the functionality you want, you don't have to worry about a large number of external dependencies.

    Now... enter subscription components. Let's say I build something that expects to use the Mail API that MS provides. Oops! the customer hasn't subscribed to the mail option! Does MS get the call? Nope, but I sure do...

  • WGA Control (Score:5, Insightful)

    by sucker_muts ( 776572 ) <sucker_pvn@hotmCHICAGOail.com minus city> on Tuesday March 25, 2008 @11:54AM (#22858292) Homepage Journal
    This also means they need to make their 'Windows Genuine Advantage' checking really good: When they want monthly payments for all the separate modules, they sure can't let piracy happen.
    This time it's not once that they need to check for validity but they constantly need to keep checking. (I do know WGA does this at the moment.)

    That must be quite horrific to code though, they had enough trouble with XP and Vista. Now they need to start checking those modules in multiple configurations

    Does this also mean the end of specific 'roles' of windows such as home premium, business and ultimate?

  • by hAckz0r ( 989977 ) on Tuesday March 25, 2008 @11:55AM (#22858316)
    Salesman: Here are the keys to your new car!
    Customer: Thanks, and just in time its starting to rain. (gets in car and buckles up)
    Salesman: Are you sure you don't want any upgrades?
    Customer: No, a million times no. Just the basic car!
    Salesman: Your choice. Have a nice day!
    Customer: Hey! Why won't the widow roll up?
    Salesman: Oh, You wanted a Window?
    Customer: Of course I wanted a Window!
    Salesman: But you said you didn't want any upgrades.
    Customer: Well I NEED a window, my car is getting wet inside.
    Salesman: Ok, that will be another two thousand dollars.
    Customer: TWO THOUSAND!!?? Are you crazy? Why that much.
    Salesman: That particular option package is bundled with the expensive model radio.
    Customer: Thats crazy! Why would you bundle the window with a radio option.
    Salesman: Now that would be silly to put an expensive radio in a car if its just going to get wet now isn't it?
    Customer: Ok, Ok, just give me the window now.
    Salesman: (reaches in his pocket, click click) There you go, you can put the window up now.
    Customer: What about the radio? You said I get a radio with that option!
    Salesman: You already have the radio installed, it should be activated now.
    Customer: But wouldn't the radio get wet without the window?
    Salesman: Thats why its bundled with the Window. If you don't have the good sense to put your window up we are certainly not going to waste a good radio by leaving it out in the rain.
    Customer: That still makes no sense!
    (Salesman reaches in his pocket again; click, click, Window rolls up automatically, sprinkler on the roof turns off, engine starts, and the tires start laying rubber through the parking lot.)
    Salesman: (shouting) Are you still sure you don't want any other options? We have a great deal on breaks today!
  • by fahrbot-bot ( 874524 ) on Tuesday March 25, 2008 @12:18PM (#22858726)
    When Windows 7 launches sometime after the start of 2010, the desktop OS will be Microsoft's most 'modular' operating system to date.

    In 2010, the EU rules Windows still not modular enough, tells Microsoft, "All these desktops are yours, except Europe. Attempt no installations there."

  • by gelfling ( 6534 ) on Tuesday March 25, 2008 @01:36PM (#22860014) Homepage Journal
    With a non integrated non integration tested bundle of software that's still closely coupled under the covers? I can just see the matrix of patches required by different combinations of components. It's going to be a nightmare.
  • by Ralph Spoilsport ( 673134 ) on Tuesday March 25, 2008 @02:50PM (#22861004) Journal
    A completely modularised OS would be insane. All you owuld need is for some particular combo of missing components and present components to not play together well, and BLAM! BSoD. And throw in some special video card and its drivers and maybe a special hi end audio card etc. and if they require components be there, or NOT be there, because they conflict, etc and so on. I don't see how this is testable. It might be, but it has all the earmarks of a real trainwreck.

    RS

"What man has done, man can aspire to do." -- Jerry Pournelle, about space flight

Working...