如何将我的管理单元添加到 MMC

发布于 2024-08-31 22:03:35 字数 313 浏览 2 评论 0 原文

我正在 Windows 7 下开发简单的 C# 应用程序作为 mmc 的跨接,如以下链接所示

http://msdn.microsoft.com/en-us/library/ms692759(VS.85).aspx

将 dll 添加到 GAC 后,我使用 installutil.exe 安装管理单元 但我在添加/删除管理单元中找不到它,

请帮忙

I'm dveloping simple C# application under Windows 7 as an span-in to mmc as in this link

http://msdn.microsoft.com/en-us/library/ms692759(VS.85).aspx

After adding the dll to GAC I used installutil.exe to install the snap-in
but I couldn't find it in add/remove snap-ins

please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

记忆里有你的影子 2024-09-07 22:03:35

确保安装程序类顶部有 [RunInstallerAttribute(true)] 声明,并确保安装程序类是公共的

Make sure you have the [RunInstallerAttribute(true)] declaration at the top of the installer class, and make sure that the installer class is public

¢蛋碎的人ぎ生 2024-09-07 22:03:35

如果您的应用程序是 32 位,则

mmc /32

则使用else

mmc

如果您的应用程序是 64 位,

IF your App is 32bit then use

mmc /32

else

mmc

if your app is 64bit

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文