你知道应该将“MaximumAllowed”参数设置为多少才能在 Windows 中的共享文件夹属性上勾选“允许的最大数量”单选按钮吗?我知道这和拥有 100 个并发用户是一样的,但我很好奇这是否可以实现。提前谢谢。汤姆
uint32 创建([输入] 字符串路径,[输入] 字符串名称,[输入] uint32 类型,[输入] uint32 最大允许值,[输入] 字符串描述,[输入] 字符串密码,[输入] Win32_SecurityDescriptor 访问);
答案1
根据 Windows SDK 6.1,在 Lmshare.h 头文件中定义的 SHARE_INFO_2 结构:
shi2_max_uses
Specifies a DWORD value that indicates the maximum number of concurrent connections
that the shared resource can accommodate. The number of connections is unlimited if
the value specified in this member is –1.