Moving a Computer Within the Same Domain
This topic explains how to use the Active Directory module for Windows PowerShell to move a computer within the same domain.
Example
The following example demonstrates how to move the computer Fabrikam1 to the organizational unit (OU) ManagedComputers in the Fabrikam.com domain:
Get-ADComputer Fabrikam1 | Move-ADObject -TargetPath 'OU=ManagedComputers,DC=Fabrikam,DC=com'
Get-ADComputer Fabrikam1 | Move-ADObject -TargetPath 'OU=ManagedComputers,DC=Fabrikam,DC=com'
Additional information
In addition to the standard Lightweight Directory Access Protocol (LDAP) attributes, you can retrieve the following extended properties of the Get-ADComputer cmdlet by using the -Properties parameter:
- IPv4Address
- IPv6Address
- EmailAddress
- ServiceAccount
No comments:
Post a Comment