Has anyone had any success with Jaunte?-Daleus
Back when I was really interested in it, (around v0.11), I had a play making a few things portable - worked OK, may require some fiddling to get it to work exactly as required.
Generally the
The JauntePE 12-step Program works well to initially get your app portable and then you can fiddle around with it to get it how you want. Mind you, I haven't had a look at 0.30 yet, so the creation may have changed a little.
If you want to have a play, I recommend you start with one of the programs that someone else has already succeeded in making portable, eg.
Putty.
I'd like to portablize (sp?) a few things, but not having alot of luck. Are there other apps available that allow you to package 'wares into a portable form?
Commercial:
VMWare ThinApp, (which was previously Thinstall), but if you think selling your soul to join DonationCoder was expensive you ain't seen nothing yet.
Portable Application Creation Master - I don't know whether it's commercial or not, it appears on a few warez sites - do a search, it'll be easy to find. EDIT: Appears to be a collection of freeware programs with a guide telling you how to go about making a program portable. Uses AutoIt scripts to create/destroy necessary dirs and registry entries.
MojoPac, the basic version is free, the Professional version isn't but at $49.95 is about 100-200 times less expensive than ThinApp.
Another free alternative is just to use
NSIS to create a self-contained, self-extracting binary that creates all the needed dirs/reg entries at run time and cleans up afterward - however, if your app crashes rather than terminating normally you'll probably leave dirs and reg entries on the host system........but you'll have to learn it's scripting system.
You can also use WinRAR, 7Zip, or other archivers that allow you to create self-extracting binaries - just add a batch file that is called after extraction to run the app and then cleanup after it. Same caveat as NSIS above.