Leaked source code of windows server 2003
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.

73 lines
2.7 KiB

  1. <HTML>
  2. <HEAD>
  3. <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  4. <TITLE>Offline Options</TITLE>
  5. <LINK ID=Stylesheet_Ref href="PSS.css" rel=STYLESHEET type=text/css>
  6. <LINK ID=Stylesheet_Ref_HSC href="hcp://system/css/shared.css" rel=STYLESHEET type=text/css>
  7. </HEAD>
  8. <SCRIPT Language="JScript">
  9. function GetWindowsDir()
  10. {
  11. var objFSO = new ActiveXObject("Scripting.FileSystemObject");
  12. var WindowsDir = objFSO.GetSpecialFolder(0);
  13. return WindowsDir;
  14. }
  15. function MHover(objA)
  16. {
  17. objA.style.textDecoration = "underline";
  18. }
  19. function MOut(objA)
  20. {
  21. objA.style.textDecoration = "none";
  22. }
  23. function PhonePage()
  24. {
  25. location.href="ms-its:" + GetWindowsDir() +"\\help\\supp_ed.chm::/pss_intro.htm";
  26. }
  27. </SCRIPT>
  28. <BODY topmargin="0" leftmargin="0">
  29. <table id="head1tbl" cellspacing=0 cellpadding=0><tr id="head1tr"><td id="head1td" class="padgl pad1emt">
  30. <font class="sys-font-heading3 sys-rhp-color-title" id="Head1">Offline Support Options</font>
  31. </td></tr>
  32. <tr><td id="subhead" class="sys-font-body-bold sys-color-body padgl pad1emt padb">
  33. If you cannot connect to the Internet, you can still get help from Microsoft:
  34. </td></tr>
  35. </table>
  36. <TABLE width="100%" id="T1" cellspacing=0 cellpadding=0 border=0>
  37. <tr valign=top height=10 width=20>
  38. <td valign=top colspan=2 class="padgl" id="td1"><A id="a1" href="OfflineDC.htm" class="sys-link-normal sys-font-body"><img border=0 src=garrow.gif align=top hspace=0 height=20>&nbsp;Save information about this computer to submit to Microsoft Online Assisted Support</A>
  39. </td>
  40. </tr>
  41. <TR><TD id="blankr1" colspan=2>&nbsp;</TD></TR>
  42. <tr valign=top height=10 width=20>
  43. <td valign=top colspan=2 class="padgl" id="td2"><A id="a2" href="javascript: PhonePage()" class="sys-link-normal sys-font-body"><img border=0 src=garrow.gif align=top hspace=0 height=20>&nbsp;View a list of support telephone numbers</A>
  44. </td>
  45. </tr>
  46. <TR><TD id="blankr2" colspan=2>&nbsp;</TD></TR>
  47. <tr valign=top height=10 width=20 style="display: none" id="tr3">
  48. <td valign=top colspan=2 class="padgl" id="td3"><A id="a3" href="#" class="sys-link-normal sys-font-body"><img border=0 src=garrow.gif align=top hspace=0 height=20>&nbsp;View operating system upgrade details and known issues</A>
  49. </td>
  50. </tr>
  51. </TABLE>
  52. </BODY>
  53. <script>
  54. //check for 9x or NT upgrade information
  55. var objFSO = new ActiveXObject("Scripting.FileSystemObject");
  56. var upgrade = GetWindowsDir() + "\\upgrade.txt";
  57. var ntcompat = GetWindowsDir() + "\\ntcompat.txt";
  58. if(objFSO.FileExists(upgrade))
  59. {
  60. tr3.style.display="";
  61. a3.href=upgrade;
  62. }
  63. else
  64. {
  65. if(objFSO.FileExists(ntcompat))
  66. {
  67. tr3.style.display="";
  68. a3.href=ntcompat;
  69. }
  70. }
  71. //End here
  72. </script>
  73. </HTML>