Is there a quick and easy way to create a launcher for an application? The application itself does not require an install and writes nothing to the registry. The issue I have is that the application has more than one .exe and I don't want them all to show up in the PAM.
you only need a launcher for the exe without doing anything with files/registry keys.
I once did one so I can launch 7.zip from the root of my drive:
If you know a little about compiling and/or nsis you can easily adapt it.
If you dont I'll elaborate more.
The basics are:
Download the nsis compiler from http://usb.smithtech.us/apps/index.php
adapt the paths to the exe and the icon
compile it.
"What about Love?" - "Overrated. Biochemically no different than eating large quantities of chocolate." - Al Pacino in The Devils Advocate
I've never used NSIS before, so if you could elaborate some, I would definatly appreciate it.
the easiest way is to do it without the icon:
open an empty txt file, copy it there and change name and path.
save it as appname.nsi.
download nsis portable and run it.
open the appname.nsi with nsis portable.
It wil automatically compile it and put the exe in to same folder the nsi script file is in.
Thats it.
Hope you get it done
"What about Love?" - "Overrated. Biochemically no different than eating large quantities of chocolate." - Al Pacino in The Devils Advocate
I got it to work for me. Now to play with NSIS more to learn about what it can do.
If it is ever to run on Vista, you should add
I wouldn't be surprised to learn that there are other little tweaks that can make it work better.
Once you get a barebones nsi launcher, it can be fun to add stuff to it. See the article I did for StartPortableApps.nsi, with emendations from Ryan. You could use some of that as a template for including information or an icon with the launcher. Or just comment out or delete all the extraneous stuff you aren't interested in.
Once you get NSIS installed (and plugins added, if needed) it compiles a script quickly and with informative error messages.
MC
the article you posted. It can only help.