PowerCLI with .NET has some dependencies on dll's that you get only when you install PowerCLI on each machine you want to run. I have a console app with command line arguments, which when deployed using the usual method doesn't work because of the unmet dependencies...these assemblies are part of the GAC.

Clickonce deployment proved to be useless..it didnt recognize my arguments although I passed them as query params.

Finally, I installed VMware PowerCLI on this remote machine. Then ran the .exe and it worked. Is there a way to avoid installing PowerCLI and be able to include all the dependencies with my exe during deployment?

link|improve this question

0% accept rate
feedback

1 Answer

Depending on where exactly you want to deploy your console application, you may be out of luck. According to this page and the most relevant forum post I could find, the PowerCLI assemblies are not redistributable. Your best bet if you want to distribute this application outside your company is to use the Web Services SDK - a huge pain since you've already developed the app.

Assuming your application is for internal use only and you just want to deploy it on its destination server, you can do the following to reference the assemblies locally:

  1. On the development machine, copy whichever PowerCLI .dlls you reference from the GAC (in %WINDIR%\assembly) to your solutions local directory.
  2. Change your references in the project to point to the local versions of the .dlls.
  3. Open the 'Properties' view for each of the references, and make sure 'Copy Local' is set to True.
  4. Compile and deploy your console application (and it's coresident .dlls) to the target machine, it should reference them in the local directory and run without external dependencies.

Hope that helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.