
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2010 08:26 PM
Hello
I was wondering if there is a way to get a report of this tipe
i have several machines, some with dns x.x.x.1 and some x.x.x.2
I need a report which can tellme which are the ones with x.x.x.1 and the x.x.x.2
Is this possible ?
Cheers 😄
It dp
I was wondering if there is a way to get a report of this tipe
i have several machines, some with dns x.x.x.1 and some x.x.x.2
I need a report which can tellme which are the ones with x.x.x.1 and the x.x.x.2
Is this possible ?
Cheers 😄
It dp
Labels:
- Labels:
-
Report Center
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-04-2010 02:43 PM
Worked like a charm !
Thank You very Much 😄
Thank You very Much 😄

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2010 10:02 PM
Try this:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblNetwork.DNSServerSearchOrder
From tblComputers Inner Join
tblNetwork On tblComputers.Computername = tblNetwork.Computername
Where tblNetwork.DNSServerSearchOrder Like '%x.x.x.1%'
