I am requesting permission to try it.
Webster From: Michael B. Smith [mailto:[email protected]] Subject: RE: Show all DNS Servers in AD The SPN trick only works on ADI DNS servers. I checked and verified. What's the firewall status? This two-liner works great for a DA if the firewall lets you through: $computers = dsquery * forestroot -filter objectCategory=computer -attr dnsHostName -limit 0 foreach( $computer in $computers ) { get-service "DNS Server" -computername $computer.Trim() -ea 0| out-null; if( $? ) { "DNS Server on $computer" } else { "...no DNS Server on $computer" } } ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/> ~ --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe ntsysadmin
