RDS Tabs changes

This commit is contained in:
vfedosevich 2015-04-06 04:01:43 -07:00
parent 13ca6e30ca
commit a02cdd87fe
10 changed files with 106 additions and 9 deletions

View file

@ -637,6 +637,14 @@ namespace WebsitePanel.Providers.RemoteDesktopServices
}
}
public void MoveSessionHostsToCollectionOU(List<RdsServer> servers, string collectionName, string organizationId)
{
foreach(var server in servers)
{
MoveSessionHostToCollectionOU(server.Name, collectionName, organizationId);
}
}
public void RemoveSessionHostServerFromCollection(string organizationId, string collectionName, RdsServer server)
{
Runspace runSpace = null;