home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <META http-equiv="Content-Type" content="text/html; charset=utf-8" >
- <!--
- ' ***
- ' *** ------------------------------------------------------------------------------
- ' *** Filename: UserAccounts.hta
- ' *** ------------------------------------------------------------------------------
- ' *** Description: User accounts Tool to display the user accounts
- ' *** ------------------------------------------------------------------------------
- ' *** Version: 1.0
- ' *** Notes:
- ' *** ------------------------------------------------------------------------------
- ' *** Copyright (C) Microsoft Corporation 2005, All Rights Reserved
- ' *** ------------------------------------------------------------------------------
- ' ***
- -->
- <title>User Accounts</title>
-
- <script id="Common" language="VBScript" src="include/Common.vbs"></script>
- <script id="libHTA" language="vbscript" src="include/libHTA.vbs"></script>
- <script id="clsLogging" language="vbscript" src="include/clsLogging.vbs"></script>
- <script id="clsUserAccounts" language="vbscript" src="include/clsUserAccounts.vbs"></script>
- <script id="UserAccounts" language="vbscript" src="include/UserAccounts.vbs"></script>
-
- <link rel="stylesheet" type="text/css" href="css/hta.css">
- <meta name=vs_defaultClientScript content="VBScript">
-
- <hta:application ID="oImagine"
- APPLICATIONNAME="UserAccounts"
- CAPTION="yes"
- CONTEXTMENU="yes"
- BORDER="dialog"
- ICON="graphics/ProfileMgr.ico"
- INNERBORDER="no"
- MAXIMIZEBUTTON="no"
- MINIMIZEBUTTON="no"
- NAVIGABLE="no"
- SCROLL="no"
- SELECTION="no"
- SHOWINTASKBAR="yes"
- SINGLEINSTANCE="yes"
- SYSMENU="yes"
- VERSION="1.00"
- WINDOWSTATE="normal" />
-
- <!-- settings and resources -->
- <div id="settings" style="display:none">
-
- <p id="appTitle">User Accounts</p>
- <p id="Currentlogon">Cannot select. Currently logged on.</p>
- <p id="switchlogon">Cannot select. Currently in use.</p>
- <p id="Admin">User is an administrator.</p>
- <p id="LockedAccount">Click to select this locked account.</p>
- <p id="DisabledAcc">User account is disabled.</p>
- <p id="NoProfile">Log on as this user to create a profile.</p>
- <p id="ManageProfile">Click to create or delete the profile for this user.</p>
- <p id="RestrictProfile">Click to restrict this user profile.</p>
- <p id="Guest">User is a Guest account.</p>
-
- <span id="resAdminOnly">NO</span>
- <span id="resWGAOnly">NO</span>
- <span id="resDomainWarning">NO</span>
- <span id="resCloseButton">NO</span>
-
- </div>
-
- <script language=vbscript>
- 'Window.resizeTo appWidth.innerText, appHeight.innerText
- </script>
-
- </head>
-
- <body id="oBody" onload="UserMain()" OnUnload = "Unload()" OnKeyDown = "HTAKeyDown()" style="background-color:white;">
- <!-- application pages -->
-
- <label id="title"></label>
-
- <div id="oDiv" style="overflow:scroll">
- <!--User Accounts-->
- <table id="tUsers" valign=top style="width:100%;height:100%;overflow:auto;background-color:white;"></table>
-
- </div>
- </body>
- </html>
-
-
-