How can i Connect my winform app to about 200 computer with Ethernet

66 views Asked by At

I have winform app(c#) with SQL database(mdf) 200 computers are connected with Ethernet How can I install my app on all computers? Is there a way to have the database of all systems in one pc an use the information that database gathered?

1

There are 1 answers

0
acinace On

Some opinions :

How can I install my app on all computers?

It is deployment issue. You can use ClickOnce or other similar technology. Check this out with system administrators for security and automation... or others sysadmin based publish solutions

Is there a way to have the database of all systems in one pc an use the information that database gathered

Depending on what your application do, it is strongly recommended to install only one database server instead of attaching one by user. You must then generate the database connection parameters (connexionString) used by all users. Generally in config file. you should also define upgrades with your update deployment strategy.