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

  1. <html>
  2. <head>
  3. <META http-equiv="Content-Type" content="text/html; charset=utf-8" >
  4.     <!--
  5.     ' ***
  6.     ' *** ------------------------------------------------------------------------------
  7.     ' *** Filename:        WDPOn.hta
  8.     ' *** ------------------------------------------------------------------------------
  9.     ' *** Description:    To show information message about Disk Protection feature
  10.     ' *** ------------------------------------------------------------------------------
  11.     ' *** Version:        1.0
  12.     ' *** Notes:        
  13.     ' *** ------------------------------------------------------------------------------
  14.     ' *** Copyright (C) Microsoft Corporation 2005, All Rights Reserved
  15.     ' *** ------------------------------------------------------------------------------
  16.     ' ***
  17.     -->
  18.     <title>Windows Disk Protection</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="DiskProtect" language="vbscript" src="include/DiskProtect.vbs"></script>
  23.     <link rel="stylesheet" type="text/css" href="css/hta.css">
  24.  
  25.     <hta:application ID="oImagine"
  26.         APPLICATIONNAME="WDPOn"
  27.         CAPTION="yes"
  28.         CONTEXTMENU="yes"
  29.         BORDER="dialog"
  30.         ICON="graphics/DiskProtect.ico"
  31.         INNERBORDER="no"
  32.         MAXIMIZEBUTTON="no"
  33.         MINIMIZEBUTTON="no"
  34.         NAVIGABLE="no"
  35.         SCROLL="no"
  36.         SELECTION="no"
  37.         SHOWINTASKBAR="yes"
  38.         SINGLEINSTANCE="yes"
  39.         SYSMENU="yes"
  40.         VERSION="1.00"
  41.         WINDOWSTATE="normal" />
  42. </head>
  43.  
  44. <body style="background-color:steelblue;">
  45.     <table ID="Table1" border="0" height="100%" width="100%" >
  46.         <tr>
  47.             <td><img src="graphics/vbInformation.gif" hspace="10"></td>
  48.             <td align=left>
  49.                 <h1 id="_locWDPOnTitle">Important Information</h1>
  50.                 <p id="_locWDPOnText1">Windows Disk Protection is now <b>On</b> and will clear all future disk changes each time the computer restarts.</p>
  51.                 <p id="_locWDPOnText2">If you install software or make other changes to Windows, you will need to return to Windows Disk Protection and click <b>Save changes with next restart</b>.</p>
  52.                 <p id="_locWDPOnText3">The computer must be restarted for this change to take effect. Do you want to restart it now?</p><br>
  53.             </td>
  54.         </tr>
  55.         <tr>
  56.             <td colspan="2" align="center">
  57.                 <button class=normal style="width:5em" id="btnRestartYes" onclick="WDPRestart()">Yes</button>     
  58.                 <button class=normal style="width:5em" id="btnRestartNo" onclick="Self.Close()">No</button>
  59.             </td>
  60.         </tr>
  61.     </table>    
  62. </body>
  63. </html>
  64.