作为 lsa 执行程序
我正在 Windows 中开发一个程序(类似于客户端和服务器),我想将服务器作为 LSA(本地系统帐户)运行。但我不知道如何操作?
注意:我正在用 VB6 编写程序,但我熟悉 C#、C++ 和 C。因此,如果您的代码使用这些语言中的任何一种,我将不胜感激将您的代码放在这里。
I'm developing a program in windows (something like client & server) and I want to run server as LSA(local system account).but I don't know how?
Note: I'm writing my program in VB6 but I'm familiar with C#,C++ and C. So if your code is in any of these languages, I would be appreciate putting your code here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想到了几个选项。 本文 涵盖了其中的一些。
您可以做的其他事情是将您的应用程序添加到系统启动进程(通过 MSCONFIG.exe 应用程序 - “开始 -> 运行 -> msconfig -> 启动”选项卡或类似的操作)。
另一种方法可能是设置您的应用程序,以便将其作为服务安装。您可以将任何服务配置为在计算机上的任意帐户下运行,或者如果您位于域中,则可以通过域中的帐户来运行。
另一个看起来可能对您有用的资源是这篇文章,其中介绍了更具体地说,如何从 VB6 应用程序创建服务。
There are a few options that come to mind. This article covers some of them.
Other things you could do is to add your app to the system startup process (via the MSCONFIG.exe app - "Start -> Run -> msconfig -> Startup" tab, or something like that).
Another way may be to setup your app so it can be installed as a service. You can configure any service to run under any arbitrary account on the machine, or via an account on your domain, if you're on a domain.
Another resource that looks like it might work for you is this article, which describes in more specifics, how to create a service from a VB6 app.