Hi All
Is there any way I can generate my domain systems
(Servers/Workstations) Inventory remotely using any Script or
Application software...I need just bacsic things like
HOSTNAME-IPADDRESS-OPERATING SYSTEM with SPs?
Sorry If I have posted this in wrong group...
Thanks for helping
irsh...
--
irsh19
------------------------------------------------------------------------
irsh19's Profile: http://forums.techarena.in/members/123384.htm
View this thread: http://forums.techarena.in/server-networking/1268552.htm
You can use Active Directory to get most of the information you are
looking for. If you are on a PC that is a member of the domain, and
the PC has the Windows Server Administration Tools Pack installed, you
can use the DSQUERY command with filters and output it to a .CSV file
like so:
dsquery * domainroot -filter "(&(objectCategory=Computer)
(objectClass=User))" -attr distinguishedName location operatingSystem
operatingSystemVersion operatingSystemServicePack -limit 0 >
filename.csv
I know of a round about way to get the IP addresses, but it takes some
effort and someone else might know a quicker way.