The better solution is to transform this program to a service.
If you look for "
instsrv srvany firedaemon" with Google, you'll find 2 answers to this question.
1 - instsrv and srvany are 2 Microsoft programs included into NT resource kit (they are in the attached file

).
These 2 programs install a generic service able to launch any Windows application!
- unzip into c:\temp directory for example
- instsrv Dekiwiki c:\temp\srvany.exe (will install an empty service named Dekiwiki)
- go to
Control Panel, Admin tools, Services, and select your new
Dekiwiki service
- into start parameters enter path to your host program, WITH DOUBLE BACKSLASH in this path
f:\\directory1\\directory2\\directory3\\mindtouch.host.bat
- click on start button, and your new service will start
Unfortunatly, these start parameters are not saved into registry. For this, we need to do a manual update of registry :
- launch regedit or regedt32
- go to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\Dekiwiki
- create a new key named "
Parameters"
- inside this key we must create 3 strings entries
----- "
Application" with value = "
f:\directory1\directory2\directory3\mindtouch.host .bat"
----- "
AppParameters" with empty value
----- "
AppDirectory" with value = "
f:\directory1\directory2\directory3"
The day you want to delete this service, execute "instsrv.exe Dekiwiki remove"
2 - Another shareware program is more simple, look at this link :
Firedaemon
Finally, when you have created your service able to launch Dekiwiki, you only have to mention you want an automatic start into its properties
BTW, I have not personnaly tested all of that because I use a Linux wiki. Tell me if this correctly works