When performing remote installation of the OfficeScan client, a pop up message appears showing that there is an attempt to install. However, it does not show any progress. The pop up message stays for a few minutes and then ends with the “Call CGI" error.
This issue happens because of the IIS 7’s stream buffer limitation behavior. The CGI would fulfill the output stream buffer and send it all at once in IIS7, when it would send output stream separately and one by one in IIS6.
To resolve this issue, do the following:
- Go to the %windir%\system32\inetsrv\config directory.
- Create a back up of the applicationHost.Config file.
- Open the original file to edit it and look for the entry below:
<add name="CGI-exe" path="*.exe" verb="*" modules="CgiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" />
- Add the following entry:
responseBufferLimit="0"
The lines should now look like this:
<add name="CGI-exe" path="*.exe" verb="*" modules="CgiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" responseBufferLimit="0" />
- Save the changes and then close the file.
- Restart the WWW Publishing service.
- Perform a remote install to check if the Call CGI error will still occur.
Should the issue continue to happen:
- Download the CDT tool and run it on the target host machine.
- Collect the logs and contact Trend Micro Technical Support for further analysis and assistance.