Функция _Security__GetLengthSid

 ↑  ←  Описание функции


_Security__GetLengthSid

Returns the length, in bytes, of a valid SID

#include <Security.au3>
_Security__GetLengthSid($pSID)

Параметры

$pSID Pointer to a SID

Возвращаемое значение

Успех:Length of SID
Ошибка:Возвращает 0

См. также

_Security__IsValidSid

См. также

Искать GetLengthSid в библиотеке 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