Slashdot Mirror


Why Vista Won't Suck

creativity writes "ExtremeTech is running an article on the new features of Windows Vista and why it is a must upgrade for all Windows users. They take apart the marketing hype and tell you what exactly to expect in Windows Vista. They specifically pick out less-hyped features like a kernel which has new Heap Management and details on SuperFetch, which is Vista's application cache."

38 of 796 comments (clear)

  1. Sorry to be Negative.... by conJunk · · Score: 4, Insightful
    Sorry to be so negative, but this is like the Highway Division saying "Well, we got tired of projects taking 15 years to complete, so now we're going to do them in one year!"

    If it's true, great, bully for them and well done, but I'll believe it when I see it. My hopes aren't too high for all these cool fixes/features to actually function as advertised. Maybe I'll be pleasantly surprised, who knows?

    1. Re:Sorry to be Negative.... by Skye16 · · Score: 2, Informative

      Having played with it for 13 days after getting it off of BT, I can say that Vista is as much a change away from XP as Linux is. I actually found it easier configuring things in KDE and Gnome than I did in Vista -- how crazy is that? Of course, this is mostly because every configuration you could do via a particular widget on the control panel has been moved to another widget, or hidden, tucked away in the shadows to the left, but it's much different.

      Whether or not the security model truly is secure is something I can't answer. However, Vista pesters you for permission to run just about every exe out there for the very first time, assumedly before it has been registered as 'safe'. I don't remember 100%, but I believe it required me to create a separate user account on installation, along with the administrator account. Of course, since my activation would expire after 14 days, I really didn't give a fuck if someone would be able to compromise my system, so I ran everything as Administrator anyway. Therefor I can't really tell you if it requires Administrator priveleges to install programs.

      It did make use of a C:\Users\ folder, however, which was rather nice.

      In any event, I'm sure you can find the DVD ISO on one of the torrent networks so you can check it out yourself. I like to give Microsoft a hard time just as much as the next guy, but in all honesty, this is a very, very slick and polished OS. I had vowed never to buy it and to move to Linux, but now I'm questioning my decision. Now it's a question of all the DRM restrictions I would have to endure.

    2. Re:Sorry to be Negative.... by shotfeel · · Score: 2, Insightful

      It did make use of a C:\Users\ folder, however, which was rather nice.

      How many years has DOS been dead, and drives are still identified by a letter. Just one of those things that makes me shake my head sadly.

    3. Re:Sorry to be Negative.... by EatHam · · Score: 2, Funny

      I bet the registration/activation scheme will be even more secure now.

    4. Re:Sorry to be Negative.... by amliebsch · · Score: 3, Informative

      As I already said, by convention the only one that is "required" is C:\. As a convention, it is neither right nor wrong, it just is. All additional volumes can be mounted as subdirectories under C:\, even removable volumes, which I believe will automount based on either device ID or volume label (I haven't tested this rigorously.) When you remove the device, the mount point becomes a simple directory, and when you re-attach the device, it automounts to that same directory. If you are connecting many hard drives, you can simply mount them as C:\mnt\hda1, C:\mnt\hdb1, C:\mnt\hdc1, etc., so it scales just fine.

      --
      If you don't know where you are going, you will wind up somewhere else.
    5. Re:Sorry to be Negative.... by ppanon · · Score: 2, Interesting

      The registered as "safe" thing will be meaningless as soon as one of MSs "safe" apps has a vulnerability

      Right, because all that will happen is that the same social engineering techniques that have been used to make very successful e-mail worms will be used to convince users to allow execution of a new program. And by then, the users will have gotten to conditioned to the reflex of clicking OK on all those execution dialogs after installing new software and years of ActiveX "Of course I'm safe to run!" components.

      --
      Laissez lire, et laissez danser; ces deux amusements ne feront jamais de mal au monde. - Voltaire
  2. Foot? by Yonatanz · · Score: 2, Funny

    For a minute there I was looking for the foot icon.
    Oh silly me.

  3. 5 Reasons Why Vista WON"T Suck by Foofoobar · · Score: 4, Funny

    1. DRM is good for you. It builds strong bones and healthy muscles.
    2. Using half your memory for your windowing tool will impress all your friends.
    3. Now you can set the color of your blue screen of death to mauve or taupe.
    4. You know the customer support is only going to be better.
    5. Collectable virus game built in! Better than Pokemon on crack.

    --
    This is my sig. There are many like it but this one is mine.
    1. Re:5 Reasons Why Vista WON"T Suck by RickBauls · · Score: 3, Insightful

      2. Using half your memory for your windowing tool will impress all your friends.

      I was thinking how funny it is that our processors and ram keep becoming more and more limitless, however we can't take advantage of it because the os we use is taking more and more resources.

    2. Re:5 Reasons Why Vista WON"T Suck by marshall_j · · Score: 2, Informative

      You don't think maybe it's a case of if it's there use it?

      I have a flash graphics card in my computer and when I don't have a game running the gfx card isn't used so why not use it?

  4. Exsqueeze me?! by ettlz · · Score: 4, Insightful

    From TFA:

    SuperFetch also takes advantage of external memory devices--plug in that spare 256MB USB key (any size will work, really) and Windows can cache a lot of the working set to it. It's not as fast as your system RAM, but it's much faster than randomly grabbing small bits of data from all over your hard drive.

    Aside from the fact that modern hard discs are supposedly faster than USB 2.0, isn't paging out part of the VM to a hot swappable device just dope-assed? Shurley shome mishtake!

    1. Re:Exsqueeze me?! by ettlz · · Score: 3, Insightful
      I don't believe for a second they rewrote the fscking NT kernel.

      Indeed. If that were the case, and Dave Cutler were dead, we could attach magnets to his corpse and use it to generate electricity. Another anomaly:

      ...there are problems in Windows XP when developers deal with large heaps, heap fragmentation, etc. In the Vista kernel, they have cleaned that up, helping to prevent heap fragmentation and gracefully deal with large heap requests...

      Now, hang on a minute... what the fuck does the kernel have to do with application heap management? I thought that was part of the user-space runtime — the C++ libraries, or whathaveyou. Are they talking about the kernel memory allocator or something (the "Object Manager" in NT parlance)? Have they added a slab allocator to NT? So much for the elegant architecture of NT!

    2. Re:Exsqueeze me?! by Foolhardy · · Score: 2, Informative

      Process memory allocation != heap allocation. The smallest amount of memory the kernel can allocate to a process is one page, which is 4096 bytes on the i386 architecture. Linux operates exactly the same way. To request more memory be committed and mapped in a process, the NtAllocateVirtualMemory syscall is used. 4096 bytes is much too large for most general purpose allocations, so a heap structure is used to further divide up the memory size. The standard heap code (used by the Win32 heap functions and Microsoft's C runtime) resides in ntdll.dll, and are executed entirely in user mode. When the heap code needs more pages to expand the heap, it surely does call NtAllocateVirtualMemory, but most allocations are done on a much smaller scale.

      XP introduced (and had backported to 2000) the Low Fragmentation Heap option that uses presized buckets to reduce long term fragmentation. That's the only thing I can think of that they could be talking about. It's part of the standard heap code in ntdll running in user mode.

      Microsoft certainly didn't rewrite "large parts of the kernel." If they were going to do something on that scale, you'd think they would ditch (or at least marginalize) the awful Win32 subsystem, but they aren't. This is one of the worst attempted technical articles I've seen in a while. Besides, the kernel never was the weak point in Windows NT's (yes, Vista is still NT) security model, or as an OS in general.

  5. Wait a second... by Anonymous Coward · · Score: 2, Insightful

    Many users view Windows XP (and Windows 2000, and previous Windows versions) as unsafe. No matter how many patches and updates Microsoft releases, the foundation of the OS itself the kernel is designed and built in a way that prevents it from being truly secure. The only solution, it is argued, is to redesign and rebuild the kernel with a focus on security and stability.

    Isn't this what linux people were saying more or less all these years and were called zealots by MS fanboys?

  6. Re:1 reason vista will suck by Anonymous Coward · · Score: 2, Informative

    Basically, Vista will be HDCP enabled, so if you want HD and protected content on it, you have to have a DRMed up monitor that can process HDCP.

  7. Why Windows * Won't Suck by Jugalator · · Score: 4, Insightful

    Why limit yourself to Windows Vista!?

    Windows Me

    "Windows Me: PC Health Features Keep PCs Stable, Secure and Reliable -- and Take the Frustration Out of Computing for Home Users" (source)

    Windows 2000

    "Our primary goal is to improve security and safety for all our customers -- consumers and businesses, regardless of size -- through a balance of technology innovation, guidance and industry leadership," Gates said. "We're committed to continued innovation that addresses the threats of today and anticipates those that will undoubtedly emerge in the future." (source)

    Windows XP

    "Windows XP is the most secure and dependable operating system we have ever produced." (source)

    Windows Vista

    "In Vista, it should be much more difficult for unauthorized programs (like Viruses and Trojans) to affect the core of the OS and secretly harm your system." (source)

    --
    Beware: In C++, your friends can see your privates!
  8. Re:1 reason vista will suck by jorenko · · Score: 3, Informative

    What he means is that if you want to watch HD-DVD or Blu-Ray media that is protected by HDCP(which practically all retail movies probably will be) at a resolution higher than what's possible with a regular old DVD under Vista, you'll need to buy a monitor that also supports HDCP. But this is also the case for your TV and other equipment and in no way impairs other functionality of Vista.

  9. a "MUST UPGRADE"? by WoodstockJeff · · Score: 4, Insightful
    If you want it, you must upgrade... everything. Unless, of course, you're currently running the latest blood-still-flowing-from-the-wounds-edge game machine, in which case you'll just need more memory and a better video card.

    Why must I upgrade, though? What will I gain that I want in the first place? Better game performance? Not needed, since I don't do games. The ability to run the latest Microsoft Office at speeds approaching what you could do 5 years ago? Sorry, I already jumped ship to other options. Stronger DRM so that I'll be able to play Sony's next CD/DVD/WhateverD? I'll pass...

    What I'd like is some tuning on the current operating system, so that it doesn't need more CPU cycles to do simple tasks, like display directories. And how about fewer holes for virii and worms, without introducing a whole new layer of software to protect the last new layer of software, which was to protect me from bugs in the previous new layer...

    Oh, wait... that's Linux.

  10. Looks like a forced upgrade for US gov users... by xxxJonBoyxxx · · Score: 5, Interesting

    Looks like a forced upgrade for US gov users; if AES-256 and "SHA-2" hashs are really going to be US gov security requirements, the only way Microsoft will support them is by upgrading EVERY windows desktop and server to Vista. (For some reason Microsoft has refused to put AES-256 support into any non-Vista version of its SSL stack even though the rest of the industry has been doing so for almost five years now.)

  11. Don't be sorry by QuaintRealist · · Score: 2, Interesting

    I remember my last intentional switch to Windows (Win 95). It, too, was going to have all these wonderful new features (better GUI, better memory management, multitasking). I tried for 2 years to get the same level of stability I had in DOS, and then went to OS/2. And machines which didn't ship with Win 95 were even more of a beast to get working correctly if you had added stuff to your box.

    IMHO, "upgrading" to Vista will be the same thankless task, and it will be at least a year before machines shipped with Vista are going to be "right". Microsoft will rush this job because it's already so late that they almost have to.

    --
    Using plain ol' text since 1968
  12. Vista sucks. by millennial · · Score: 5, Informative

    I've been beta testing Vista for a while now. After installing Vista, I swear to God - the OS cached every single EXE file on my computer in a folder in the root of Vista's installation drive. Each EXE file is given its own subfolder in this folder, with the same name as the file followed by a unique hash. Each subfolder contains the EXE file and several accompanying files, at least two of which are XML documents.

    When all was said and done, this folder took up nearly 5GB on disk. I can't even open this drive in Explorer. I let it sit for about 20 minutes once and my PC slowed to a crawl

    Whatever this godawful "feature" is, I hope it is removed for the final version.

    --
    I am scientifically inaccurate.
    1. Re:Vista sucks. by hackstraw · · Score: 2, Interesting

      I've been beta testing Vista for a while now. After installing Vista, I swear to God - the OS cached every single EXE file on my computer in a folder in the root of Vista's installation drive. Each EXE file is given its own subfolder in this folder, with the same name as the file followed by a unique hash. Each subfolder contains the EXE file and several accompanying files, at least two of which are XML documents.

      When all was said and done, this folder took up nearly 5GB on disk. I can't even open this drive in Explorer. I let it sit for about 20 minutes once and my PC slowed to a crawl

      Whatever this godawful "feature" is, I hope it is removed for the final version.


      This "feature" is the supposed "trusted" applications thing.

      I used to do the same thing with downloading pictures off of alt.binaries newsgroups.

      What I would do is use a unix command called 'suck' and suck down the entire newsgroup since the last time I sucked it down. It would then do md5 checksums of the decoded pictures and store them in a MySQL database. Duplicate md5 checksums were automatically deleted. Either I had seen the pic before, or more than likely it was spam. Hey, even porn spam is cool sometimes, but once is more than enough. This was not resource intensive for a basic 64bit machine in the late 90s.

      The thing is, that this did not need to be a 5 Gig slowing a machine to a crawl feature. Doing the checksum on a binary and storing it into a simple db is not that tough. Its a good idea. I run md5 checksums on all of my binaries every night to tell if something has changed. Its valuable when multiple people have root, so you know when something is screwed up and the binary just changed, odds are....

      Anyway, it sounds like a good idea, but a very poor execution of the idea. Kinda sounds like the registry?

  13. windows? by Intangion · · Score: 2, Interesting

    which version out of the 12 should i upgrade to ;) i think windows vista is likely to do more for linux than anything before ;) i mean what would you rather do, pay for a whole new operating system that is very alien to you, and requires you to upgrade your hardware and alot of software, and is likely unstable (and new so doesnt have a proven usability).. or download a FREE operating system that is also somewhat alien (to windows users), but has proven stability and usablity, also you wont have to upgrade your hardware for it either... oh btw did i mention its free?

    i for one am tired of microsoft telling me when i have to drop 2000 dollars for a new computer. your choises are:
    A) keep using (and patching) the older versions of windows which become more and more unstable patch after patch
    B) keep using the older versions of windows but DONT patch, and then your system becomes more and more exploitable as more exploits are discovered
    C) upgrade your hardware, and buy new version of windows every couple of years, (spending potentially thousands of dollars), relearn how to use the new windows, relearn how to use the new office all over again..
    D) download a free open source alternative, DONT upgrade your hardware, dont let your upgrade schedule be locked into someone elses marketing plans. dont run the most heavily targetted OS for exploits/hackers. Use open office which seems to be more similar to MS Office than the new version will be. DO enjoy the benefits that come with open source

    After using linux for a while going back to windows is extremely painful and youll wonder how you ever managed to use it.

  14. Re:1 reason vista will suck by Skye16 · · Score: 2, Insightful

    then don't buy the fucking media? be pissed at the media cartels for trying to make you buy crippled entertainment, not vista. just wait a few days and get an HDDVD rip on BT.

  15. Why Vista will suck... by TBone · · Score: 4, Insightful
    From the article:

    The whole kernel has been reorganized and rewritten to help prevent software from affecting the system in unsavory ways. In Vista, it should be much more difficult for unauthorized programs (like Viruses and Trojans) to affect the core of the OS and secretly harm your system.

    As opposed to authorized programs, like the Sony backdoor, which used Microsoft-supplied methods to create the program to hide from the users.

    SuperFetch learns which applications and bits and pieces of the OS you use most and preloads them into memory, so you don't have to wait for a bunch of hard drive paging before your apps or documents load.

    Great, the new OS is going to be bigger and bloated just from the OS, and now SuperFetch is going to suck up even more free memory with programs that I may or may not load, but that my computer thinks I'd like to be able to access quickly. Like Windows Media Player, and MSN, and Internet Explorer. And Kazaa. Sorry, was that my outside voice?

    ...Vista should be far more secure by design, so hopefully we'll see almost no viruses or Trojans, or at least not any that affect a large number of users...

    Oh, so we won't use Outlook any more, that's a plus at least.

    The new networking stack has a much bigger focus on security, working better with firewalls to allow much finer granularity of which applications can use network resources in which ways, and it's made to stand up a lot better to network attacks.

    Great. Now when your parents get the popup that some application wants to access the network, and are presented with all these options for "finer granularity of which applications can use network resources", they'll just turn them all on and go instead of actually learning the ins and outs of TCP security. That's much more secure.

    Besides improved security, the most noticeable difference in Vista's networking will be its greatly improved performance.

    With the kernel sucking up all my memory by preloading applications, a brand new networking stack, and all these operations going on in the background to maximize my heap, I'll not be holding my breath.

    That's right, Vista will include a built-in speech recognition engine, and new and improved speech synthesis.

    Vista will have per-application volume control.

    Now a new feature called SafeDoc will let you automatically create shadow copies of files as you work on them, so if you accidentally delete a file or need to go back to a previous revision, you can restore the shadow copy of just the file you need.

    If you've got a DirectX 9 graphics card with 128MB of RAM or more, you'll be able to enable the "Aero Glass" desktop in Vista.

    More, more, more, and more performance-sucking and hardware-gobbling "features". I don't know anyone outside of hardcore gamers that currently has a DX9-compliant, 128MB video card - my parents surely don't. I just last month bought one so that I could play Fable on my comp while I'm away from home for a few months. And I guess I better get that double-500G hard drive option in my new computer so that all my SafeDoc backups don't make all my disk space go the way of my free memory used by SuperFetch.

    Users, by default, operate in a mode with fewer privileges than before, which means that "noobs" who don't know any better can't accidentally install software full of spyware.

    And "noobs" who do know just a little better will give themselves administrator accounts so that they can install software whenever they want without changing roles, completely mooting any "default user level access" security changes being made.

    Unfortunately, there is no built-in virus protection software.

    Why do we need virus softwar

    --

    This space for rent. Call 1-800-STEAK4U

    1. Re:Why Vista will suck... by sootman · · Score: 2, Insightful

      > Great. Now when your parents get the popup that some
      > application wants to access the network, and are
      > presented with all these options for "finer granularity of
      > which applications can use network resources", they'll
      > just turn them all on and go instead of actually learning
      > the ins and outs of TCP security. That's much more secure.

      Exactly. This will continue to be the single biggest problem. There are so many places where computers tell us messages which, in aggregate, are completely meaningless. If OWA insists on printing "Attachments may contain viruses that are harmful to your computer" next to each and every attachment, always then it becomes a meaningless message.

      It's one thing if you're picking up a box full of glasses and someone says "be careful with that!" It's another if they follow you around and say "be careful with that!" every time you pick up a pen, a sheet of paper, or a phone. By the time it matters, it's ignored.

      >> Users, by default, operate in a mode with fewer privileges
      >> than before, which means that "noobs" who don't know any
      >> better can't accidentally install software full of spyware.

      > And "noobs" who do know just a little better will give themselves
      > administrator accounts so that they can install software whenever
      > they want without changing roles, completely mooting any "default
      > user level access" security changes being made.

      Yup. Same as above. Any pestering that prevents a user from having fun will get turned off. Always. hasn't anyone at MS noticed this yet? Maybe they do know and are just ignoring this fact so they can say "we made a secure OS this time--it's the user's fault if things go wrong because they turned off the security features!"

      --
      Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
  16. Re:1 reason vista will suck by geekoid · · Score: 2, Insightful

    Except if a monitor or video card isn't approved by MS, you have to use the basic setings MS has planned for. How many monitor companies that where here 5 years ago are gone?

    --
    The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
  17. Re:1 reason vista will suck by leuk_he · · Score: 2, Insightful

    Well, that's exactly what Microsoft is doing with Vista. The whole kernel has been reorganized and rewritten to help prevent software from affecting the system in unsavory ways. In Vista, it should be much more difficult for unauthorized programs (like Viruses and Trojans) to affect the core of the OS and secretly harm your system.

    Which will also make it impossible to run freeware programs that need kernel access. No more deamontools, no more vnc mirror drivers.

  18. Re:1 reason vista will suck by swissmonkey · · Score: 3, Insightful

    Reason #1 doesn't apply, it costs 250$ to submit a driver for signing : https://winqual.microsoft.com/download/WHQLPOLICY. doc

    Reason #2 doesn't apply for the same reason

    Reason #3 Eh, simply play non-DRMed content then, playing it at low-quality is better than not being able to play it on your Linux box or other

    Reason #4 I call that jaleousy

  19. The DRM talking point by Keith+Russell · · Score: 2, Informative

    To all of you who are bitching about DRM in Vista:

    How is DRM in Vista any different from DRM in XP? Or Windows 2000? Or Mac OS X?

    The answer is simple: It's not any different. The reason is even more simple: Big Media is calling the shots, not Microsoft.

    Whether the media in question is downloaded music, downloaded videos, or HD-DVD/Blu-Ray, it is Big Media making the demands. If you're a software vendor, your choices are to go along to get along (Microsoft, Apple, Tivo), do without (Linux), or face the wrath of an army of lawyers (DeCSS, 321 Studios).

    The tools and techniques keep changing, but the principle remains the same. Big Media will burn down everything in their path to stop people from copying bits.

    --
    This sig intentionally left blank.
  20. Re:1 reason vista will suck by grahamdrew · · Score: 3, Insightful

    No, there's a fair chance he's correct. The issue is that if DRM is being performed at kernel level, all kernel-level code must also be signed or it can bypass the DRM. Someone will probably find a way around it, but it's not as silly as you'd think.

    --
    // Dumps core here
  21. Let me see if I have this straight by multiplexo · · Score: 2, Interesting

    One of the reasons Vista won't suck is because Microsoft is moving a bunch of stuff out of the kernel and into user space. OK, 10 years ago when Microsoft shipped NT 4.0 they put GDI in the kernel to increase performance, which was a terrible idea as the performance increase this gave was more than offset by stability problems. If Microsoft had been smart they would have kept the kernel as small as possible and waited a couple of years for hardware speeds to increase, as they inevitably did. So basically one of the biggest reasons Vista "won't suck" is because Microsoft has finally decided to undo mistakes they made 10 years ago. Color me less than impressed.

    --
    cheap labor conservatives - they want to keep you hungry enough to be thankful for minimum wage.
  22. Re:1 reason vista will suck by MStiles · · Score: 2, Interesting

    This is patently untrue, and is just one of many examples where people completely misunderstand MS's support of HDCP and a secure digital path to the monitor. There is NOTHING in Vista that requires this. NONE. ZIP. The secure digital display output is there to enable that REQUIREMENT of HD-DVD and blu-ray. If you have a problem with it, complain to both the HD-DVD and blu-ray consortiums, it's their fault. And it'll need to be in consumer set-top players as well as any other OS on any computer that wants to comply with those standards. Don't want to play HD-DVD or blu-ray? Fine, then you don't need a new video card or monitor.

  23. Why Vista Won't Suck? by njchick · · Score: 2, Funny

    Let me guess. Because it will include a vacuum cleaner, right?

  24. How are schools supposed to manage this? by Omicron32 · · Score: 2, Interesting

    I work in a school, with an obviously limited budget, and cheapo Dells as the main workstations. They work fine with XP, and run everything very fast. No complaints. Will they run Vista? Will they bollocks. You're talking about £10,000 of hardware per ICT suite, and we have 7 suites and about another load of machines knocking around in various places (totals about 300). I'm sorry, but we won't be splashing down £70-90k (and the rest!) to buy a whole new load of PCs just to run Vista on. A lot of these new features sound like the biggest waste of resources ever, and they all seem to be taking the Gnome^W^W route of adding things in that they think people will want, then removing the options to stop it.

    What the hell is the deal with this "hibernation" mode they're talking about? The DEFAULT option is to NOT shut the computer off? In this day and age with our up-and-coming energy crisis, and MS are going to make all these new 500W+ PCs NOT shut down? Who was on the crack that day at Redmond when they decided to make that the default option.

    In my home life, my next step is a Mac. I've "upgraded" from DOS, to 95, then 98, then straight to XP, then an experiment with Linux ended up removing my XP partition.

    Not having the reinstallation disks, I've been a happy Linux user for 4 years now. (Though I did get around to reinstalling XP, I never use it - managing 500 XP desktops at work is more than enough XP for me.)

  25. Except network shares by Nurgled · · Score: 2, Insightful

    A strange omission, though, is that you can't "mount" network paths in the filesystem. I can't make \\someserver\blah appear as c:\blah. This is quite an annoying special case, since it means you can't abstract away the names of servers to allow eg. moving stuff between servers without retraining users. Companies, including mine, instead use mnemonic drive letters as the aliases.

    I've often wondered why Windows doesn't treat network shares as it does everything else: why can I mount one as a drive letter but I can't have one as a reparse point in my filesystem?

    1. Re:Except network shares by JourneymanMereel · · Score: 2, Informative

      You kinda can using something called DFS on Windows servers. It's kindof a pain to set up, but you can make it so F:\Share points to \\server1\share and F:\Stuff points to \\server2\stuff. Not perfect and AFAIK a PITA to set up, but possible.

      --
      Life has many choices. Eternity has two. What's yours?
    2. Re:Except network shares by Nurgled · · Score: 2, Interesting

      I have experimented with DFS a bit, though I was using Samba as my server rather than Windows. It does work quite well as long as you are using a domain. Unfortunately in my initial experiments I wasn't using a domain and so there were some problems with credentials across the various machines. Still, it's a step in the right direction, and certainly better than nothing.