mscoree.dll 中的 RunDll32ShimW 有何用途?

发布于 2024-12-07 08:27:50 字数 279 浏览 0 评论 0原文

我正在查看 mscoree 中的导出,并注意到它导出了一个名为 RunDll32ShimW 的函数。 MSDN 上的文档这里是'特别有帮助。有谁知道这是做什么用的吗?

我检查了它的反汇编(它不在 SSCLI 中),看起来它需要一个程序集名称和函数,使用 mscoree!LoadLibraryShim 加载 DLL,并调用其上的函数。

I was looking at the exports in mscoree and notice that it exports a function named RunDll32ShimW. The docs on MSDN here aren't particularly helpful. Anyone know what this was for?

I checked out the disassembly of it (it's not in the SSCLI) and it looks like it takes an assembly name and function, loads the DLL with mscoree!LoadLibraryShim, and calls the function on it.

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

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

发布评论

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

评论(1

缪败 2024-12-14 08:27:51

文档中的关键句子是这:

.NET Framework 版本 4 中已弃用此函数。

至于它的作用,我会做出有根据的猜测,它调用 ShellExecuteCreateProcess 并且应该是由 rundll32.exe 调用。

The key sentence from the documentation is this:

This function has been deprecated in the .NET Framework version 4.

As to what it does, I would make an educated guess that it calls ShellExecute or CreateProcess and was meant to be invoked by rundll32.exe.

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