Continuing our occasional look at using PowerShell to administer AD we need to move objects. We can keep this nice and generic function move-object {
param (
[string] $object ,
[string] $source ,
[string] $target
)
$domain = ( [adsi… Read the full text.