
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-30-2010 03:30 AM
I am tring to modify this existing report and or view, I need help finding the report located in:
Click on Active directory computer overview
Click on an OU with computers in it then I see:
- <web40FindbyDomainandOU>
<ComputerUnique>OU\OR2GLSLB1\1</ComputerUnique>
<Icon>seven10.png</Icon>
<Computername>72</Computername>
<Description />
<OS>Win 7</OS>
<SP>0</SP>
<Proc>1</Proc>
<Speed>2992</Speed>
<Memory>4096</Memory>
<IP>128.120.219.170</IP>
<Lastseen>2010-06-29T09:27:26.857-07:00</Lastseen>
I want to add the last user who logged onto this computer to the results, how would I do this and is there more documentation on the report builder that I can review?
Thanks
Shaun
Click on Active directory computer overview
Click on an OU with computers in it then I see:
- <web40FindbyDomainandOU>
<ComputerUnique>OU\OR2GLSLB1\1</ComputerUnique>
<Icon>seven10.png</Icon>
<Computername>72</Computername>
<Description />
<OS>Win 7</OS>
<SP>0</SP>
<Proc>1</Proc>
<Speed>2992</Speed>
<Memory>4096</Memory>
<IP>128.120.219.170</IP>
<Lastseen>2010-06-29T09:27:26.857-07:00</Lastseen>
I want to add the last user who logged onto this computer to the results, how would I do this and is there more documentation on the report builder that I can review?
Thanks
Shaun
Labels:
- Labels:
-
Archive
6 REPLIES 6

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2010 09:52 PM
try this:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblADComputers.OU, tblComputers.Description,
tblADusers.Displayname, tblOperatingsystem.Caption, tblComputers.LastknownIP
From tblComputers Inner Join
tblADComputers On tblComputers.Computername = tblADComputers.Computername
Inner Join
tblOperatingsystem On tblComputers.Computername =
tblOperatingsystem.Computername Left Join
tblADusers On tblADusers.Username = tblComputers.Username And
tblADusers.Userdomain = tblComputers.Userdomain

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2010 07:47 PM
Can I build a custom report that includes:
Computer OU
Computer Name
Computer Description
Computer OS
Computer IP
Name of user that last logged onto this computer
What tables would I use and what links would I use?
Thanks
Shaun
Computer OU
Computer Name
Computer Description
Computer OS
Computer IP
Name of user that last logged onto this computer
What tables would I use and what links would I use?
Thanks
Shaun

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-03-2010 12:37 AM
Checking on updates, please advise...........
Thanks
Shaun
Thanks
Shaun

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-30-2010 06:14 PM
Can I create a custom report using the fields below plus the last user who logged onto this computer to the results? I don't see the web40FindbyDomainandOU stored procedure in the report builder, other tables to use perhaps?
Shaun
Shaun

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-30-2010 11:18 AM
web40FindbyDomainandOU cannot be changed by the report builder because it is a stored procedure.
You can manually change it using sql server management studio but we don't support this.
You can manually change it using sql server management studio but we don't support this.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2010 06:11 PM
Lansweeper wrote:
web40FindbyDomainandOU cannot be changed by the report builder because it is a stored procedure.
You can manually change it using sql server management studio but we don't support this.
You will have to use sql management studio but we don't support editing the predefined stored procedures.
