|
|
 Rank: Premium user Groups: Member
, Premium Users
Joined: 7/30/2008 Posts: 3 Location: belgium
|
All is in the subject
|
|
 Rank: Administration Groups: Administration
Joined: 2/10/2005 Posts: 1,451 Location: Hamme Belgium
|
Should look something like this: Code:SELECT dbo.tblComputers.Computername, dbo.tblNetwork.IPAddress, dbo.tblNetwork.IPSubnet FROM dbo.tblComputers INNER JOIN dbo.tblNetwork ON dbo.tblComputers.Computername = dbo.tblNetwork.Computername WHERE (dbo.tblNetwork.IPAddress <> '') AND (dbo.tblNetwork.IPAddress <> '0.0.0.0')
|
|
 Rank: Premium user Groups: Member
, Premium Users
Joined: 7/30/2008 Posts: 3 Location: belgium
|
Thanks, is it not possible in "Computers in domain ......" for global view ?
|
|
 Rank: Administration Groups: Administration
Joined: 2/10/2005 Posts: 1,451 Location: Hamme Belgium
|
Not without reprogramming the web page.
|
|
 Rank: Premium user Groups: Member
, Premium Users
Joined: 7/30/2008 Posts: 3 Location: belgium
|
A good idea for version 3.3 ;-)
Thanks !
|
|
Rank: Freeware user Groups: Member
Joined: 11/5/2008 Posts: 6 Location: S
|
sure you can and all you have to do is modify this asp page called it-alldomain.asp and add in the following code similar to mine.
td><table border="0" cellpadding="1" cellspacing="0" class="sortable"> <tr> <td valign="middle" class="sorttable_nosort"> </td> <td valign="middle" class="tblcell">Computer</td> <td valign="middle" class="tblcell">IP Address </td> <td valign="middle" class="tblcell">Description</td> <td valign="middle" class="tblcell">OS</td>
The caveat to this is you have to define a new table called IPAddress os something similar and populate the tables from a view or a SQL stored procedure.
The wola you have the domain view with what you want.
|
|
|
Guest |