以字节为单位返回一个有效的SID长度
#include <Security.au3>
_Security__GetLengthSid($pSID)
$pSID | 指向一个SID的指针 |
成功: | SID长度 |
失败: | 0 |
在MSDN中搜索
#include <Security.au3>
Local $tSID = _Security__GetAccountSid(@UserName)
If Not @error Then
; $tSID is structure filled with SID data for spesified account
; Check its length:
Local $iLength = _Security__GetLengthSid($tSID)
ConsoleWrite("The length of SID is: " & $iLength & " bytes" & @CRLF)
; ... The rest of the script here...
EndIf