<system.serviceModel.activation>
Det här konfigurationsavsnittet representerar konfigurationsinställningarna för SMSvcHost.exe-verktyget. Konfigurationselementen kan konfigureras i filen SMSvcHost.exe.config. Mer specifikt innehåller den alla datoromfattande inställningar som måste konfigureras.
<Konfiguration>
<system.serviceModel.activation>
Exempelkonfigurationsfil
Följande är en exempelkonfigurationsfil (SMSvcHost.exe.config), som används av lyssnarprocessen 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>
Se även
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.