Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Tuesday, May 26, 2009

Enabling PalmDesktop for a multi-user Windows installation

According to this post, the synchronization software for PalmOS devices under Windows "needs to be installed with the user logged on. This is a profile specific program". To avoid re-installing the program for each user:
  1. login with the user for which the program is currently installed;
  2. with regedit export the registry key HKEY_CURRENT_USER\Software\US Robotics\ to a file, like palmdesktopenable.reg;
  3. logout and then login with the user who wants to be enabled;
  4. run regedit /s path\to\exported\key\palmdesktopenable.reg;
  5. close and quit HotSync;
  6. re-run HotSync.
Now you can synchronize and use PalmDesktop without getting the error message "Invalid Configuration - Terminating the Palm Desktop".

Monday, February 2, 2009

Multi-booting several Windows based OSes

Microsoft itself explains how to make coexist different versions of her OSes on the same disk. The key point is that they have to be installed in age order: the youngest last. Quite uncomfortable, particularly if you already have a consolidated setup and want to add an older version.
I also tried to install WindowsXP (64bit) after Windows2000 professional (32bit) on two different partitions, but then Windows2000 didn't boot anymore. Even if they are on separate partitions the share the C:\ for the bootloader. I don't believe it's a 32-64 bit issue, but I have no time to investigate.
I feel better this way (each OS with its own bootloader):
  1. install (or keep installed) Windows "A" in its proper partition (e.g. the first one);
  2. add a partition to hold Windows "B" (e.g. the second one);
  3. use the preferred tool (e.g. grub) to hide partition "A";
  4. install Windows "B";
  5. install grub on the mbr of the hard drive and make it reading the menu.lst containing:
    title Windows A
    unhide (hd0,0)
    hide (hd0,1)
    rootnoverify (hd0,0)
    chainloader +1
    makeactive

    title Windows B
    unhide (hd0,1)
    hide (hd0,0)
    rootnoverify (hd0,1)
    chainloader +1
    makeactive