Skip to main content

plugin_proval_gpo_redirection_audit

Purpose

This table will store the data to be displayed in the Redirection-Audit Dataview. It is populated by the Audit - GPO Redirection Settings script.

Dependencies

EPM - Data Collection - Script - Audit - GPO Redirection Settings

Tables

plugin_proval_gpo_redirection_audit

ColumnTypeExplanation
ComputerIDINTReferences the computer the data was collected from.
UserVARCHAR(50)References the user account that the data was found on.
PropertyNameVARCHAR(100)References the specific property that is holding the data.
SettingTypeVARCHAR(25)The type of setting being shown (Global or Folder).
DescriptionTEXTThe description of what the property is setting, if known.
ValueTEXTThe value assigned to the property.

SQL

CREATE TABLE IF NOT EXISTS `@TableName@` (
`ComputerID` INT NOT NULL,
`User` VARCHAR(50) NOT NULL DEFAULT '0',
`PropertyName` VARCHAR(100) NOT NULL DEFAULT '0',
`SettingType` VARCHAR(25) NULL DEFAULT NULL,
`Description` TEXT(150) NULL,
`Value` TEXT(200) NULL,
PRIMARY KEY (`ComputerID`, `User`, `PropertyName`)
)
COLLATE='utf8_general_ci';