函数参考


_Security__GetAccountSid

检索帐户的安全标识符(SID)

#include <Security.au3>
_Security__GetAccountSid($sAccount [, $sSystem = ""])

参数

$sAccount 指定帐户名. 使用得域名\用户名格式必须是完全合格的字符串,
以确保函数在预期的领域查找帐户.
$sSystem [可选参数] 系统名称. 此字符串可以是一个远程计算机的名称.
如果该字符串为空, 帐户名称的翻译开始在本地系统上;
如果名称不能在本地系统上解决,本函数将尝试使用本地系统信任的域控制器解析名称.

返回值

成功: 返回二进制字节结构的 SID
失败: 返回 0

注意/说明

None.

相关

_Security__LookupAccountSid

示例/演示


#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