windows-nt/Source/XPSP1/NT/admin/pchealth/helpctr/rc/racpldlg/unittest.htm
2020-09-26 16:20:57 +08:00

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'> &nbsp; </td>
</tr>
<tr>
<td>Allow unsolicited offers of Remote Assistance:</td><td id='idEnableUnsolicit'> &nbsp; </td>
</tr>
<tr>
<td>Allow remote control of this computer:</td><td id='idEnableRC'> &nbsp; </td>
</tr>
<tr>
<td>Expiration limit for Remote Assistance invitations:</td><td id='idExpiry'> &nbsp; </td>
</tr>
</table>
</BODY>
</HTML>