检索帐户的安全标识符(SID)
#include <Security.au3>
_Security__GetAccountSid($sAccount [, $sSystem = ""])
$sAccount | 指定帐户名. 使用得域名\用户名格式必须是完全合格的字符串, 以确保函数在预期的领域查找帐户. |
$sSystem | [可选参数] 系统名称. 此字符串可以是一个远程计算机的名称. 如果该字符串为空, 帐户名称的翻译开始在本地系统上; 如果名称不能在本地系统上解决,本函数将尝试使用本地系统信任的域控制器解析名称. |
成功: | 返回二进制字节结构的 SID |
失败: | 返回 0 |
#include <Security.au3>
Local $tSID = _Security__GetAccountSid(@UserName)
If Not @error Then
; $tSID is structure filled with SID data for spesified account
; ... The rest of the script here...
EndIf