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.

  1. welcome
  2. installation folder
  3. confirm installation
  4. progress
  5. finished need.
  6. welcome
  7. installation folder
  8. confirm installation
  9. progress
  10. my custom action interface
  11. 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

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -