
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2008 04:29 PM
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2008 11:24 PM
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.
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.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2008 06:25 PM
A good idea for version 3.3 😉
Thanks !
Thanks !

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2008 06:19 PM
Not without reprogramming the web page.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2008 05:11 PM
Thanks, is it not possible in "Computers in domain ......" for global view ?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2008 04:59 PM
Should look something like this:
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')
