Skip to main content

Redirection-Audit

Summary

This document displays all possible redirection registry settings globally and for all users.

Dependencies

Columns

ColumnDescription
ClientIDThe Client ID of the target computer.
LocationIDThe location ID of the target computer.
ClientNameThe client name.
LocationNameThe location name.
ComputerIDThe target computer ID.
ComputerNameThe name of the target computer.
EffectedUsersThe scope of the affected parameter; if the parameter applies to all users, it will say "All." If the parameter applies to a specific user, it will list the affected user.
PropertyNameThe name of the property that is set in the registry.
RawvalueThe value assigned to the registry property.
DescriptionThe description of what the property affects, if known.
TargetType"Global Setting" if the property is setting a global computer setting; "Folder" if the property is targeting a folder.
RoamingState"Local" if the property does not provide redirection; "Roaming" if the property provides redirection.

SQL Representation

SELECT     c.ClientID AS ClientID
,c.LocationID AS LocationID
,cl.NAME AS ClientName
,l.NAME AS LocationName
,GRA.ComputerID AS ComputerID
,c.NAME AS ComputerName
,`User` AS EffectedUsers
,PropertyName
,SettingType AS TargetType
,Description
,`Value` AS Rawvalue
,CASE
WHEN (
SettingType NOT LIKE '%Global%'
AND `value` NOT LIKE '%Users%'
AND PropertyName NOT LIKE 'PS%'
AND PropertyName NOT LIKE '!Do%'
AND PropertyName != 'Fonts'
)
THEN 'Roaming'
ELSE 'Local'
END AS RoamingState
FROM plugin_proval_gpo_redirection_audit GRA
LEFT JOIN computers c ON (c.ComputerID = GRA.ComputerID)
LEFT JOIN clients cl ON (cl.ClientID = c.ClientID)
LEFT JOIN locations l ON (l.LocationID = c.LocationID)