Copy AD group

$Source_Group = "CN=Group,OU=Unity,DC=example,DC=com" 
$Destination_Group = "CN=Group,OU=Unity,DC=example,DC=com" 
 
$Target = Get-ADGroupMember -Identity $Source_Group 
foreach ($Person in $Target) { 
    Add-ADGroupMember -Identity $Destination_Group -Members $Person.distinguishedname 
}

Configure Putty.exe to save serial console output to a file

  Impact of procedure :  Performing the following procedure should not have a negative impact on your system. Open putty by double click...

Mais vistos