Jochem 0 Posted August 23, 2011 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 Share this post Link to post Share on other sites
water 2,391 Posted August 23, 2011 _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 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
Jochem 0 Posted August 23, 2011 but even this doesn't return me anything: $UserSID = _Security__SidToStringSid( _Security__GetAccountSid($sUsername, $cI_CompName)) Share this post Link to post Share on other sites
water 2,391 Posted August 23, 2011 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 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
Jochem 0 Posted August 23, 2011 (edited) oops, sorry. It works now, thanks a lot Edited August 23, 2011 by Jochem Share this post Link to post Share on other sites