How to get all attribute of user object and computer object via Powershell from On prem AD?

Vinod Survase 4,776 Reputation points
2021-10-16T14:12:30.153+00:00

How to get all attribute of user object and computer object via Powershell from On prem AD?

Windows for business Windows Client for IT Pros Directory services Active Directory
0 comments No comments
{count} votes

Accepted answer
  1. Gary Reynolds 9,621 Reputation points
    2021-10-17T04:11:55.983+00:00

    The powershell commands are get-aduser and get-adcomputer

    get-aduser -filter * -properties *
    get-adcomputer -filter * -properties *
    

    Gary.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.