我正在尝试连接到远程 IIS服务器并配置它 网站通过C#。 我正在使用一个名为ServerManager的对象进行此操作,这是我的代码:
ServerManager manager = new OpenRemote("10.1.2.23"); //IIS ip address
SiteCollection managerLst = manager.Sites;
在第二行之后我收到以下错误:
Retrieving the COM class factory for remote component with CLSID {2B72133B-3F5B-4602-8952- 803546CE3344} from machine 10.1.16.152 failed due to the following error: 80070005 10.1.2.23.
修改: 当在localhost上尝试相同的代码时,该过程似乎完美无缺 我认为我的权限有问题,但我不知道如何通过ServerManager对象添加用户名和密码。