<system.serviceModel.activation>
В данном разделе конфигурации представлены параметры конфигурации для средства SMSvcHost.exe. Элементы конфигурации можно задать в файле SMSvcHost.exe.config. В частности в нем содержатся все параметры компьютера, которые необходимо настроить.
Образец файла конфигурации
Далее приведен образец файла конфигурации (SMSvcHost.exe.config), используемый процессом прослушивателя SMSvcHost.exe.
<configuration>
<runtime>
<gcConcurrent enabled="false" />
</runtime>
<system.serviceModel.activation>
<net.tcp listenBacklog="10"
maxPendingAccepts="2"
maxPendingConnections="100"
receiveTimeout="00:00:10"
teredoEnabled="false">
<allowAccounts>
<!-- LocalSystem account -->
<add securityIdentifier="S-1-5-18"/>
<!-- LocalService account -->
<add securityIdentifier="S-1-5-19"/>
<!-- Network Service account -->
<add securityIdentifier="S-1-5-20"/>
<!-- Administrators account -->
<add securityIdentifier="S-1-5-32-544" />
<!-- IIS_IUSRS account (Vista only) -->
<add securityIdentifier="S-1-5-32-568"/>
</allowAccounts>
</net.tcp>
<net.pipe maxConnectionsPendingDispatch="100"
maxPendingAccepts="2"
receiveTimeout="00:00:10">
<allowAccounts>
<!-- LocalSystem account -->
<add securityIdentifier="S-1-5-18"/>
<!-- LocalService account -->
<add securityIdentifier="S-1-5-19"/>
<!-- Network Service account -->
<add securityIdentifier="S-1-5-20"/>
<!-- Administrators account -->
<add securityIdentifier="S-1-5-32-544" />
<!-- IIS_IUSRS account (Vista only) -->
<add securityIdentifier="S-1-5-32-568"/>
</allowAccounts>
</net.pipe>
<diagnostics performanceCountersEnabled="true" />
</system.serviceModel.activation>
</configuration>