我正在写一个故障单系统。我希望能够创建一个按钮,当我单击它时,它会自动解锁Active Directory中用户的Windows帐户。
使用CFLDAP查询可以轻松完成此操作吗?
我正在运行Coldfusion 8。
最佳答案
您需要设置userAccountControl=0
<cfldap
action="modify"
attributes="userAccountControl=0"
server="yourserver"
dn="your DN information">
关于coldfusion - 我可以使用CFLDAP以编程方式解锁Active Directory帐户吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19570589/