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

  1. <html>
  2. <head>
  3. <META http-equiv="Content-Type" content="text/html; charset=utf-8" >
  4.     <!--
  5.     ' ***
  6.     ' *** ------------------------------------------------------------------------------
  7.     ' *** Filename:        SelectDrives.hta
  8.     ' *** ------------------------------------------------------------------------------
  9.     ' *** Description:    SelectDrives tool to select the combination of drives 
  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="SelectDrives" language="vbscript" src="include/SelectDrives.vbs"></script>
  24.     
  25.     <link rel="stylesheet" type="text/css" href="css/hta.css">
  26.     
  27.     <hta:application ID="oImagine"
  28.             APPLICATIONNAME="SelectDrives"
  29.             CAPTION="yes"
  30.             CONTEXTMENU="yes"
  31.             BORDER="dialog"
  32.             ICON="graphics/UserProfiles.ico"
  33.             INNERBORDER="no"
  34.             MAXIMIZEBUTTON="no"
  35.             MINIMIZEBUTTON="no"
  36.             NAVIGABLE="no"
  37.             SCROLL="no"
  38.             SELECTION="no"
  39.             SHOWINTASKBAR="yes"
  40.             SINGLEINSTANCE="yes"
  41.             SYSMENU="yes"
  42.             VERSION="1.00"
  43.             WINDOWSTATE="normal" />
  44.  
  45.     <!-- settings and resources -->
  46.     <div id="settings" style="display:none">
  47.         <p id="appTitle">Select Drives to Restrict</p>
  48.         
  49.         <span id="resAdminOnly">NO</span>
  50.         <span id="resWGAOnly">NO</span>
  51.         <span id="resDomainWarning">NO</span>
  52.         <span id="resCloseButton">NO</span>
  53.     </div>
  54. </head>
  55.  
  56. <body id="oBody" onload="DrivesMain()" OnKeyDown = "HTAKeyDown()" OnKeyUp = "KeyUp()" >
  57.         
  58.         <label id="title"></label>        
  59.          
  60.         <P id="_locSummary" style="padding:5px">Select which drives should not appear within My Computer in Windows Explorer</p>
  61.  
  62.         <table>
  63.             <THEAD align=center><tr>
  64.                 <td style="width:100px"><P id="_locUnrestricted"><b>Listed</b></P></td>
  65.                 <td></td>
  66.                 <td><P id="_locRestricted"><b>Restricted</b></p></td>
  67.             </tr></THEAD>
  68.  
  69.             <TBODY align=center><tr valign=top>
  70.                 <td><div style="width:3.5em;height:11.6em;overflow:auto;background-color:white;color:black;">
  71.                     <table id=tLeft ondblclick = "OnDoubleclick()"></table>
  72.                 </div></td>
  73.                 
  74.                 <td>
  75.                     <ID id="_locRestrictAll"><button class=normal id="btnRestrictAll" style="width:100px" onclick="RestrictAll()">Restrict All</button></ID><br><br style="line-height:5px">
  76.                     <button class=normal id="btnMoveRight" style="width:100px" class="normalbutton" onclick="MoveRight()" ><b>--></b></button><br><br style="line-height:5px">
  77.                     <button class=normal id="btnMoveLeft" style="width:100px" class="normalbutton" onclick="MoveLeft()" ><b><--</b></button><br><br style="line-height:5px">
  78.                     <ID id="_locClearAll"><button class=normal id="btnClearAll" style="width:100px" onclick="ClearAll()">List All</button></ID><br><br style="line-height:5px">
  79.                     <ID id="_locOKText"><button id=btnFinish ATOMICSELECTION=True style="width:100px" class=finishDrive Title="OK" onclick="CloseOK()" onmouseover="Highlight btnFinish, True" onmouseout="Highlight btnFinish, False"><img align="absmiddle" src="graphics/green1.gif">  OK</button></ID>
  80.                 </td>
  81.                                 
  82.                 <td><div style="width:3.5em;height:11.6em;overflow:auto;background-color:white;color:black;">
  83.                     <table id=tRight valign=top ondblclick = "OnDoubleclick()"></table>
  84.                 </div></td>
  85.             </tr></TBODY>
  86.         </table>
  87.  
  88. </body>
  89. </html>
  90.