Jump to content

Verify If Exists Another Users In Computer With AutoIt


UnkEvil
 Share

Go to solution Solved by mikell,

Recommended Posts

  • Solution

Local $txt = ""
Local $objWMIService = ObjGet("winmgmts:\\localhost\root\CIMV2")
Local $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_UserAccount", "WQL", 0x10 + 0x20)
If IsObj($colItems) Then
    For $objItem In $colItems
         If $objItem.Disabled = False Then $txt &= $objItem.Name & @crlf
    Next
EndIf
Msgbox(0,"", $txt)

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...