Okay Woody, I think you're going to like this one.
Back in the old days, I used to use a dos based <a href="http://www.google.com/search?q=fu_rd19i.zip">ramdisk</a>. It was simple and easy to use and you could initiate it from autoexec.bat. Windows used to have ramdisk.sys but it topped out at 32 megs, so a better one was in order. Enter winXP and it would no longer work, not least reason of which was that autoexec.bat doesn't get run anymore. Of course, you can still get a ms ramdisk but it still has the same limitations it's always had. Then I found one by <a href="http://www.arsoft-online.de/">AR soft</a> and it worked for a while but for some reason I don't recall it wasn't up to snuff. Then I found one by <a href="http://users.compaqnet.be/cn181612/RAMDisk/RAMDisk.htm">Q-soft</a> which is the one I'm currently using. Only thing is, when I was using the dos based ramdisk, I could add commands to make temp directories and set paths within the autoexec.bat file. Now, however, while q-soft works fine, for the most part, I lose the ability to do the automatic grunt work. Here's where it gets fun. I make a batch file. I could call it anything, including autoexec.bat, lol, but since it's main duty is to prep the ramdisk, I just call it ramdisk.bat. Then, in the registry, I add a key to trigger the batch file on start up.
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"RamDisk"="C:\\ramdisk.bat"
Voila, instant autoexec.bat all over again. MS can try to make it harder, but they can't stop us. Anyway, I make a temp directory for the browser temp files, set a couple paths, and that's pretty much it. Until lately.
Each day, I download a couple files routinely. They get saved deep in the directory structure on an out-of-the-way partition. About ten clicks. So, I went looking for the command line code to make a shortcut. I came across the site you first linked to, but couldn't find a shortcut.exe and since that site emphasizes nt, or seemed to, I left it alone. I, at about the same time as you, also found (via a google search on "shortcut.exe") the <a href="http://www.jsiinc.com/SUBM/tip6000/rh6035.htm">jsiinc.com</a> site you found (most of those other links, including the ms ones, are either dead or don't apply to xp). So, no problem. It took me a few minutes to get the parameters right, but it works fine.
Code:
Shortcut /F:B:\Shortcut.LNK /A:C /T:C:\path\to\target\directory\
Note. You have to include the .LNK extension or it won't work.
I dropped that into my ramdisk.bat file and now I have a shortcut to the deep path on startup. And the best part is my routine save takes only two clicks.
Worth it? We have computers, might as well make them work for us. It's noteworthy, though, that this is three times the work that it would be on a unix based system for the same task.
That's my story, and I'm sticking to it.
Thanks ;-)