HOWTO: Use Windows Script Host Scripts as CGI Scripts

ID: Q221081


The information in this article applies to:


SUMMARY

When attempting to call a Visual Basic Script from a Web server in the context of a CGI script, the script may fail to run properly. The most likely reason for this is that the scripting engine is typically executed in the security context of the IUSR_Machine created by IIS when it is installed.

Unfortunately, the Cscript.exe (the scripting engine) requires the presence of certain registry entries for IUSR_Machine user. Since a HKEY_CURRENT_USER hive is not available for the IUSR_Machine, IIS will load the HKEY_USERS\.DEFAULT hive in its place. However, the HKEY_USERS\.DEFAULT hive does not contain the neccessary keys and entries for the scripting engine.

In these cases, a CGI error will occur, without any additional information. Or if the Cscript.exe file was launched in batch mode, an error will appear indicating it was unable to load the settings for the specified user. This document will show how to configure the IIS machine to allow Visual Basic Scripts to be executed as a CGI script.


MORE INFORMATION

This article assumes that the Windows Script Host is installed on the IIS server machine; the default installation option of NT Option Pack will do this.

Use the following steps to enable VBScript support:

  1. Configure the .vbs extension to be mapped to the Cscript.exe located in the %SYSTEMROOT%\System32 directory. Do this through the Microsoft Management Console. Specifically, the configuration steps for IIS4 are as follows:
    1. Run the IIS4 Management Console application.


    2. Edit the properties for your Web site (right-click on your Web site in the tree display and select Properties).


    3. Select the Home Directory tab.


    4. In the Application Settings box, select Configuration.


    5. On the App Mappings tab select Add.


    6. The executable will be the following on a WinNT 4.0 machine (make sure to use correct path to Cscript.exe on your WinNT installation):
      
      C:\WINNT\system32\CSCRIPT.EXE.exe %s %s 


    Enter .vbs for the extension.

    1. Make sure that the Script Engine and Check that files exists check boxes are selected.


    2. Save the file by clicking OK, Apply, OK, and OK again.




  2. Using the Registry Editor, create the following Keys and Entries:

    
    HKEY_USERS\.DEFAULT\Software\Microsoft\Windows Scripting Host
    HKEY_USERS\.DEFAULT\Software\Microsoft\Windows Scripting Host\Settings 
    Verify that Everyone has Read access to these two keys.
    Now create the following entries under:
    
    HKEY_USERS\.DEFAULT\Software\Microsoft\Windows Scripting Host\Settings
    
    BatchMode: REG_DWORD: 0
    DisplayLogo: REG_DWORD: 0
    Timeout: REG_DWORD: 0 


  3. Now copy the .vbs script file to a virtual directory on the server which has execute/script permissions. By default the /scripts directory will have the neccessary permissions.



You should be able to test whether the configuration works or not by creating the following script:

Option Explicit
WScript.Echo "Content-Type: text/html"
WScript.Echo
WScript.Echo "If you see this, it worked." 
Save the above script in the /scripts directory as Test.vbs. Now invoke the script using any browser with the following URL:

http://server/scripts/test.vbs. 
NOTE: Similar limitations apply to all situation where a Cscript.exe script is launched from the security context of a local system or a local system impersonating a user. The above changes to the Registry should remedy these situations.


REFERENCES

Microsoft Internet Informatio Server Online Documentation.

Additional query words:


Keywords          : 
Version           : WINDOWS:1.1,2.0,3.0,4.0,5.0; winnt:4.0
Platform          : WINDOWS winnt 
Issue type        : kbhowto 

Last Reviewed: July 16, 1999