Skip to main content
Unlisted page
This page is unlisted. Search engines will not index it, and only users having a direct link can access it.

Mapped Drive Audit - Current User

Summary

This document gathers details of the mapped network drives for the current user logged into the machine.

Dependencies

Columns

ColumnDescription
ClientClient name of the agent.
LocationLocation name of the agent.
ComputerComputer name of the agent.
Operating SystemOperating system information of the agent
LastContactLast contact of the agent
UsernameLogged-in username for which the mapped drive is detected
PathPath of the mapped drive
TimeStampTimestamp of the last script run

SQL Representation

SELECT 
c.clientid,
c.locationid,
c.computerid,
cl.name as `Client`,
l.name as `Location`,
c.name as `Computer`,
c.os as `Operating System`,
c.LastContact,
ppc.UserName,
ppc.Path,
ppc.Timestamp
FROM
computers c
JOIN locations l ON l.LocationID = c.LocationID
JOIN clients cl ON cl.ClientID = c.ClientID
JOIN plugin_proval_Mapped_Drive_CurrentUser ppc ON ppc.computerid = c.ComputerID