Re: What do I need to do to set up Eu on a flash drive
- Posted by Chris Bensler <bensler at nt.net> Dec 22, 2006
- 633 views
S Williamson wrote: > > My computer is locked down at work, can't install (won't write to registry). > > I'd like to set it up on a flash drive so I can do a bit of programming at > lunch > etc. > > What do I need to do, or can you point me to instructions, thanks. You don't need to 'install' Euphoria. The only thing it really does besides add some file associations, is setup some environment variables for you. You can do it with a batch file. ECHO OFF SETLOCAL SET EUDIR=flashdrive:\euphoria SET EUINC= SET PATH=%PATH%;%EUDIR%\bin exw.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 Just copy your euphoria folder onto your flash drive (or whatever drive, it should work from the HDD regardless of restrictions) and use the batch file to call exw. You might also be able to modify your user environment variables instead of needing the batch file. I'm not sure if Eu sets itself up in the system environment or the user environment. Chris Bensler ~ The difference between ordinary and extraordinary is that little extra ~ http://empire.iwireweb.com - Empire for Euphoria