Jochem Posted August 23, 2011 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
water Posted August 23, 2011 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 2024-07-28 - Version 1.6.3.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 (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
Jochem Posted August 23, 2011 Author Posted August 23, 2011 but even this doesn't return me anything: $UserSID = _Security__SidToStringSid( _Security__GetAccountSid($sUsername, $cI_CompName))
water Posted August 23, 2011 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 2024-07-28 - Version 1.6.3.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 (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
Jochem Posted August 23, 2011 Author Posted August 23, 2011 (edited) oops, sorry. It works now, thanks a lot Edited August 23, 2011 by Jochem
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now