I am enrolled at the Art Institute of Pittsburgh - Online working towards a Bachelor of Science in photography.
My other blog [blogspot.com]
My configuration is imported into the registry prior to starting PuTTY. It's exported again when I'm done so that any changes that I make are stored. Then the registry keys are deleted.
I made a directory "putty" on my USB keychain drive and created the following files in it:
@ECHO OFF
set USB=E
if !%COMPUTERNAME%! == !Your_Computer_Name_Here! set USB=F
regedit
echo REGEDIT4 >puttyrnd.reg
echo. >>puttyrnd.reg
echo [HKEY_CURRENT_USER\Software\SimonTatham\PuTTY] >>puttyrnd.reg
set foo="RandSeedFile"="%USB%:\\putty\\putty.rnd"
echo %foo% >>puttyrnd.reg
echo. >>puttyrnd.reg
echo [HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\dev1] >>puttyrnd.reg
set foo="PublicKeyFile"="%USB%:\\putty\\public.key"
echo %foo% >>puttyrnd.reg
regedit
start
regedit
copy puttynew.reg putty.reg >>nul
del puttynew.reg
regedit
8< - - - - - - - - - - - - - - - - - - >8
; puttydel.reg
REGEDIT4
[-HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]
8< - - - - - - - - - - - - - - - - - - >8
I exported my registry information into putty.reg using regedit
Updated: putty.bat to properly handle the %USB% environment variable.
Updated: Added export info. Thanks simonflk!
I wish I knew how to do this... (Score:1)
Thanks so much for this info.
Re:I wish I knew how to do this... (Score:1)
I posted this with you in mind.
I can try to put Firefox on it next if you would like.
Re:I wish I knew how to do this... (Score:2)
This is a really interesting problem over here---a lot of people have these USB key drives, and most of us are forced to use public computers. Instead of thinking about the desktop as a login account, where everyone stores their stuff on the same disk, how about a model where everything about the u
Re:I wish I knew how to do this... (Score:1)
Run FireFox from removable media [texturizer.net] (This will only work if you are running Windows 2000 or XP.)
Customize the cache [texturizer.net]
What if they already use putty? (Score:1)
Nice one.
However, when you run that you overwrite any putty settings that the logged in user already has. I'd suggest exporting the registry key first and restoring it at the end.
Another option would be to install cygwin ssh and scp to your USB device.
--simonflk
Re:What if they already use putty? (Score:1)