var fDesc=new Array();
fDesc[0] = "Remote Desktop Service - User Profile Directory - TSAdmin
Thin clients in the RDS environment.
Greylag Galinette is a tool for administrators RDS architecture. Its primary function is to manage the RDP sessions via a simple user interface. It allows to replace "TSAdmin" or "remote offices Service Manager".
Here are some features built into Galinette:
-Management Of RDP sessions for a Broker server (Remote Desktop and Remote App)
-Management And VHD VHDX profiles for UPD sharing.
-Taking Control via the Shadow Mode Session
-Taking Control via third party software installed on the terminal (VNC ...)
-Integration With Active Directory
-Interrogation LDAP AD users
-Interrogation WMI terminal
-Management Processes to a user
-Send Messages to a server or user";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}