C # Installer - Windows logs

0

I am generating a windows form application installer in visual studio, but what I am looking for is that when installing the application on the computer some windows registers (HKEY_CLASSES_ROOT) on the computer, someone knows if this is possible from the installer.

    
asked by Eduardo 09.01.2018 в 18:10
source

1 answer

1

I personally do this by adding a "setup project" project that is in the "other projects / Visual studio installer" category to the solution, if you do not have to add it.

With a project of this type you can create your own custom installer that verifies software prerequisites, customizable screens, icons in start menu, desktop etc, registry settings, etc.

    
answered by 09.01.2018 / 20:22
source