
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2010 03:40 AM
I'm trying to setup what should be a fairly simple custom report, but don't really know where to start.
I have a scanned registry key:
HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\fDenyTSConnections
I want my custom report to simply show all system that have this value as "1".
How would I build the custom report? What should ther script look like?
I have a scanned registry key:
HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\fDenyTSConnections
I want my custom report to simply show all system that have this value as "1".
How would I build the custom report? What should ther script look like?
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2010 08:10 AM
First: add the registry key to be scanned.
Report looks like this:
Report looks like this:
Select tblComputers.Computername, tblRegistry.Valuename, tblRegistry.Value
From tblComputers Inner Join tblRegistry On tblComputers.Computername = tblRegistry.Computername
Where tblRegistry.Valuename = 'fDenyTSConnections'
