Read About Powershell Active Directory In Detail.

Asked By 0 points N/A Posted on -
qa-featured

Hello,

I want to know about the powershell active directory in detail. How can I change the Active Directory user description field? I am using Windows Server 2003 on my laptop.

Does someone know about the active directory?

Thank you.

SHARE
Answered By 0 points N/A #299303

Read About Powershell Active Directory In Detail.

qa-featured

Suppose there is a user Ronnie and the description for the user account is as “Ronnie is from the Marketing Team.”

Let us suppose that you wish to change that description to “Marketing Department User.”

For that purpose, we can use a cmdlet called Set-ADUser to execute this action.

It is one of the cmdlets which can modify the largest number of attributes linked to a user account in Active Directory(AD).

Hence, this command will change the description as given below:

Set-ADUser Ronnie -Description “Marketing Department User.”

Related Questions