home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 May / PCpro_2006_05.ISO / files / free_security / msshared / Shared_Computer_Toolkit_ENU.msi / FileRoot004 < prev    next >
Encoding:
Text File  |  2005-09-02  |  3.0 KB  |  88 lines

  1. <html>
  2. <head>
  3. <META http-equiv="Content-Type" content="text/html; charset=utf-8" >
  4.     <!--
  5.     ' ***
  6.     ' *** ------------------------------------------------------------------------------
  7.     ' *** Filename:        UserAccounts.hta
  8.     ' *** ------------------------------------------------------------------------------
  9.     ' *** Description:    User accounts Tool to display the user accounts
  10.     ' *** ------------------------------------------------------------------------------
  11.     ' *** Version:        1.0
  12.     ' *** Notes:        
  13.     ' *** ------------------------------------------------------------------------------
  14.     ' *** Copyright (C) Microsoft Corporation 2005, All Rights Reserved
  15.     ' *** ------------------------------------------------------------------------------
  16.     ' ***
  17.     -->
  18.     <title>User Accounts</title>
  19.  
  20.     <script id="Common" language="VBScript" src="include/Common.vbs"></script>
  21.     <script id="libHTA" language="vbscript" src="include/libHTA.vbs"></script>
  22.     <script id="clsLogging" language="vbscript" src="include/clsLogging.vbs"></script>
  23.     <script id="clsUserAccounts" language="vbscript" src="include/clsUserAccounts.vbs"></script>
  24.     <script id="UserAccounts" language="vbscript" src="include/UserAccounts.vbs"></script>
  25.  
  26.     <link rel="stylesheet" type="text/css" href="css/hta.css">
  27.     <meta name=vs_defaultClientScript content="VBScript">
  28.  
  29.     <hta:application ID="oImagine"
  30.         APPLICATIONNAME="UserAccounts"
  31.         CAPTION="yes"
  32.         CONTEXTMENU="yes"
  33.         BORDER="dialog"
  34.         ICON="graphics/ProfileMgr.ico"
  35.         INNERBORDER="no"
  36.         MAXIMIZEBUTTON="no"
  37.         MINIMIZEBUTTON="no"
  38.         NAVIGABLE="no"
  39.         SCROLL="no"
  40.         SELECTION="no"
  41.         SHOWINTASKBAR="yes"
  42.         SINGLEINSTANCE="yes"
  43.         SYSMENU="yes"
  44.         VERSION="1.00"
  45.         WINDOWSTATE="normal" />
  46.  
  47.     <!-- settings and resources -->
  48.     <div id="settings" style="display:none">
  49.         
  50.         <p id="appTitle">User Accounts</p>
  51.         <p id="Currentlogon">Cannot select. Currently logged on.</p>
  52.         <p id="switchlogon">Cannot select. Currently in use.</p>
  53.         <p id="Admin">User is an administrator.</p>
  54.         <p id="LockedAccount">Click to select this locked account.</p>
  55.         <p id="DisabledAcc">User account is disabled.</p>
  56.         <p id="NoProfile">Log on as this user to create a profile.</p>
  57.         <p id="ManageProfile">Click to create or delete the profile for this user.</p>
  58.         <p id="RestrictProfile">Click to restrict this user profile.</p>
  59.         <p id="Guest">User is a Guest account.</p>
  60.  
  61.         <span id="resAdminOnly">NO</span>
  62.         <span id="resWGAOnly">NO</span>
  63.         <span id="resDomainWarning">NO</span>
  64.         <span id="resCloseButton">NO</span>
  65.         
  66.     </div>
  67.  
  68. <script language=vbscript>
  69.     'Window.resizeTo appWidth.innerText, appHeight.innerText
  70. </script>
  71.  
  72. </head>
  73.  
  74. <body id="oBody" onload="UserMain()" OnUnload = "Unload()" OnKeyDown = "HTAKeyDown()" style="background-color:white;">
  75.     <!-- application pages -->     
  76.     
  77.     <label id="title"></label>
  78.     
  79.     <div id="oDiv" style="overflow:scroll">
  80.         <!--User Accounts-->
  81.         <table id="tUsers" valign=top style="width:100%;height:100%;overflow:auto;background-color:white;"></table>
  82.             
  83.     </div>
  84. </body>
  85. </html>
  86.  
  87.  
  88.