Unable to connect to PowerCli via VimClient

I have a project where I am trying to connect to PowerCLI through C #. When I try to connect, I get an error like

Unable to instantiate abstract class or interface 'VMware.Vim.VimClient'

VimClient client = new VimClient();
+4
source share
1 answer

it

VimClient client = new VimClientImpl()

these days.

+5
source

Source: https://habr.com/ru/post/1569517/


All Articles