IIS 4.0 configuration

  1. Web Site Management.

  2. Scripts parameters.

  3. Examples

Rodopi is creating accounts on the IIS system with event scripts. We have several VBS and command scripts to manage the basic functionality of IIS 4.0

1. Web Site Management:

mkw.vbs – Creates Web site;

delw.vbs – Deletes Web site;

pausew.vbs - Pauses Web site;

contw.vbs - Continues Web site.

 

2. Scripts parameters.

To see how to use every script just start it without parameters. Example:

cscript script_name.vbs

contw.vbs
contw [WEBSITE]

Finds and unpauses the named web on the local computer.
Displays the site number, description, host name, port,
and IP Address

The name can be specified as one of the following, in the priority specified:
Server Number (i.e. 1, 2, 10, etc.)
Server Description (i.e "My Server")
Server Host name (i.e. "www.domain.com")
IP Address (i.e., 127.0.0.1)

Example: contw www.mycompany.com

delw.vbs

delw [WEBSITE]

Finds and deletes the named web on the local computer.
Displays the site number, description, host name, port,
and IP Address

The name can be specified as one of the following, in the priority specified:
Server Number (i.e. 1, 2, 10, etc.)
Server Description (i.e "My Server")
Server Host name (i.e. "www.domain.com")
IP Address (i.e., 127.0.0.1)

Example delw www.mycompany.com


mkw.vbs
Missing Root Directory
Usage: mkw <--RootDirectory|-r ROOT DIRECTORY>
<--Comment|-t SERVER COMMENT>
[--port|-o PORT NUM]
[--IPAddress|-i IP ADDRESS]
[--HostName|-h HOST NAME]
[--DontStart]
[--verbose|-v]
[--help|-?]
WARNING: Only use Host Name if DNS is set up find the server.

Example: mkw -r D:\Roots\Company11 --DontStart -t "My Company Site" -h www.MyCompany.com



pausew.vbs
pausew [WEBSITE]

Finds and pauses the named web on the local computer.
Displays the site number, description, host name, port,
and IP Address

The name can be specified as one of the following, in the priority specified:
Server Number (i.e. 1, 2, 10, etc.)
Server Description (i.e "My Server")
Server Host name (i.e. "www.domain.com")
IP Address (i.e., 127.0.0.1)

Example pausew www.mycompany.com

 

3. Examples

To see Rodopi installation configured for IIS 4.0 click here. This is the page: RODOPI Main Menu / Administration / Event Scripts. In this example you can see what scripts you need in Rodopi to automatycally handle account creation for email, web and radius.

Warning: These are only sample scripts. You need to change them for your configuration.