Archive: Visual Custom Installer


Visual Custom Installer
hey, i would like to use nsis. but i have visual express, i don't know how to use the files such as sql and the exe itself to run it. so what do i like take it in a normal application that requires a sql database


I don't really understand your question.

So you are using Visual Studio (Express) to build your application. Is that correct?

If so, what does prevent you from distributing the binary with NSIS?

Generally there are two different steps to do:
1. Compile your application with MSVC, which will give you the binary (e.g. EXE and DLL) files
2. Compile your NSIS script with MakeNSIS in order to build your installer and package the binaries built before.

Of course these two steps can be combined/automated with a Batch script...