在 Windows 本地组策略中,我们有最小密码长度、密码历史要求等。所以我想使用 c++ 以编程方式检索最小密码长度和密码历史要求
问问题
117 次
1 回答
0
找到了解决方案
We can use window's NET_API_STATUS NetUserModalsGet(
_In_opt_ LPCWSTR servername,
_In_ DWORD level,
_Out_ LPBYTE *bufptr
); API and access the structure _USER_MODALS_INFO_0 to retrieve the minimum length and password history requirement
ie minlenght =bufptr->usrmod0_min_passwd_len;
minhistReq=bufptr->usrmod0_min_passwd_age;
于 2014-12-22T06:46:00.940 回答