I am running emacs as a portable application and it works very well for me:
Create a batch file in the root of your emacs directory. For example, I created:
C:\Dropbox\PortableApps\emacs-24.3\run_emacs_portable.bat
Then edit the file and put this text in it:
set HOME=.\ bin\runemacs.exe %*
Now I just run emacs through the run_emacs_portable.bat file, and my HOME folder always points to my emacs installation folder.
% * allows you to pass arguments to a .bat file and forward them to runemacs.exe
Matt Klein Aug 30 '13 at 21:01 2013-08-30 21:01
source share