Delphi Shellexcute 和 Windows 作为选项运行
我的电脑是公司域的一部分, 我想使用 ShellApi 的 shellexcute 函数以给定的用户名和密码运行 Windows 文件(像这样运行),是否可以将它们包含在函数的参数中?
My computer is a part of company domain,
I want to use the ShellApi's shellexcute function to run windows files with a given username and password (run as like), is it possible to include them in the function's parameters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
CreateProcessAsUser
和LogonUser
函数,或者更直接地使用CreateProcessWithLogon
函数。顺便说一句,所有这些函数都在
JwaWinBase
单元中声明,该单元是 JEDI API 库You can use the
CreateProcessAsUser
andLogonUser
functions or, more directly, use theCreateProcessWithLogon
function.By the way, all these functions are declared in the
JwaWinBase
unit which is part of the JEDI API Library