_Security__LookupAccountSid
Retrieves the name of the account for a SID
#include <Security.au3>
_Security__LookupAccountSid($vSID [, $sSystem = ""])
Параметры
$vSID | Either a binary SID or a string SID |
$sSystem |
[необязательный] The name of a remote computer. By default the local system. |
Возвращаемое значение
Успех: | Возвращает массив следующего формата: |
$aAcct[0] - Account name | |
$aAcct[1] - Domain name | |
$aAcct[2] - SID type | |
Ошибка: | Возвращает 0 и устанавливает @error |
См. также
_Security__LookupAccountName, _Security__GetAccountSidСм. также
Искать LookupAccountSid в библиотеке MSDNПример
#include <SecurityConstants.au3>
#include <Security.au3>
Local $aArrayOfData = _Security__LookupAccountSid($SID_ALL_SERVICES)
; Print returned data if no error occured
If IsArray($aArrayOfData) Then
ConsoleWrite("Account name = " & $aArrayOfData[0] & @CRLF)
ConsoleWrite("Domain name = " & $aArrayOfData[1] & @CRLF)
ConsoleWrite("SID type = " & _Security__SidTypeStr($aArrayOfData[2]) & @CRLF)
EndIf