Header Ads

Header ADS

Display Server Name in Citrix Director 7.15 and up

There are multiple articles out there to display the Server Name in StoreFront, but not Director.

On each Citrix Director server, navigate to the /inetpub/wwwroot/Director folder and edit the LogOn.aspx file.

Version 7.15

In the style section, add the following CSS code:
.customBottom{
  position: absolute;
  bottom: 0px;
  width: 300px;
  height: 25px;
  right: 25%;
  left: 50%;
  margin-left: -150px;
  text-align: center;  
  z-index: 99;
  font-size: 12px;
  font-weight: normal;
  color: #55555
}
And in the bottom of the file, insert the following before the </body>  tag:
<div class="customBottom">ServerName</div>
<div class="customBottom">ServerName</div>

Older Versions:

In the style section, add the following CSS code:
.customBottom{
 font-size:12px;
 color:Black;
 position:absolute;
 bottom:5px;
 width:100%;
 text-align:center;
 z-index:99;
}

And in the bottom of the file, before the last </body> tag, insert the following:

<div class="customBottom">ServerName</div>

The resulting page will be similar to this:




No comments

Powered by Blogger.