Query Exchange

 View Only
  • 1.  Get Actively Logged On Domain Users

    Posted May 30, 2019 02:54 PM

    Description: Users that are currently logged on.

    What The Data Shows: See who is performing specific actions on a workstation.

    SQL: 

    Select
    User,
    Logon_Domain,
    Session_ID,
    Logon_Time,
    Logon_Server,
    Logon_Script
    FROM Logon_Sessions
    WHERE Logon_Type like "Interactive" AND Logon_Server <> "";

     


    #HelpDeskOperations
    #Community
    #Windows


  • 2.  RE: Get Actively Logged On Domain Users

    Posted Jun 05, 2019 11:18 AM

    Hey   appreciate your contribution!  We'll vet this submission and if it runs as expected we'll change this status of your query from Under Review to CB Approved.

    Thanks again!

    Ed Sullivan



  • 3.  RE: Get Actively Logged On Domain Users

    Posted Jun 06, 2019 09:05 PM

    Awesome! Thank you for submitting.