对 LocalSystem 和 LocalService 帐户感到困惑
我是 Windows 服务编程新手。我对编写 Windows 服务时设置帐户类型的内容感到困惑。
在编写服务时如何选择或如何确定我们需要设置哪种帐户类型?
I am new to windows services programming. I have confusion about what to set the Account type while writing a windows services.
How to choose or how to determine to which account type we need to set while writing a service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们通常创建特殊的窗口(本地用于仅本地访问或域帐户用于需要跨网络进行身份验证的事物)帐户来运行自定义服务。这样我们就可以限制和锁定权限,以确保它只能访问我们需要的内容。您还可以通过共享服务器上的监控来查看哪些特定用户是罪魁祸首或资源占用者。
至于内置帐户...
来源:
微软技术网
We generally create special windows (local for local only access or domain account for things that need to authenticate accross the network) accounts to run custom services. This way we can restrict and lock down the permissions to make sure it only has access to what we need. You can also see which specific users are culprits or resource hogging with monitoring on a shared server.
As for the built in accounts...
Source(s):
Microsoft Technet