Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

  1. <HTML>
  2. <HEAD>
  3. <META NAME="GENERATOR" Content="Microsoft Developer Studio">
  4. <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
  5. <TITLE>Document Title</TITLE>
  6. <script language="Javascript">
  7. function OnLoad()
  8. {
  9. var oRARegSetting = null;
  10. try
  11. {
  12. oRARegSetting = new ActiveXObject("RACplDlg.RARegSetting");
  13. idRAEnabled.innerText = oRARegSetting.AllowGetHelp;
  14. idEnableUnsolicit.innerText = oRARegSetting.AllowUnSolicited;
  15. idEnableRC.innerText = oRARegSetting.AllowFullControl;
  16. idExpiry.innerText = oRARegSetting.MaxTicketExpiry + " seconds";
  17. }
  18. catch(error)
  19. {
  20. alert(error.description);
  21. }
  22. }
  23. </script>
  24. </HEAD>
  25. <BODY onload="OnLoad()">
  26. <strong>Remote Assistance Settings</strong>
  27. <table>
  28. <tr>
  29. <td>Enable Remote Assistance:</td><td id='idRAEnabled'> &nbsp; </td>
  30. </tr>
  31. <tr>
  32. <td>Allow unsolicited offers of Remote Assistance:</td><td id='idEnableUnsolicit'> &nbsp; </td>
  33. </tr>
  34. <tr>
  35. <td>Allow remote control of this computer:</td><td id='idEnableRC'> &nbsp; </td>
  36. </tr>
  37. <tr>
  38. <td>Expiration limit for Remote Assistance invitations:</td><td id='idExpiry'> &nbsp; </td>
  39. </tr>
  40. </table>
  41. </BODY>
  42. </HTML>