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

  1. <html>
  2. <head>
  3. <META http-equiv="Content-Type" content="text/html; charset=utf-8" >
  4.     <!--
  5.     ' ***
  6.     ' *** ------------------------------------------------------------------------------
  7.     ' *** Filename:        DomainWarning.hta
  8.     ' *** ------------------------------------------------------------------------------
  9.     ' *** Description:    To show domain warning message
  10.     ' *** ------------------------------------------------------------------------------
  11.     ' *** Version:        1.0
  12.     ' *** Notes:        
  13.     ' *** ------------------------------------------------------------------------------
  14.     ' *** Copyright (C) Microsoft Corporation 2005, All Rights Reserved
  15.     ' *** ------------------------------------------------------------------------------
  16.     ' ***
  17.     -->
  18.     <title>Domain Warning - Shared Computer Toolkit</title>
  19.  
  20.     <script id="Common" language="VBScript" src="include/Common.vbs"></script>    
  21.     <script id="Domainwarning" language="vbscript" src="include/libhta.vbs"></script>
  22.     <link rel="stylesheet" type="text/css" href="css/hta.css"> 
  23.  
  24.     <hta:application ID="oImagine"
  25.         APPLICATIONNAME="Domainwarning"
  26.         CAPTION="yes"
  27.         CONTEXTMENU="yes"
  28.         BORDER="dialog"
  29.         ICON=""
  30.         INNERBORDER="no"
  31.         MAXIMIZEBUTTON="no"
  32.         MINIMIZEBUTTON="no"
  33.         NAVIGABLE="no"
  34.         SCROLL="no"
  35.         SELECTION="no"
  36.         SHOWINTASKBAR="yes"
  37.         SINGLEINSTANCE="yes"
  38.         SYSMENU="yes"
  39.         VERSION="1.00"
  40.         WINDOWSTATE="normal" />
  41. </head>
  42.  
  43. <body onunload="CloseDomainWarning()" style="background-color:steelblue;">
  44.     <table border="0" height="100%" width="100%">
  45.         <tr>
  46.             <td><img src="graphics/vbWarning.gif" hspace="10"></td>
  47.             <td>
  48.                 <h2 id="_locDomainWarning">Warning!</h2>
  49.                     <p id="_locDomainWarningText1">This computer is connected to a Windows domain.</p>
  50.                     <p id="_locDomainWarningText2">Please review Chapter 10, "The Shared Computer Toolkit in Domain Environments" in the Handbook for important information.</p><br>
  51.                     <p><input id="chkDomainWarning" type="checkbox" NAME="chkDomainWarning"><label ID=lchkDomainWarning For=chkDomainWarning>Don't show this warning next time.</label></p><br>
  52.             </td>
  53.         </tr>
  54.         <tr><td colspan=2 align=center><Button class=normal onclick="CloseDomainWarning" ID=btnClose NAME=btnClose style="width:5em">Close</Button></td></tr>
  55.     </table>    
  56. </body>
  57. </html>