About 264,000 results
Open links in new tab
  1. Inventorying Computers with AD PowerShell | Microsoft …

    Apr 4, 2019 · Get-ADComputer The cmdlet of choice for inventorying computers through AD is Get-ADComputer . This command automatically searches for computer objects throughout a …

  2. How can I get all partial matches using Get-ADComputer filter?

    Feb 17, 2017 · How can I get all partial matches using Get-ADComputer filter? Asked 8 years, 10 months ago Modified 8 years, 10 months ago Viewed 6k times

  3. Get-ADComputer from Multiple Computers from a CSVFile

    Jul 24, 2019 · Get-ADComputer from Multiple Computers from a CSVFile Asked 6 years, 4 months ago Modified 6 years, 4 months ago Viewed 4k times

  4. powershell - Fixing Get-ADComputer : The server has returned the ...

    Dec 7, 2022 · Get-ADComputer : Unable to contact the server. This may be because this server does not exist, it is currently down, or it does not have the Active Directory Web Services running.

  5. Using Get-ADComputer Syntax | Microsoft Community Hub

    Nov 8, 2021 · Using Get-ADComputer Syntax Hello all, I am attempting to gain inventory on newly installed SSD drives in workstations. When I use "get-adcomputer" and use "-filter *" does this …

  6. AD Script to Get Users and Computer Information | Microsoft …

    Nov 9, 2023 · I'd like to get a list of the enabled users, their IP addresses, their email addresses, their operating system, their host name and maybe a few other items. I have figured most of it …

  7. Powershell Get-ADComputer filter for multiple operating systems

    Apr 17, 2018 · Get-ADComputer -Properties OperatingSystem ` -Filter {OperatingSystem -like "*Windows 7*" -or OperatingSystem -like "*Windows 8*"} See this blog post on what is allowed …

  8. Get all AD computers created after a certain date

    Sep 8, 2021 · The docs for get-adcomputer show using a scriptblock in the Backus-Naur form under -Filter. The other alternative is to generate a GeneralizedTime (except the minutes, …

  9. Get-ADComputer of a specific organizational unit in Powershell

    Using the active directory module I need to Get-ADComputer of all the computers in an specific OU and list all their properties. I tried something like this: Get-ADComputer -Filter …

  10. powershell - Fixing simple Get-ADComputer - Stack Overflow

    Sep 7, 2020 · Get-ADComputer makes a paged query to Active Directory, and then starts outputting the results one-by-one. If PowerShell takes too long between initially sending the …