+ 1
What language should I use to create an installable program on the Windows OS
I want to create a simple installable program for the Microsoft Windows OS. What coding language is the best/easiest for a first attemt at this?
3 Answers
+ 1
are you trying to create a program to install or asking what to use to create the installer for the program?
.NET and C++ for writing the program.
NSIS is a really awesome tool for building installation wizards. just used it to package a desktop version of our webapp at work. good documentation and easy to use text format for writing the installer. It then packages everything into a handy exe or msi file.
+ 1
For small programs just zip everything.
0
Well a both actually. Thank you! Will take a look at it!