Windows XP:RegSvr32 /i:[cmdline]:“命令行”到底是什么?在这种情况下?

发布于 2024-09-06 00:16:27 字数 445 浏览 7 评论 0原文

我正在尝试在 cmd 窗口中使用 regsvr32 注册 dll。我在管理员帐户上执行此操作,但我需要为所有用户注册此 dll。结果 regsvr32 并没有这样做,它只为您当前的用户注册。好吧,当您以这种方式使用它时:“regsvr32 /i“C:\MyDll.dll””会发生什么;该条目将添加到注册表中的 Local_User 和 Classes,但不会添加到 Local_Machine。

有关 regsvr32 的 msdn 文章表示,使用 /i 选项时还需要 [cmdline]。但这篇文章未能指定我可以用什么来代替 [cmdline]。谷歌也拒绝帮助我,所以我有点陷入困境。

我意识到这并不完全是关于编程的主题,但这是程序员可能知道的事情,所以......以前有人遇到过这个吗?也许有人知道这个 [cmdline] 标签是如何工作的?还有其他方法可以将这个dll添加到所有用户吗? (除了手动编辑注册表之外。)任何见解将不胜感激!

I am trying to register a dll using regsvr32 in a cmd window. I do this on an administrator account, but I need this dll to be registered for all the users. Turns out regsvr32 does not do that, it only registers for your current user. Well, when you use it this way anyways: "regsvr32 /i "C:\MyDll.dll"" What happens; The entry is added to Local_User, and Classes in the registry, but not Local_Machine.

The msdn article on regsvr32 says it also takes a [cmdline] when using the /i option. But the article fails to specify what I can put in place of [cmdline]. Google is refusing to help me as well, so I'm a bit stuck on this.

I realize this is not exactly on the topic of programming, but this is something programmers might know, so... Has anyone run into this before? Perhaps someone knows how this [cmdline] tag works? Are there any other ways to add this dll to all users? (Apart from editing the registry manually that is.) Any insight would be greatly appreciated!

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

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

发布评论

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

评论(1

倒带 2024-09-13 00:16:27

您在 [cmdline] 中放置的内容由您正在注册的 DLL 决定。 regsvr32 只会将该文本传递给名为 DllInstall 在 DLL 中。如果您想知道要传递什么,则必须查阅该特定 DLL 的文档。

What you put in place to [cmdline] is determined by the DLL you're registering. regsvr32 will just pass that text to a function called DllInstall in the DLL. If you want to know what to pass, you must consult the documentation for this particular DLL.

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