51 lines
1.1 KiB
HTML
51 lines
1.1 KiB
HTML
<HTML>
|
|
<HEAD>
|
|
<META NAME="GENERATOR" Content="Microsoft Developer Studio">
|
|
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<TITLE>Document Title</TITLE>
|
|
|
|
<script language="Javascript">
|
|
function OnLoad()
|
|
{
|
|
var oRARegSetting = null;
|
|
|
|
try
|
|
{
|
|
oRARegSetting = new ActiveXObject("RACplDlg.RARegSetting");
|
|
idRAEnabled.innerText = oRARegSetting.AllowGetHelp;
|
|
idEnableUnsolicit.innerText = oRARegSetting.AllowUnSolicited;
|
|
idEnableRC.innerText = oRARegSetting.AllowFullControl;
|
|
idExpiry.innerText = oRARegSetting.MaxTicketExpiry + " seconds";
|
|
}
|
|
catch(error)
|
|
{
|
|
alert(error.description);
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
</HEAD>
|
|
|
|
<BODY onload="OnLoad()">
|
|
|
|
<strong>Remote Assistance Settings</strong>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>Enable Remote Assistance:</td><td id='idRAEnabled'> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>Allow unsolicited offers of Remote Assistance:</td><td id='idEnableUnsolicit'> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>Allow remote control of this computer:</td><td id='idEnableRC'> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>Expiration limit for Remote Assistance invitations:</td><td id='idExpiry'> </td>
|
|
</tr>
|
|
</table>
|
|
|
|
</BODY>
|
|
</HTML>
|