Jump to content

getting SIDS


 Share

Recommended Posts

I can't get it to work. The function _Security__GetAccountSid doesn't return anything.....

what am I doing wrong

global $cI_CompName, $system, $host, $sUsername
Global $aCompListtotaal = _netwerklist(0x1), $sCompList = _ArrayToString($aCompListtotaal, @LF), $aCompList
_sortarrayworkstationscad()
_SID()

Func _sortarrayworkstationscad()
    $aCompList = StringRegExp($sCompList, "(?i)(ws\-[^gvalm1234567890].*)(?:\v*|\z)", 3)
EndFunc   ;==>_sortarrayworkstationscad

Func _SID()
    For $host In $aCompList
        $cI_CompName = $host
        Ping($cI_CompName, 20)
        _ComputerGetSystem($System)
        If @error = 0 Then
            If IsArray($System) Then
                For $i = 1 To $System[0][0] Step 1
                    ConsoleWrite($cI_CompName & @CRLF)
                    $sUsername = $System[$i][49]
                    $UserSID = _Security__GetAccountSid($sUsername, $cI_CompName)
                    consolewrite($sUsername & ": " & $UserSID & @CRLF)
                Next
            EndIf
        Else
            ContinueLoop
        EndIf
    Next
EndFunc   ;==>_system
Link to comment
Share on other sites

_Security__GetAccountSid returns a binary struct. You have to convert it to a string.

Please check the example in function _Security__SidToStringSid.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Once again: Please check the example .. What is the difference between your and the example script?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...