How to modify the Queue Station to display LogonID, not Alias
  • 28 Mar 2024
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

How to modify the Queue Station to display LogonID, not Alias

  • Dark
    Light
  • PDF

Article summary

How to modify the Queue Station to display Logon ID, not Alias.


SignUp Vx3 and later:


Add the parameter &ShowLogonId to the end of the Queue Station URL, e.g.

http://myserver/SignUp/QueueStation.asp?branch=Branch1&ComputerGroup=Group1&ShowLogonID

SignUp Vx2 and earlier:

Note that you can make this change using Front Page to modify the call that is made when the Queue Station is running.

Open the Queue Station using IE and select File > Edit with Microsoft Front Page, then look for the following lines. The lines that need to be modified are highlighted with ###### signs. On each of the highlighted lines, change "alias" to "logon_id"

{
Status = "Go to " + GetValueFromTable(Table, "computer_type_name", "") +
": " + GetValueFromTable(Table, "pcname", "") + " - " +
GetValueFromTable(Table, "description", "");
%>
<tr class="ListQueueGoto">
<td class="QueueItemGoto" <%=LibrarianStyle()%> ></td>
####### <td class="QueueItemGoto" <%=LibrarianStyle()%> >
<td class="QueueItemGoto" <%=LibrarianStyle()%> ></td>
</tr><%
}

function ShowInQueue( Table )
{
var StartTime = new Date( GetValueFromTable(Table, "start_time", 0) );
Status = FormatEstimatedTime( StartTime );
Status = Status + " for " + GetValueFromTable(Table, "computer_type_name", "");
%>
<tr class="ListQueueWaiting">
<td class="QueueItemWaiting" <%=LibrarianStyle()%> ></td>
######## <td class="QueueItemWaiting" <%=LibrarianStyle()%> >
<td class="QueueItemWaiting" <%=LibrarianStyle()%> ></td>
</tr><%
}


Was this article helpful?


Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.