函数参考


_Security__SidToStringSid

转换二进制 SID 为字符串

#Include <Security.au3>
_Security__SidToStringSid($pSID)

参数

$pSID 要转换的二进制 SID

返回值

成功: 返回字符串形式的 SID
失败: 返回空字符串

注意/说明

None.

相关

_Security__StringSidToSid

详情参考

在MSDN中搜索


示例/演示


#include <Security.au3>

Local $sAccount = @UserName
Local $tSID = _Security__GetAccountSid($sAccount)
Local $sStringSID = _Security__SidToStringSid($tSID)
MsgBox(4096, "SID", "User = " & $sAccount & @CRLF & "SID = " & $sStringSID)