Disabling the component web server

Because you are using the IIS web application to host the component, disable the component's built-in web server:

  1. In Windows Explorer, browse to the AutoStore installation directory (by default, C:\Program Files\Nuance\AutoStore on a 64-bit system.
  2. Open the batch.exe.config file in a text editor.
  3. Find the <appSettings> section.
    If there is not an <appSettings> section, add it to the file.
  4. Add the following line:

    <add key="SkipHpOxpd16WebInit" value="true"/>

    The following code shows a sample configuration:

    <configuration>
        ...
        <appSettings>
           <add key="SkipHpOxpd16WebInit" value="true"/>
        </appSettings>
        ...
    </configuration>
    

  5. Save your changes.