home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_06.cab / iiscsp3.asp < prev    next >
Text File  |  1997-10-15  |  4KB  |  84 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
  2. <html><head><title>Automating and Customizing your Operations</title>
  3.  
  4. <SCRIPT LANGUAGE="JavaScript">
  5.     TempString = navigator.appVersion
  6.     if (navigator.appName == "Microsoft Internet Explorer"){    
  7. // Check to see if browser is Microsoft
  8.         if (TempString.indexOf ("4.") >= 0){
  9. // Check to see if it is IE 4
  10.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  11.         }
  12.         else {
  13.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  14.         }
  15.     }
  16.     else if (navigator.appName == "Netscape") {                        
  17. // Check to see if browser is Netscape
  18.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  19.     }
  20.     else
  21.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  22. </script>
  23.  
  24. <META NAME="DESCRIPTION" CONTENT="IIS in Action: Automating and Customizing your Operations"></head>
  25.  
  26. <body bgcolor="#FFFFFF" text="#000000"><font face="Verdana, Arial, Helvetica">
  27.  
  28. <h1><a name="writingtemplates">Automating and Customizing your Operations</a></h1>
  29.  
  30. <table cellpadding="0" border="0" cellspacing="0" width="100%">
  31. <tr>
  32.  
  33. <td width="77%" valign="top">
  34. <DL>
  35. <DT><strong>Goal</strong></DT>
  36. <DD>Decrease workload by automating repetitive tasks.</DD>
  37. <DT><strong>Components</strong></DT>
  38. <DD>Windows NT Server 4.0; Internet Information Server (IIS) 4.0; Active Server Pages (ASP); ADO; Microsoft SQL Server; Internet Explorer version 3.02 with Authenticode 2 update, or later versions of Internet Explorer</DD>
  39. <DT><strong>Environment</strong></DT>
  40. <DD>Intranet, secured; Windows NT network</DD>
  41. </DL>
  42. </td>
  43.  
  44.     
  45. <%
  46. If InStr(Request.ServerVariables("HTTP_USER-AGENT"), "MSIE") Then
  47.    MachPath = "../mm/iiscsp3m.asp" 
  48. Else
  49.         MachPath = "iimmnscp.htm"
  50. End If %>
  51.  
  52. <td width="4%"></td>
  53.  
  54. <td width="19%" valign="top"><br><br>
  55. <center><a href="<%= MachPath%>"><img src="iimm.gif" border=0 alt="Automating Internet Service Provision Demonstration"></a></center>
  56.  
  57. <center><a href="<%= MachPath%>"><p>Multimedia Demonstration</p></a></center>
  58.  
  59. </td>
  60.  
  61. </tr>
  62. </table>
  63.  
  64. <h2><A NAME="H2_37670524">Basic Process</a></h2>
  65.  
  66. <ol>
  67. <li>Use the Windows Scripting Host to create scripts that automatically create a Web site for a customer who signs up with your service.</li>
  68. <li>Use similar methods to automate a number of other ISP processes, such as virtual Web server setup for corporate customers, user account management, and processing common user requests.  Use quick, command-line scripts to automate these processes.</li>
  69. <li>Provide simple Web pages that customers can use to administer their Web site themselves.</li>
  70. <li>Tailor these forms to provide your users with full control over their own Web sites, or merely to allow them to perform a few common tasks.</li>
  71. <li>Automate administration of the FTP service, Windows NT user accounts and groups, the file system, and Windows NT Access Control Lists.  Because all of these components are accessible through a common interface from within scripts, you can manipulate them all from one script.</li>
  72. </ol>
  73.  
  74. <h2><A NAME="H2_37671482">Result</a></h2>
  75.  
  76. <p>Your operations become much more efficient. For example, when a new customer signs up for his own Web site with his own domain name, a lot of tasks have to be accomplished. The user's Windows NT account must be created, he must be added to the appropriate groups, a billing record must be initialized, a new virtual Web server must be created and configured, in some cases, an FTP virtual directory must be created, and finally all of the appropriate access control lists must be established. With IIS 4.0, a single script can automatically perform all of these operations either when you complete a Web-based fill-out form or type a simple command.</p>
  77.  
  78.  
  79. <hr class="iis" size="1"><p align=center><em><a href="../../../common/colegal.htm">© 1997 by Microsoft Corporation. All rights reserved.</a></em></p>
  80.  
  81.  
  82. </font>
  83. </body>
  84. </html>