NSIS script to make Ekiga portable
Hello,
I am new with portable apps and I am trying to write my first NSIS script. I would like the app Ekiga to be portable:
Section "Main"
ReadEnvStr $APPDATAPATH "APPDATA"
CopyFiles /FILESONLY $EXEDIR\Data\settings\ekiga.conf $APPDATAPATH\ekiga.conf
FileOpen $0 $EXEDIR\App\Ekiga\ekiga.bat w
FileWrite $0 "set PATH=%PATH%;$EXEDIR\GTK2-Runtime\bin$\n"
FileWrite $0 "cd App\Ekiga$\n"
FileWrite $0 "ekiga.exe$\n"
FileClose $0
StrCpy $EXECSTRING "$EXEDIR\App\Ekiga\ekiga.bat"
Exec $EXECSTRING
- Read more about NSIS script to make Ekiga portable
- 2 comments
- Log in or register to post comments