Windows Vista successor scheduled for a H2 2009 release?


Recommended Posts

I want an overhaul of all legacy components:

Yeah me too.

I want BIOS to die or to evolve into something. Also, with RAID controller and a bunch of other on board chips, my pre-OS startup time is much longer than OS-load time. And it doesn't matter how fast the CPU is, it still takes forever to get to the stage when the OS starts to load.

Sadly, there's little MS alone can do to improve on that.

I want an overhaul of all legacy components: remove native support (registry, crazy dlls, etc.) for previous generation apps but allow them to be run using virtualization. That way, it'll be easier to build a componentized (sp?) OS and write programs which function correctly with non-adminstrative rights.

I cannot wait for that day to come :D

if they charge another arm and a leg for it then it'll be a failure no matter how good it is. They should at the very least provide a cheap upgrade option for Vista owners if they're going to release it that soon.

Ohh yeah.

Almost $700 for Ultimate is just way too much.

I want an overhaul of all legacy components: remove native support (registry, crazy dlls, etc.) for previous generation apps but allow them to be run using virtualization. That way, it'll be easier to build a componentized (sp?) OS and write programs which function correctly with non-adminstrative rights.

What's wrong with the registry?

Can you suggest a better alternative for storing settings? I can't.

http://blogs.msdn.com/oldnewthing/archive/...26/6523907.aspx

The registry is simply the best option for saving user and machine settings in a fast, flexible, safe, and secure manner, and It's really the only good way to do component registration.

What's wrong with the registry?

Can you suggest a better alternative for storing settings? I can't.

...

The registry is simply the best option for saving user and machine settings in a fast, flexible, safe, and secure manner, and It's really the only good way to do component registration.

Text files? XML files? Text files work with Linux.
What's wrong with the registry?

Can you suggest a better alternative for storing settings? I can't.

http://blogs.msdn.com/oldnewthing/archive/...26/6523907.aspx

The registry is simply the best option for saving user and machine settings in a fast, flexible, safe, and secure manner, and It's really the only good way to do component registration.

I disagree. The registry is contained in only a few files. Lose any of them and it can be a real heartache getting your system back up. I like the linux way of doing it with text files for different services etc.

I doubt they'll drop legacy code. Same reason Intel won't change their architecture to something that makes more sense. It would take a joint effort including MS, a bunch of major software creators, and a bunch of hardware manufacturers - otherwise it's not worth it to MS to brute force their way through the crap they'll take for making such a drastic change. It would be a terrible financial decision if they did it of their own will with no outside support, even though it is their own OS and despite the fact that they could probably manage it all.

-Spenser

Text files? XML files? Text files work with Linux.

Did you even read the link he posted?

Just a few reasons why those don't work:

  1. It's slow
  2. No per-key security
  3. Not thread safe
  4. Prone to Denial-of-Service attacks (or accidental DoS from badly written apps)
  5. Apps can read/write to them directly, limiting options to extend the format.
  6. Manageability is nearly impossible.

There is no way text files could ever fulfill the purpose of the registry.

But yeah, you go ahead an build COM based up on registrations in a text file. Good luck with that.

I disagree. The registry is contained in only a few files. Lose any of them and it can be a real heartache getting your system back up. I like the linux way of doing it with text files for different services etc.

I'm confused. Aren't two files easier to back up than 200?

Plus, it's not like applications are forced to put settings in the registry. The registry is first and foremost for registration. That is, COM coclasses / interfaces, file associations, handlers, protocols, etc. All stuff that is shared by multiple applications. Putting all that stuff in text or XML files would be a nightmare.

I agree with Brandon. :yes: The registy was/is a nice idea for what it was designed and implemented for. Then come all the developers around the world, and start to store all their programs' settings inside the registry -> of course it becomes big and slow. Then to make things worse, everybody tries to write a registry fixer and optimizer to "speed up your computer by 400%" :angry: . Of course it will become a mess.

I don't know if anybody here knows the story behind the notification area next to the clock. It is the same story :whistle: : it was designed to notify the user about events, then later all the developers had the idea to minimize their application onto the notification area, or create a quickstarter icon there. And now, what do you see there on an average computer: antivirus, firewall, bandwidth monitor, quicktime, nero, adobe, openoffice, nvidia and ati and other tray icons. Was the idea good? Yes. Can you use easily a PC with 15-20 tray icons next to the clock? No.

^^^ Microsoft themselves encouraged software developers to do this. And Microsoft led by example with their apps.

I prefer smaller files, in human-readable (and fixable) text format, that are accessed/read by the system only when needed. System files kept out of user write areas. Per user files kept inside each user's home folder. Clean. Orderly. Maintainable.

Sure, there are benefits to a binary database containing all entries from all apps and the OS. But surely you can see the disadvantages, too. ;)

I hope it's true as well. There may be a lot of annoyed Vista users though.

All Vista users are annoyed already

Even the ones like myself who never have any issues - but dont like the bloated overhead.

Im eagerly awaiting something different - Im getting tired of dual-booting.

Did you even read the link he posted?

Just a few reasons why those don't work:

  1. It's slow
  2. No per-key security
  3. Not thread safe
  4. Prone to Denial-of-Service attacks (or accidental DoS from badly written apps)
  5. Apps can read/write to them directly, limiting options to extend the format.
  6. Manageability is nearly impossible.

There is no way text files could ever fulfill the purpose of the registry.

But yeah, you go ahead an build COM based up on registrations in a text file. Good luck with that.

Why aren't *nix based systems (Linuxn BSD, etc.) a nightmare? Or slow? or less safe than Windows (ha!)? Kudos to them I guess right? Why so many applications do not use the registry and use text or xml or ini files to store settings? And why do many of us have to format Windows and reinstall because the registry (among other things) is full of crap?

Microsoft shouldn't allow people to write to the registry unless they follow proper guidelines.

Well I'd bet we won't see it before H2 2009. But I'm pretty certain Microsoft will make sure it's out before 2011 hits. They said they don't want no more 5 year releases and I agree. But 2 years seems to soon to me. 3 years sounds like a sweet spot, maybe with a better upgrade price too :D

Why aren't *nix based systems (Linuxn BSD, etc.) a nightmare? Or slow? or less safe than Windows (ha!)? Kudos to them I guess right? Why so many applications do not use the registry and use text or xml or ini files to store settings? And why do many of us have to format Windows and reinstall because the registry (among other things) is full of crap?

Microsoft shouldn't allow people to write to the registry unless they follow proper guidelines.

If you bothered to look at the link I posted, it would have spelled in great detail for you the problems posed by these kind of files, and why the registry is "better" than config files in many cases.

Some of the problems are specific to INI files, but a lot of the listed issues are problems that any kind of configuration file can have:

XML manages to sidestep many of the problems that INI files have, but only if you promise only to read from them (and only if everybody agrees to use a standard-conforming parser), and if you don't require security granularity beyond the file level. Once you write to them, then a lot of the INI file problems return.

Mio, some of those issues pointed out by Microsoft to validate Microsoft's direction are specific to Microsoft products only. The very first one talks about the Windows API limitation at the time. The second one poses the "administrator" values versus the "user" values. This would be handled by two different files, as any app with specific settings to work in that corporate environment would be out of reach of the users. And users would have their own settings that are read (local drive or user's 'home' folder off network) so they can make their own preference adjustments (UI settings and such). The third one is purely implementation issue, if two separate tasks are allowed to both open the file in write mode and both attempt writes to it. That's a strawman - it is nonsense, so just don't do it!

Some of the items are true - it takes fractionally longer to read and parse a file that is in ASCII text.

It is just weighing the pros and cons of large binary database versus smaller text files that are only read when needed (and are kept in memory during application run, so aren't constantly re-read and parsed).

I know where I put my money. :)

It would make perfect sense for the new version to come that soon, considering what a huge failure Vista has been.

It's a failure only in the eyes of the AMB trolls, check out CDW's latest report. Doubling OS X's market share in a year is a pretty good indicator.

Now before the fanboys scream "TROLL!", there is not one business I know of switching to Vista, it would be like suicide. The reasons are too numerous to go into now, but it's just not happening. I work in an IT dept and we have been evaluating Vista and found it simply not fit for purpose.

Once again, check out the CDW report, many businesses are now starting their vista migrations, my own employer included.

Windows me was only released 7 months after win2k.

Windows ME was not a successor to 2000 it was a successor to 98, and it was being developed concurrently with 2000 so that feat is not really as impressive as you make it sound.

Yeah me too.

I want BIOS to die or to evolve into something. Also, with RAID controller and a bunch of other on board chips, my pre-OS startup time is much longer than OS-load time. And it doesn't matter how fast the CPU is, it still takes forever to get to the stage when the OS starts to load.

Sadly, there's little MS alone can do to improve on that.

Wait till we get better EFI support from motherboard makers :D

I disagree. The registry is contained in only a few files. Lose any of them and it can be a real heartache getting your system back up. I like the linux way of doing it with text files for different services etc.

Linux is not immune to problems, I have had application installs b0rk in linux that could only be fixed with a complete reinstall.

Why aren't *nix based systems (Linuxn BSD, etc.) a nightmare? Or slow? or less safe than Windows (ha!)? Kudos to them I guess right? Why so many applications do not use the registry and use text or xml or ini files to store settings? And why do many of us have to format Windows and reinstall because the registry (among other things) is full of crap?

Microsoft shouldn't allow people to write to the registry unless they follow proper guidelines.

Not true at all, in fact I personally have found that on every computer I have ever used, applications actually take longer to launch on Linux than on Windows. What the registry gets loaded with is mainly down to vendors writing bad uninstall programs, if you ran windows how it came out of the box, and never installed any applications on it then you would never have to format it, the general rule of thumb is that the fault lies with software vendors.

The actual reality is that the windows registry is rarely if ever used as a vector of attack, it does not make Windows inherently unsafe.

Also, something you folks seem to be failing to consider is that part of the excessive technical complexity of Linux comes down to the way it manages application installs, you have to perform different edits for different apps, whereas with the Windows Registry everything is centralised and editable from a single location, making it much easier to configure and tweak.

Windows ME was not a successor to 2000 it was a successor to 98, and it was being developed concurrently with 2000 so that feat is not really as impressive as you make it sound.

XP was released october 2001. Which is 1? year after win2k, and 1 year after Win ME.

What Microsoft needs to do is start making new OS branches. One that supports legacy, one that gives the whole thing the much needed overhaul.

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

    • No registered users viewing this page.
  • Posts

    • Oh, of course not. The real "victims" are the people who snipe kids in the head, have killed more journalist than all the worlds wars combined, do double tap strikes on medical personnel, claim history started on October 7th, have a $700 million dollar annual Hasbara budget and pay influencers $7k a post to spout exactly this kind of propaganda. How dare you question the most moral army in the world. Victimhood belongs to these genocidal freaks alone. Anyone who denies that is literally Hitler. If you're going to support a terrorist state, the least you could do is come up with better talking points.
    • Gears of War: E-Day brings 12-player co-op, smoother traversal mechanics, and more by Pulasthi Ariyasinghe Right as the Xbox Games Showcase came to an end today, The Gears of War developer The Coalition took over to show off its next project: E-Day. This prequel project was announced back in 2024, but now we have a lot more details about its campaign, new gameplay mechanics, and even a release date. The studio says this is the first time it has managed to get the time to build the entire game in a new engine, as it had worked non-stop on new titles for years while porting classic code and assets. With Unreal Engine 5 now powering Gears of War: E-Day, The Coalition says it started completely anew, with all assets, animations, environments, and others being built from scratch. The campaign will take place across three days in the city of Kalona. The story will follow the events through the eyes of Bravo Squad. This is made up of the returning classic duo Marcus and Dom, as well as the new characters Mags Carter and Lucas Reyes. Watch the trailer below to see Marcus in action without his iconic armor and gear, just as the Locust invasion kicks off. The story will draw on classic Gears novels like Aspho Fields as well, with the studio even collaborating with author Karen Traviss. "That continuity is what makes the destruction land," says the studio. "In E-Day, you watch a living city torn apart—homes still lit, meals half-finished—while people abandon their cars and run for cover. Small details—a child’s toy, an uneaten dinner—make the loss real as everyday places collapse under the Locust assault." The movement system is getting a big overhaul here. Players will be able to slide while running, jump across gaps, climb head-height covers, and even crawl on the ground to avoid fire from enemies. As for the returning horde mode, The Coalition teased a new 12-player PvE mode. This will involve three squads of Gears going up against the incoming Locusts in larger city maps than usual. The studio says that it is going to reimagine the classic formula just as co-op games are going through a resurgence. Multiplayer was touched on today too, where Versus is coming back touting four versus four Gears PVP action set across Kalona maps. More details about multiplayer will be revealed later. Open beta weekends are kicking off this August for fans wanting to jump in early too. Gears of War: E-Day is releasing on Xbox Series X|S and PC on October 6 with pre-orders available now. It will also be a part of Xbox Game Pass on day one. Microsoft has confirmed this as an Xbox platform exclusive, as there are no plans to bring it to PlayStation or Switch.
    • Microsoft announces the return of Xbox exclusives with Gears of War and Clockwork Revolution by Pulasthi Ariyasinghe Microsoft had plenty of announcements to make today at the Xbox Games Showcase celebrating 25 years of the gaming brand. Now, under the leadership of the new Xbox CEO Asha Sharma, Xbox games are going back to their original release methods. She appeared in the livestream itself to announce the return of Xbox console exclusives. This means two major upcoming games from first-party studios won't be coming to PlayStation or Nintendo consoles: Gears of War: E-Day from The Coalition and Clockwork Revolution from InExile. Both titles will only be coming out on Xbox Series X|S consoles and Windows PCs, ditching any plans they had for PlayStation. "These are not timed exclusives," confirmed Microsoft. "We’re committed to investing in and growing XBOX both on console and beyond." The company confirmed that any already announced Xbox titles for PlayStation, under previous leadership, will continue to arrive for the rival platform. This means games like the new Halo remake, Forza Horizon 6, Fable, and State of Decay 3 will still be available on PlayStation, either at launch or later. It sounds like any new projects announced by the company will avoid other consoles in the same way. Microsoft first opened the floodgates by bringing titles like Sea of Thieves, Grounded, Hi-Fi Rush, and Pentiment to PlayStation and Nintendo consoles back in 2024. Since then, almost every new game release from Xbox Game Studios has arrived for rival consoles alongside Xbox and PC. This decision follows Sony's plans to ditch its own multiplatform releases too. Outside of multiplatform live service titles, the PlayStation maker is even abandoning its PC porting endeavors that started years ago.
    • I'm missing the beginning part of this equation... but for the sake of the convo, you don't get to take a $250(?) set of normally priced RAM, jack it up to over $500/600/800 just because of a market shift, then lower it back down to more than what it was originally and call that a "sale". Not the author of this post... the manufacturer/seller.
  • Recent Achievements

    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      243
    3. 3
      Steven P.
      72
    4. 4
      +Edouard
      66
    5. 5
      FloatingFatMan
      65
  • Tell a friend

    Love Neowin? Tell a friend!