This commit is contained in:
Virtuworks 2015-02-25 20:39:31 -05:00
commit 2b1a67a135
16 changed files with 505 additions and 25 deletions

View file

@ -78,5 +78,6 @@ namespace WebsitePanel.Providers.RemoteDesktopServices
List<string> GetRdsCollectionLocalAdmins(string hostName);
void MoveRdsServerToTenantOU(string hostName, string organizationId);
void RemoveRdsServerFromTenantOU(string hostName, string organizationId);
void InstallCertificate(byte[] certificate, string password, List<string> hostNames);
}
}

View file

@ -21,6 +21,9 @@ namespace WebsitePanel.Providers.RemoteDesktopServices
public bool ClientPrinterRedirected { get; set; }
public bool ClientPrinterAsDefault { get; set; }
public bool RDEasyPrintDriverEnabled { get; set; }
public int MaxRedirectedMonitors { get; set; }
public int MaxRedirectedMonitors { get; set; }
public string SecurityLayer { get; set; }
public string EncryptionLevel { get; set; }
public bool AuthenticateUsingNLA { get; set; }
}
}

View file

@ -36,5 +36,6 @@ namespace WebsitePanel.Providers.RemoteDesktopServices
public string FileVirtualPath { get; set; }
public bool ShowInWebAccess { get; set; }
public string RequiredCommandLine { get; set; }
public string[] Users { get; set; }
}
}