我正在尝试最后一次我的 Windows 密码写入不正确。为此,我使用 UserPrincipalSearcher:
PrincipalContext pc = new PrincipalContext(ContextType.Machine);
var v = UserPrincipal.FindByBadPasswordAttempt(pc, DateTime.Now, MatchType.LessThan);
但是我在第二行代码中得到了 NotSupported 异常。问题是什么?