param( [string] $sourceGroup, [string] $targetGroup )
#region Get the current PowerPack configuration. $configuration = Get-ActiveDirectoryPowerPackConfiguration #endregion
#region Connect if we're not already connected. $configuration.Connect() #endregion
#region Set the data object on the current node. Set-AdminConsoleNodeData -AssociatedObject @{'Connection'=$configuration.Connection} #endregion
# Schreiben Sie hier ihr PowerShell Skript
Get-QadGroupMember $sourceGroup | Add-QadGroupmember $targetGroup
# und schließen Sie es entweder mit dem get- cmdlet oder write-output ab
|