是否可以用C#在远程服务器上创建DSN
我正在尝试创建一个脚本,以便为我提供一组服务器名称,并根据这些名称在每台相应的计算机上创建一个系统 dsn。
我知道您可以使用 SQLConfigDataSource() 在本地计算机上创建 dsn,但它似乎没有提供在单独的计算机上创建 dsn 的任何参数。
有没有什么函数可以实现这个结果呢?
I am trying to create a script such that I am given an array of server names and from these names I would like to create a system dsn on each of those respective machines.
I know that you can use SQLConfigDataSource() to create a dsn on your local machine, but it does not seem to give any parameters for creating the dsn on a separate machine.
Are there any functions that can achieve this result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用 ps-exec 来完成这样的任务。
I would recommend using ps-exec for a task like this.
你绝对可以做到,最坏的情况你可以手动编写注册表项。为此,请下载进程监视器,将其设置为监视注册表更改然后在本地创建 DSN,您将看到需要更改哪些设置。
这里有一篇文章也讨论了该方法(从脚本的角度来看,但在 C# 中应该很容易做到)。
You can definitely do it, worst case you could just write the registry entries manually. To do that download Process Monitor, set it up to monitor registry changes and then create the DSN locally and you'll see what settings you need to change.
Here's an article discussing that approach also (from a script perspective, but should be easy to do in C#).