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.

138 lines
5.1 KiB

  1. <HTML>
  2. <HEAD>
  3. <META content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
  4. <META http-equiv="MSThemeCompatible" content="Yes">
  5. <LINK id=idCSS rel="stylesheet" type="text/css" href="nusrmgr.css">
  6. <LINK id=idTheme rel="stylesheet" type="text/css" href="classic.css">
  7. <STYLE id=idStyle type="text/css">
  8. LI { padding:'0 1mm'; vertical-align:top; cursor:hand; }
  9. </STYLE>
  10. <SCRIPT language="JavaScript" src="chg_common.js" defer id=idSharedChangeScript></SCRIPT>
  11. <SCRIPT language="JavaScript">
  12. function PageInit()
  13. {
  14. // See if there is an initial task to do
  15. var szInitialTask = top.window.g_bInitialTaskCompleted ? null : top.window.g_szInitialTask;
  16. if (szInitialTask)
  17. {
  18. var aTasks = idTasks.children;
  19. var cTasks = aTasks.length;
  20. for (var i = 0; i < cTasks; i++)
  21. {
  22. var oTask = aTasks[i];
  23. // If an initial task was specified and this is it,
  24. // redirect to that page.
  25. if (szInitialTask == oTask.task)
  26. {
  27. top.window.g_bInitialTaskCompleted = true;
  28. oTask.firstChild.click();
  29. break;
  30. }
  31. }
  32. // If we didn't find the initial task here, try mainpage.htm
  33. if (!top.window.g_bInitialTaskCompleted)
  34. top.window.g_Navigator.navigate('mainpage.htm');
  35. }
  36. top.window.PopulateLeftPane(null,idLearnAboutContent.innerHTML);
  37. CreateUserSelectionTable(idAccounts,2);
  38. top.window.SetRelativeTasks(idTasks.children);
  39. window.document.body.focus();
  40. }
  41. function OnUnload()
  42. {
  43. // The user references held by the table cells are
  44. // not released automatically
  45. try
  46. {
  47. var aUsers = idAccounts.firstChild.cells;
  48. var cUsers = aUsers.length;
  49. for (i = 0; i < cUsers; i++)
  50. {
  51. aUsers[i].oUser = null;
  52. }
  53. }
  54. catch (e)
  55. {
  56. }
  57. }
  58. function OnKeySelect()
  59. {
  60. top.window.OnKeySelect(0, event);
  61. }
  62. </SCRIPT>
  63. </HEAD>
  64. <BODY class=Page2 tabindex=-1 scroll=no onLoad='PageInit();' onUnload='OnUnload();'>
  65. <DIV class=FullHeight style="overflow-y:auto;">
  66. <TABLE class="CategoryTitle FullWidth" cellspacing=0 cols=2 cellpadding=0>
  67. <TR>
  68. <TD id=idTitleImgCell style="width:1; padding:'0 1em';"><IMG id=idTitleImg src="users32.ico" style="position:relative; top:0.5em;"/></TD>
  69. <TD id=idTitle style="vertical-align:middle;">User Accounts</TD>
  70. </TR>
  71. </TABLE>
  72. <DIV style="padding:2em;">
  73. <H1 id=idPageTitle>
  74. Pick a task...
  75. </H1>
  76. <UL id=idTasks class="TaskArea TaskList">
  77. <LI id=idTaskChangeAccount onkeydown="OnKeySelect();"
  78. task=ChangeAccount
  79. onclick="top.window.g_Navigator.navigate('ChangePage.htm'); return false;"
  80. title="Change settings such as the account type, name, password, or picture for one of the accounts on this computer.">
  81. <A href="" tabindex=-1>Change an account</A>
  82. </LI>
  83. <LI id=idTaskCreateAccount onkeydown="OnKeySelect();"
  84. task=CreateAccount
  85. onclick="top.window.g_Navigator.navigate('CreatePage.htm'); return false;"
  86. title="Assign a name and an account type to a new account.">
  87. <A href="" tabindex=-1>Create a new account</A>
  88. </LI>
  89. <LI id=idTaskLogonOptions onkeydown="OnKeySelect();"
  90. task=LogonOptions
  91. onclick="top.window.g_Navigator.navigate('AdvPage.htm'); return false;"
  92. title="Select options for computer users to log on or switch between users.">
  93. <A href="" tabindex=-1>Change the way users log on or off</A>
  94. </LI>
  95. </UL>
  96. <H1 id=idPageSubtitle>
  97. or pick an account to change
  98. </H1>
  99. <DIV id=idAccounts></DIV>
  100. </DIV>
  101. </DIV>
  102. <!-- Localizable content not displayed in this pane. -->
  103. <DIV style="display:none">
  104. <DIV id=idLearnAboutContent>
  105. <TABLE onclick="LaunchHelp('HelpWindowsAccounts.htm'); return false;" onkeydown="OnKeySelect(2);">
  106. <TR>
  107. <TD><IMG id=uaImg1 src="helpdoc.ico"/></TD>
  108. <TD id=uaLink1><A href="" tabIndex=-1>User accounts</A></TD>
  109. </TR>
  110. </TABLE>
  111. <TABLE onclick="LaunchHelp(g_bOsPersonal ? 'HelpUATAdmin2.htm' : 'HelpAccountTypes.htm'); return false;" onkeydown="OnKeySelect(2);">
  112. <TR>
  113. <TD><IMG id=uaImg3 src="helpdoc.ico"/></TD>
  114. <TD id=uaLink3><A href="" tabIndex=-1>User account types</A></TD>
  115. </TR>
  116. </TABLE>
  117. <TABLE onclick="LaunchHelp('HelpFUS.htm'); return false;" onkeydown="OnKeySelect(2);">
  118. <TR>
  119. <TD><IMG id=uaImg2 src="helpdoc.ico"/></TD>
  120. <TD id=uaLink2><A href="" tabIndex=-1>Switching users</A></TD>
  121. </TR>
  122. </TABLE>
  123. </DIV>
  124. </DIV>
  125. </BODY>
  126. </HTML>