如何使用 COM 对象“VirtualPC.Application”从 C# 自动化 Windows Virtual PC

发布于 2024-08-19 20:23:24 字数 169 浏览 6 评论 0原文

我读到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新一帅帅 2024-08-26 20:23:24
  • 导出 COM 包装器:

    tlbimp c:\windows\system32\vpc.exe /out:\vpc.dll

  • < p>添加对生成的 dll 的引用:vpc.dll

  • 创建对象并在 C# 中使用它: 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

  • Create the object and use it from C#: var vpc_obj = new vpc.VMVirtualPCClass();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文