Shell在挂起模式下执行

发布于 2024-10-26 05:46:48 字数 93 浏览 0 评论 0原文

Createprocess API 可以选择使用 CREATE_SUSPENDED 标志创建进程。同样,ShellExecute API 是否有可能创建处于挂起状态的进程。

Createprocess API has a option to create a process with CREATE_SUSPENDED flag. Similarly, is there any possiblity in ShellExecute APIs to create the process in suspended state.

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

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

发布评论

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

评论(2

硬不硬你别怂 2024-11-02 05:46:48

不。ShellExecute 不一定意味着启动进程 - 它用于执行“shell 操作”,例如“打开”或“打印”,这可能会导致创建新进程。

No. ShellExecute doesn't have to imply a process is launched - it's used to perform "shell operations" such as "open" or "print", which may lead to a new process being created.

佼人 2024-11-02 05:46:48

在 Windows 7 中,生成进程时的 Shell 执行不会调用 createprocess。但在 Windows 2008 中则相反。因此,在 win7 中为 shellexecute 实现了 wine 代码,并通过 createprocess 为我的应用程序工作。

Shell execute while spawning a process is not invoking createprocess in windows 7. But that's opposite in windows 2008. Hence implemented wine code for shellexecute in win7 and made to work via createprocess for my application.

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