How to modify the Queue Station to display LogonID, not Alias
- 28 Mar 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
How to modify the Queue Station to display LogonID, not Alias
- Updated on 28 Mar 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
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?