+ 4
How do i create an installer and uninstaller for my C++ binary?
Most programs that I use come with a setup which writes stuffs to the registry, program data, appdata>>roaming and even in control panel. I wonder if I could do the same.
2 Réponses
+ 5
You can write your own using the win32 API, or using the .net framework and C#. If you don't want to write your own there are some free installers such as Inno Setup.
+ 3
OK I think I will try inno setup then