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

  1. <html>
  2. <head>
  3. <META http-equiv="Content-Type" content="text/html; charset=utf-8" >
  4.     <!--
  5.     ' ***
  6.     ' *** ------------------------------------------------------------------------------
  7.     ' *** Filename:        ProfileMgr.hta
  8.     ' *** ------------------------------------------------------------------------------
  9.     ' *** Description:    User Profile Manager tool to create and delete profiles
  10.     ' *** ------------------------------------------------------------------------------
  11.     ' *** Version:        1.0
  12.     ' *** Notes:        
  13.     ' *** ------------------------------------------------------------------------------
  14.     ' *** Copyright (C) Microsoft Corporation 2005, All Rights Reserved
  15.     ' *** ------------------------------------------------------------------------------
  16.     ' ***
  17.     -->
  18.     <title> </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="clsProfileMgr" language="vbscript" src="include/clsProfileMgr.vbs"></script>
  24.     <script id="ProfileMgr" language="vbscript" src="include/ProfileMgr.vbs"></script>
  25.  
  26.     <link rel="stylesheet" type="text/css" href="css/hta.css">
  27.  
  28.     <hta:application ID="oImagine"
  29.         APPLICATIONNAME="ProfileMgr"
  30.         CAPTION="yes"
  31.         CONTEXTMENU="yes"
  32.         BORDER="dialog"
  33.         ICON="graphics/ProfileMgr.ico"
  34.         INNERBORDER="no"
  35.         MAXIMIZEBUTTON="no"
  36.         MINIMIZEBUTTON="yes"
  37.         NAVIGABLE="no"
  38.         SCROLL="no"
  39.         SELECTION="no"
  40.         SHOWINTASKBAR="yes"
  41.         SINGLEINSTANCE="yes"
  42.         SYSMENU="yes"
  43.         VERSION="1.00"
  44.         WINDOWSTATE="normal" />
  45.  
  46.     <!-- settings and resources -->
  47.     <div id="settings" style="display:none">
  48.         <p id="CreateSuccess">Profile has been created successfully.</p>
  49.         <p id="CreateFailed">The password is invalid!</p>
  50.         <p id="DeleteSuccess">Profile has been deleted successfully.</p>
  51.         <p id="DeleteFailed">Cannot delete the profile</p>
  52.         <p id="NoUserAcc"> does not exist.</p>
  53.         <p id="UserAcc">Please select an account</p>
  54.         <p id="PasswordText"></p>
  55.         <p id="appTitle">Profile Manager</p>
  56.         <p id="DeleteWarningTitle">Delete the profile for</p>
  57.         <p id="DeleteWarningText">Are you sure you want to delete this profile?</p>
  58.  
  59.         <span id="resAdminOnly">YES</span>
  60.         <span id="resWGAOnly">YES</span>
  61.         <span id="resDomainWarning">YES</span>
  62.         <span id="resCloseButton">YES</span>
  63.         <span id="Defaultdrive">C:</span>
  64.     </div>
  65. </head>
  66.  
  67. <body id="oBody" onload="Main()" OnUnload = "Unload()" Onkeydown = "Onkeydown()" STYLE="cursor:wait;" OnBeforeUnload="OnBeforeUnload()">
  68.     <TABLE ID=oHeader style="margin-bottom:.3em;height:2em"><TR>
  69.         <COL width="2%">
  70.         <COL width="94%">
  71.         <COL width="4%">
  72.         <TD><IMG id="logo" height="30px" src="graphics/sswlogo.gif"></TD>
  73.         <TD><b><p id="title">Microsoft Shared Computer Toolkit for Windows XP</P><b></TD>
  74.         <td valign=top><button id=btnHelp ATOMICSELECTION=True Title="Help (F1)" onclick="ShowHelp" onmouseover="Highlight btnHelp, True" onmouseout="Highlight btnHelp, False"><img align="absmiddle" src="graphics/help1.gif" alt="Help (F1)"> </button></td>
  75.     </TR></TABLE>
  76.     
  77.     <DIV id=oDiv Class=div3D style="margin-bottom:.3em;width:50em">
  78.         <table ID=Table4 style="table-layout:fixed;">
  79.             <COL width="18%">    
  80.             <COL width="22%">
  81.             <COL width="2%">
  82.             <COL width="28%">
  83.             <COL width="2%">
  84.             <COL width="28%">
  85.             <tr>
  86.                 <td><b><ID id="_locUserAccount">Account:</ID></b></td>
  87.                 <td><input id=txtAccount TABINDEX=-1 type=text style="width:100%"></td>
  88.                 <td></td>
  89.                 <td><button id=btnSelectAccounts class=normal style="width:100%" onclick="SelectAccount()"><ID id="_locSelectAccount">Select an Account...</ID></button></td>
  90.                 <td></td>
  91.                 <td><button id=btnManageAccounts class=normal style="width:100%" onclick="UserAccounts_Click()"><ID id="_locManageUsers">Manage Accounts...</ID></button></td>
  92.             </tr>
  93.             <tr>
  94.                 <td colspan=6><hr></td>
  95.             </tr>
  96.             <tr>
  97.                 <td><ID id="_locUserPassword">Password:</ID></td>
  98.                 <td><input type="password" id="UserPass" NAME="UserPass" style="width:100%"></td>
  99.                 <td></td>
  100.                 <td id="_locUserPasswordNotes" colspan=3>(required to create, but not to delete)</td>
  101.             </tr>
  102.             <tr>
  103.                 <td><ID id="_locProfileLocation">Profile Location:</ID></td>
  104.                 <td id="tdDrives"></td>
  105.                 <td></td>
  106.                 <td><button id=btnCreateProfiles class=normal style="width:100%" onclick="CreateProfiles_Click()"><ID id="_locCreateProfile">Create Profile</ID></button></td>
  107.                 <td></td>
  108.                 <td><button id=btnDeleteProfiles class=normal style="width:100%" onclick="DeleteProf_Click()"><ID id="_locDeleteProfile">Delete Profile</ID></button></td>
  109.             </tr>
  110.         </table>
  111.         <br>
  112.     </DIV>
  113.  
  114.     <TABLE id=oFooter style="height:2em"><tr>
  115.         <COL width="95%">
  116.         <COL width="5%">
  117.         <td></td>
  118.         <td><button id=btnFinish ATOMICSELECTION=True Title="Close this tool" onclick="Submit()" onmouseover="Highlight btnFinish, True" onmouseout="Highlight btnFinish, False"><img align=absmiddle src="graphics/red1.gif">  Close</button></td>
  119.     </tr></TABLE>
  120.     
  121. </body>
  122. </html>
  123.