如何使用 C/C++ 禁用网络共享文件夹在 Windows 中?

发布于 2024-10-22 03:32:29 字数 56 浏览 1 评论 0原文

我想用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅窗月明清似水 2024-10-29 03:32:29

有一种方法可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文