Pages

Tuesday, April 16, 2024

Thay đổi Đối tượng User thành Đối tượng inetOrgPerson (hoặc Ngược lại) trong Active Directory

Example 1
The following example demonstrates how to convert the user object, SaraDavis, to an inetOrgPerson object:
Set-ADUser SaraDavis -Add @{objectClass='inetOrgPerson'}

Example 2
The following example demonstrates how to convert the inetOrgPerson object, SaraDavis, to a user object.
Set-ADUser SaraDavis -Remove @{objectClass='inetOrgPerson'}