For some starters, Powershell is not an easy-going feature that they can competently operate in the nick of time. Our Trustguide team has already undergone that situation and understands what you are struggling to undertake.
So let’s consider our guide now, comprehensively explaining everything relevant to the topic “Powershell move computer to OU”.
A Simple Instruction On The Powershell Move Objects To OU
It is crucial that you take our guidelines suggested below seriously to grasp the most helpful information. Let’s head on:
- Step 1: Select the mobile device that you feel familiar with operating. It can be a PC, computer, or laptop which runs on the Windows server.
- Step 2: Go to the Active Directory.
- Step 3: You must broaden the AD forest and opt for the “Computers” section.
- Step 4: Search for the file or folder you desire to relocate. Click on it by hitting the right part of your mouse.
- Step 5: Hit the “Move” button to complete the fourth process.
https://theitbros.com/wp-content/uploads/2020/04/word-image-27.png
- Step 6: Now, you must browse and locate the OU that you are going to move the file toward. The instance below is thoroughly exemplified, which can help you understand this procedure more.
https://theitbros.com/wp-content/uploads/2020/04/word-image-28.png
- Step 7: Tap on the “Enter” button to finish. Afterward, a warning will appear on the small snap-in, and if you want to close this forever, click on the “Yes” button.
https://theitbros.com/wp-content/uploads/2020/04/word-image-29.png
A Simple Instruction On The Powershell Move Computer To OU
You can run the following command to relocate objects, files, or folders, including computers, to another OU. An example contains the “United States” folder and the “Los Angeles” subfile.
Move_ADObject –Identity “CN=ny-pc-b32/23,OU=Computers,OU=LOS ANGELES,OU=UNITED STATES,DC=TRUSTGUIDE,DC=com” -TargetPath “OU=Computers,OU=LOS ANGELES,OU=UNITED STATES=TRUSTGUIDE,DC=com”
https://theitbros.com/wp-content/uploads/2020/04/word-image-30.png
Important Tips That You Should Know To Move Computers Or Objects To OU
You can check these cases out, thereby preparing essential knowledge for yourself:
1, If you set an account name in place of the distinguished name or LDAP, a warning message outlined in red will pop up like the following image:
https://theitbros.com/wp-content/uploads/2020/04/word-image-31.png
2, If you want to locate the object or file in the Active Directory driver or folder, you can try this script. Below is an instance containing the California file stored in the United States domain:
Get_ADComputer “ny-pc-b32-23” |Move-ADObject -TargetPath “OU=Computers,OU= California,OU=United States,DC=Trustguide,DC=com” -Verbose
https://theitbros.com/wp-content/uploads/2020/04/word-image-32.png
3, If you desire the make a copy of the properties appertaining to the OU in the Active Directory forest, you can operate this command:
Get_ADComputer “ny-pc-b32-23” |Move_ADObject -TargetPath “OU=Computer,DC=testforest,DC=com” -TargetServer “TargetDC.testdomain.com ” -Server “LocalDC.trustguide.com”
Or you can perform this process manually by following our steps:
- Step 1: Select the mobile device that you feel familiar with operating. It can be a PC, computer, or laptop which runs on the Windows server.
- Step 2: Go to the Active Directory and the ADUC console.
- Step 3: Now, navigate your mouse and click over to the “Attribute Editor” section.
- Step 4: Tap on the “Distinguishedname” twice and mimic the code link into your dashboard.
https://theitbros.com/wp-content/uploads/2020/04/word-image-33.png
4, If you desire to move objects or files from the “Computers” section to other OUs with massive bulk, you can try this command:
$ADComps= Get-ADComputer -Filter * -SearchBase “Cn=computers,DC=test,dc=com”| Select-Object -Property Name |sort -Property name | Out-GridView -PassThru –title “Select Computers to Move”| Select -ExpandProperty Name
$ADOUs= Get-ActiveDirectoryOrganizationalUnit -Filter * | Select_Object -Property DistinguishedName | Out-GridView -PassThru –title “Select Targeted OU”| Select-Object -Expand.Properties DistinguishedName
Foreach($ou in $ADOUs){
Foreach($comp in $ADComps){
get_ADcomputer $comp |Move-ADObjects -TargetPath “$ou” -Verbose }
}
https://theitbros.com/wp-content/uploads/2020/04/word-image-34-768×306.png
5, If you desire to move an individual object or account from the “Computers” section to other OUs, you can try this one-liner:
Get_ADUser m.decker1| Move-ADObject -target path “OU=Accounts,OU=Los Angeles,OU=United States,DC=trustguide,DC=com” –whatif
https://theitbros.com/wp-content/uploads/2020/04/word-image-36.png
The Bottom Line
Our Trustguide team wishes that you can successfully undertake the Powershell move computer to OU process without a hitch. Good luck!
Leave a Reply