创建用户并建立权限的代码
我有一个 C# Windows 服务应用程序,它生成一个写入 C:\Program Files\Company\Product\log.txt 的日志文件。我正在使用 Visual Studio 2010 提供的安装程序,并且需要安装程序:
1. 创建名为ProductUser
的用户 2. 设置C:\Program Files\Company\Product\ 的权限以允许ProductUser 写入该目录。
I have a C# windows service application that generates a log file that writes to C:\Program Files\Company\Product\log.txt. I am using the installer provided by Visual Studio 2010 and need to have the installer:
1. Create a user named ProductUser
2. Set permission for C:\Program Files\Company\Product\ to allow ProductUser to write to the directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是最好的解决方案......但只是一个想法:运行命令怎么样
网络用户密码用户名/ADD?
如果你能做到这一点,我可以找到我在服务器上使用的旧 vbs,以向用户授予文件夹权限。
好的,我用谷歌搜索了一下,发现了这个:
这不是我的:这里是链接。
让我知道它是否适合您
Not the best solution... but only an idea: what about running the command
net user password username /ADD?
If you can do that, I can find an old vbs I used on a server to grant permissions to user on a folder.
OK, I googled a little bit and found this:
It's not mine: here is the link.
Let me know if it works for you