Page 1 of 1

My script for making pidgin portable

Posted: Sun Mar 13, 2011 9:21 pm
by rokth
Since pidgin has changed their pidgin portable for windows. I've had to reinvent the batch I've been using. A newer more improved batch.
just extract the contents of pidgin-<version>-win32-bin.zip and gtk-runtime-<version> into a directory, we'll call it for the purpose of example, "portable"
so you'll have

Code: Select all

portable\pidgin-<version>-win32-bin\
portable\gtk-runtime-<version>\
set up and ready to run a script with the following lines.

Code: Select all

MOVE pidgin* pidgin
REN pidgin\pidgin.exe pidgin\pidgin-portable.exe
RMDIR /s /q pidgin\plugins\perl pidgin\plugins\locale\
DEL pidgin\plugins\perl.dll pidgin\plugins\tcl.dll
RD /s /q gtk\share\ gtk\manifest gtk\share\locale
After running it you'll be ready to rock.

Explanations
Move is used to rename directories from command line. Rename only handles files.
everything else should be easy to understand with a /?.

Final thoughts.
I don't know who thought the script at http://developer.pidgin.im/wiki/Using%2 ... rtableMode is a good idea, it looks ugly and too long. Maybe whoever did has a fetish for ampersands. :p

Re: My script for making pidgin portable

Posted: Sun Mar 13, 2011 11:50 pm
by SYSTEM
Thank you. I added a link to the Pidgin Portable entry. :)