irfan ahmed
irfan ahmed

Reputation:

how to make an installable file?

i have made a C language executable file... now i want to make it installable... i want to made my program installable which will install in specified drive location... please... any one help me... i will be thankful to you for this...

Upvotes: 0

Views: 1045

Answers (3)

jtb
jtb

Reputation: 889

There are a number of tools available to make an installation package, on Windows I've been pleased with NSIS. I also recommend HM NIS Edit, an editor for creating NSIS scripts. It has some wizards so you can very quickly make something workable, and if you need to tweak something you can then worry about editing the script. It's a very powerful system.

Upvotes: 0

John D.
John D.

Reputation: 324

There are many ways to do this. You need to be more specific, what OS? Are you installing over a network, off a CD, etc? Does your executable need anything put into the registry, or require a specific path structure to run?

In Windows, using Visual Studio you can create an install project. I've also had good experiences with the Nullsoft Scriptable Install System

Upvotes: 1

Darin Dimitrov
Darin Dimitrov

Reputation: 1038810

You didn't mention the target platform but assuming its Windows you could create an MSI package to deploy your executable. An easy to use freeware program is MAKEMSI.

Upvotes: 1

Related Questions