c# - Add Custom action to VS 2008 Setup project -
im using vs 2008 , have created application , setup file using c#. setup file contain standard setup interfaces provide visual studio 2008. need check windows registry , folder path , copy files application folder while installation. need add custom code while installation. standard interfaces.
- welcome
- installation folder
- confirm installation
- progress
- finished need.
- welcome
- installation folder
- confirm installation
- progress
- my custom action interface
- finished
my custom action performs below action.
ex: registry path.
object test= registry.getvalue("hkey_local_machine\\software\\kofax image products\\ascent capture\\3.0" ,"exepath",null) if(test!=null) { ///copy files application folder test path. }
how can that?
you can always create own custom action (based on existing panels ui)
take @ scott's post entry on subject
you can find there how create setup project , add custom action it.
i hope helps.
Comments
Post a Comment