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.

plugin_proval_Mapped_Drive_CurrentUser

Purpose

This table stores the mapped drive details of the currently logged-in users.

Dependencies

Tables

plugin_proval_Mapped_Drive_CurrentUser

ColumnTypeExplanation
ComputeridINTComputer ID of the agent
usernameVARCHARUsername for which the mapped drive is detected
PathVARCHARPath of the mapped drive
TimestampDATETIMEScript last run date on the agent

SQL

CREATE TABLE IF NOT EXISTS `labtech`.`plugin_proval_Mapped_Drive_CurrentUser` (
`computerid` INT(11) NOT NULL,
`username` VARCHAR(50) NOT NULL,
`Path` VARCHAR(5000) NOT NULL,
`TimeStamp` DATETIME NOT NULL,
CONSTRAINT `plugin_proval_Mapped_Drive_CurrentUser_ibfk_1` FOREIGN KEY (`computerid`) REFERENCES `labtech`.`computers`(`ComputerID`) ON UPDATE NO ACTION ON DELETE CASCADE
);