Checking registry

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a windows application distributed across an intranet using ClickOnce
deployment. The problem I have is that my project makes a reference to a COM
object on the client machine.

Is there any way I can set this up so that my application can check to see
if the COM compnent is registered on the client machine and if not, copy it
to the client machine and register it automatically ?

Thanks In Advance
 
you can do this by adding the component as a custom prerequisite to your
installer.
when your app is installed, setup will check the prerequisites and only
install them if they are not already installed.

for detailed instruxctions check MSDN under
Dev tools and languages->visual studio -> integrated evelopment environment
-> deploying applications -> adding custom prerequisites.

kind regards,
Bruno.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top