rajeshontheweb Posted May 3, 2009 Posted May 3, 2009 i got this when i searched for the title but the solution didnt make me happy enough. this script give more precise results.VBScript Code: Set objWMISvc = GetObject( "winmgmts:\\.\root\cimv2" ) Set colItems = objWMISvc.ExecQuery( "Select * from Win32_ComputerSystem", , 48 ) For Each objItem in colItems strComputerDomain = objItem.Domain If objItem.PartOfDomain Then WScript.Echo "Computer Domain: " & strComputerDomain Else WScript.Echo "Workgroup: " & strComputerDomain End If Nextthanks to http://www.robvanderwoude.com/vbstech_netw...ames_domain.php as it is just wmi scripting it should be pretty easy to get it in au3.if i did prepare a UDF for this, i will post it here.. Started late is much better than having never started it!!!!Failure is another step towards success. I've been messing around with: Adding Entry to 'Hosts'File Information Lister (Logger)Yet Another AutoIT Error Handler Yet Another AutoIT Error Handler & Debugger Control your App's TaskBar Button YCurrency Ticker (Latest Release : 16 Apr 2009)_WinInetInternetCheckConnection UDF Symantec Definitions Lister UDF _GetLocalIPAddresses UDF UDF to get Special Folder Information WMI_NetworkAdapterConfiguration2Array WMI_CDRomDriveCapabilities _ScriptExists - Check if your au3 script is running!! Uninstaller UDF Get Version for your application (at script level or compiled stage) Uninstaller Pro - faster alternative to windows application removal applet
aVen9er Posted October 28, 2020 Posted October 28, 2020 I was looking for this code. I translated it into AutoIt for posterity: Dim $objWMISvc = ObjGet("winmgmts:\\.\root\cimv2") Dim $colItems = $objWMISvc.ExecQuery("Select * from Win32_ComputerSystem", "WQL", 48) If IsObj($colItems) Then For $objItem In $colItems If $objItem.PartOfDomain Then Msgbox(0, @ScriptName, "Computer Domain: " & $objItem.Domain) Else Msgbox(0, @ScriptName, "Workgroup: " & $objItem.Domain) EndIf Next EndIf
Davegbuf Posted May 26, 2022 Posted May 26, 2022 I modified the script from aVen9er by simplifying a little the main section, building it into a function, and gave it a couple more return options: ; ================================================================================ ; --- Examples $sDomainType=_detectDomainWorkgroup() ; --- Return string = "Domain" or "Workgroup" Msgbox(0, "Detect Domain Result 1", $sDomainType) $sDomainType=_detectDomainWorkgroup(1) ; --- Return string = "ComputerDomain:{name of the domain}" or "Workgroup:{name of Workgroup}" Msgbox(0, "Detect Domain Result 2", $sDomainType) $sDomainType=_detectDomainWorkgroup(2) ; --- Return string = "{Domain name}" or "{Workgroup name}" Msgbox(0, "Detect Domain Result 3", $sDomainType) Exit ; ================================================================================ ; ------------- User Defined Functions ------------------------------------------- ; ================================================================================ Func _detectDomainWorkgroup($iRetrunStr=0) ; --- Detects if current computer is domain-joined or on a workgroup ; --- Return depends on $iReturnStr: ; $iRetrunStr=0 (default) a string = "Domain" or "Workgroup" ; $iRetrunStr=1 A string = "ComputerDomain:{name of the domain}" or "Workgroup:{name of Workgroup}" ; $iRetrunStr=2 A string = "{Domain name}" or "{Workgroup name}" ; ----------------------------------------------------------------------------------------------------- Dim $objWMISvc = ObjGet("winmgmts:\\.\root\cimv2") Dim $colItems = $objWMISvc.ExecQuery("Select * from Win32_ComputerSystem", "WQL", 48) Dim $sDomainType="Workgroup" If IsObj($colItems) Then For $objItem In $colItems If $objItem.PartOfDomain Then $sDomainType="Computer Domain" Next EndIf ; ---- Return Options Select Case $iRetrunStr=1 Return $sDomainType & ":" & $objItem.Domain ; --- Return {Domain or Workgroup tag}:{name of domain or workgroup} Case $iRetrunStr=2 Return $objItem.Domain ; --- Name of the domain or workgroup alone without an identifying tag label Case Else Return $sDomainType ; --- (Default choice) Return string: "Domain" or "Workgroup" EndSelect EndFunc ; ================================================================================
Confuzzled Posted May 28, 2022 Posted May 28, 2022 Looks like internal @LogonDomain and@LogonServer system macros don't do the job for you. You need @LogonWorkGroup too? Wonder if the functionality behind the extraction of those system macros is faulty, or looking at different things?
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