Using Get-ADComputer cmdlet and some filtering options,
getting the list of online computers is quite straight forward using the one
liner command below.
Code below will get all online computers with
"MKT" on their computer name, computers that are enabled in Active
Directory and using an XP operating system.
Once a match is found PowerShell will send a ping and if the
connection is successful, the computer name will be displayed as the output of
the script.
Get-ADComputer -Filter {(Name -like "*MKT*")
-and (OperatingSystem -like
"*XP*") -and (Enabled -eq $True)} -Properties * -SearchBase
"CN=Computers,DC=GOLDEN_DOMAIN,DC=local" | Where-Object { Test-Connection
$_.Name -Count 1 -Quiet } | Select -ExpandProperty Name
The -SearchBase option provides the parameter to search for
the computers. Change this option as necessary.
To get all the properties of an specific AD computer use the
code below:
Get-ADComputer -LDAPfilter "(name=*SG048*)"
-SearchBase "CN=Computers,DC=GOLDEN_DOMAIN,DC=local" -Properties *
From the output of the properties you can select which
parameter can be used to filter and search for particular string, such as IP Address,
Certificates, HomePage, Location and other parameters that is part of the
properties output.
Cheers.. hope it helps.
==================
Free Android Apps:
Linux Android App cheat sheet:
https://play.google.com/store/apps/details?id=com.LinuxMobileKit
Click on links below to find out more:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
https://play.google.com/store/apps/details?id=com.myrosaryapp
http://quickbytesstuff.blogspot.sg/2014/09/how-to-recite-rosary.html
Divine Mercy Chaplet Guide (A Powerful prayer):
https://play.google.com/store/apps/details?id=com.dmercyapp
Educational Android App for Kids:
https://play.google.com/store/apps/details?id=com.xmultiplication
https://play.google.com/store/apps/details?id=com.letsmultiply
==================
Free Android Apps:
Linux Android App cheat sheet:
https://play.google.com/store/apps/details?id=com.LinuxMobileKit
Click on links below to find out more:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
https://play.google.com/store/apps/details?id=com.myrosaryapp
http://quickbytesstuff.blogspot.sg/2014/09/how-to-recite-rosary.html
Divine Mercy Chaplet Guide (A Powerful prayer):
https://play.google.com/store/apps/details?id=com.dmercyapp
Educational Android App for Kids:
https://play.google.com/store/apps/details?id=com.xmultiplication
https://play.google.com/store/apps/details?id=com.letsmultiply
Comments
Post a Comment