如何使用 COM 对象“VirtualPC.Application”从 C# 自动化 Windows Virtual PC
我读到 Windows Virtual PC 带有 COM 接口 (VirtualPC.Application)。 我读过有关如何从 Powershell 使用它的博客。但是我如何在 C# 中使用它呢?具体来说,是否有一个主互操作程序集 (PIA),我可以在 C# 中使用它来在 Visual Studio 中获取智能感知?
I've read that Windows Virtual PC comes with a COM interface (VirtualPC.Application).
I've read blogs about how to use it from Powershell. But how can I use it from c#? Specifically, is there a Primary Interop Assembly (PIA) that I can use in c# to get intellisense in visual studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
导出 COM 包装器:
tlbimp c:\windows\system32\vpc.exe /out:\vpc.dll
var vpc_obj = new vpc.VMVirtualPCClass();
Export the COM wrapper with:
tlbimp c:\windows\system32\vpc.exe /out:\vpc.dll
Add a reference to the generated dll: vpc.dll
var vpc_obj = new vpc.VMVirtualPCClass();