如何使用 C/C++ 禁用网络共享文件夹在 Windows 中?
我想用 C/C++ 编写一个程序来禁用网络共享文件夹并阻止用户创建新的共享文件夹。有谁知道方法吗?
I want to write a program with C/C++ for disabling net share folders and to prevent users from create a new share folder. Does anyone know the methods?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种方法可以使用 C++ 实现此目的。
这里是 < a href="https://stackoverflow.com/questions/1301511/how-to-create-read-only-network-share-programmatically">另一个解决类似问题的 stackoverflow 问题。
简而言之,您需要调用 GetNamedSecurityInfoW() 带有适当参数的方法来获取文件夹的安全描述符,然后您必须通过 此处解释了方法。
There is a method of doing it with C++ here.
Here is another stackoverflow question that addresses a similar issue.
In short, you need to call GetNamedSecurityInfoW() method with appropriate parameters to get the security descriptor of the folder and then you have to modify the ACL of the folder through methods explained here.