Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot Connect to PowerCli through VimClient

Tags:

c#

I have a project, where I'm trying to connect to PowerCLI through c#, When I'm trying to connect I'm getting error such as

Cannot create an instance of the abstract class or interface 'VMware.Vim.VimClient'

VimClient client = new VimClient();
like image 699
Navya Avatar asked Dec 31 '14 07:12

Navya


1 Answers

It's

VimClient client = new VimClientImpl()

these days.

like image 76
chrissie1 Avatar answered Sep 28 '22 10:09

chrissie1