Multi-PC single user experience

In a one PC home it’s easy to keep a consistent user experience. Simply set up the welcome screen and Fast User Switching with multiple user accounts in windows XP and all your apps files and settings are there. But as soon as you have two PC’s this experience breaks down. My file that I need on one PC are saved on the other. A program I installed on one computer isn’t installed on the other. There is no way to mirror all your settings and keep the exact user experience across multiple users and multiple PC.

Until Now. First a warning… This is a hack, not a bad naughty type of hack but a hack in the sense that it’s not ideal but it works well enough some of the time that some people may find it useful.

I call it a virtual user account and it allows your user experience to be identical regardless of what computer you walk up to. Here’s how it works, the process requires XP Pro on each PC and an experienced XP user to set it up.

  1. On each computer set up a user account for each user that will need access.
  2. On each computer enable remote desktop
  3. For each person designate the computer that will be their primary PC where files should be stored.
  4. For each user account that is not the primary account we will create a remote desktop connection file to their primary PC. Then use regedit to set the remote desktop application as a replacement for the explorer.exe shell. The right key is:
    HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\WinlogonYou will want to create a key called shell with a value set to something like:
    %SystemRoot%\System32\mstsc.exe “c:\savedRemoteDesktopFile.rdp”
    The remote desktop application will connect to the primary PC and automatically log in the user.
  5. If you screw up and don’t have a shell remember you can use CTRL+Shift+Esc to bring up the task manager and get you out of trouble.

The result is almost seamless. As a normal user from the welcome screen I just see multiple accounts like normal. When I select an account I get logged in. In some cases the login happens through terminal services and in other cases it happens on the local PC.

This works great for the old desktop that you don’t use all that often or for someone who hops between many computers and wants a unified user experience.

Known issues

  • XP may drag a little on the welcome login screen. I believe it’s waiting for the application to load before showing the application but I’m not sure.
  • If the primary user of a computer is connected remotely and someone else walks tries to the computer and tries to use it it’ll bump the remote person off.
  • I haven’t found a way to hide the remote desktop minimize bar. It hides after a second or two but I’d like it completely gone.

Post to Twitter

Creating Hierarchy

When I talk to software companies they are perpetually trying to put things in hierarchical structures for their data. These are three conversations I’ve had this week…

  • A person is an object that lives in a site, a site belong inside an organizations and organizations may belong to other organizations
  • A Notebook is a type of Computer, A computer is a type of hardware and hardware is a type of product that we can sell
  • A virus is a type of computer vulnerability, a vulnerability can be broken up into categories, each of these can have sub-categories

Why is everyone trying to create hierarchical structures?
I believe people like to make hierarchies of data because it brings order to chaos. A hierarchy takes a list of 5000 items and makes it manageable because each one is broken into a much smaller list. What I tend to see if people will create these hierarchies until they get down to sets of under 100 items. If the list is over 100 items I can almost expect a person to want to create some additional category, grouping or filter to narrow the list.

Why is hierarchical structures difficult UI?
Believe it or not many beginners have trouble using a tree structure to navigate, users have trouble with the distinction of clicking on a node vs. expanding a node so in terms of UI I try to avoid tree controls as the primary means for finding and categorizing.

Hierarchical structures increase the likelihood that you will get lost. For example let’s take an example where you need to select a City. If you are a fan of hierarchy you may create a structure where you first expand the State and then select a city. Now if you need to select the city Boston you first need to know that Boston is a city in Massachusetts. Then you expand Massachusetts and then select Boston. Sure you’ve added structure to your hierarchy but you’ve added complexity.

Long lists are not always a bad thing. A dictionary or telephone book is a long linear list. Even though it’s long it’s also simple and predictable. It’s much more common for a hierarchy to be open to interpretation.

Given the hierarchy
- Keyboards
- Mice
- Joysticks
- Accessories
Where would you expect to find a “track-pad?” Because of the hierarchy it can be arbitrary where the item should appear. Perhaps some people think it’s a type of mouse, perhaps others see it as a keyboard option while others may think of it as an accessory.

What should I do?
- If possible see if you can avoid the hierarchy? Is it really needed or is it an artifact of an abstract desire to bring order to chaos?
- Ask if you can solve the problem by searching or filtering a long list? Remember Yahoo started with a hierarchy and now it’s all about searching through that hierarchy.
- If you need a hierarchy then duplication is not necessarily a bad thing, consider the option of allowing nodes to live in multiple places.
- If many of your hierarchical nodes will have only one item within the node, try to remove that extra level of abstraction.
- Even if you have a hierarchy still provide a mechanism to search across that hierarchy.
- Don’t add the hierachy untill you actually discover that you need it. Many times people think a flat list will need some additional structure and they are surprised to find out that it suites their needs just fine.

Post to Twitter