Skip to content

Instantly share code, notes, and snippets.

Created February 26, 2016 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/31b67f8e32cee8dd0427 to your computer and use it in GitHub Desktop.
Save anonymous/31b67f8e32cee8dd0427 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
<section name="managementOdata" type="Microsoft.Management.Odata.Core.DSConfiguration, Microsoft.Management.OData, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
</configSections>
<managementOdata schemaFileName="PSDSCPullServer.mof" resourceMappingFileName="PSDSCPullServer.xml">
<customAuthorization type="Microsoft.Powershell.DesiredStateConfiguration.PullServer.Authorization" assembly="Microsoft.Powershell.DesiredStateConfiguration.Service.dll" />
<operationManager type="Microsoft.Powershell.DesiredStateConfiguration.PullServer.OperationManager" assembly="Microsoft.Powershell.DesiredStateConfiguration.Service.dll" />
<quota userSchemaCacheTimeoutSec="600" />
<commandInvocation enabled="false" />
<wcfDataServicesConfig>
</wcfDataServicesConfig>
</managementOdata>
<appSettings>
<add key="MaxConcurrentRequests" value="10000" />
<add key="MaxRequestsPerTimeslot" value="10000" />
<add key="TimeslotSize" value="1" />
<add key="dbprovider" value="System.Data.OleDb" />
<add key="dbconnectionstr" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\WindowsPowerShell\DscService\Devices.mdb;" />
<add key="ConfigurationPath" value="C:\Program Files\WindowsPowerShell\DscService\Configuration" />
<add key="ModulePath" value="C:\Program Files\WindowsPowerShell\DscService\Modules" />
<add key="RegistrationKeyPath" value="C:\Program Files\WindowsPowerShell\DscService" />
</appSettings>
<system.web>
<compilation debug="false" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceAuthorization serviceAuthorizationManagerType="Microsoft.Management.Odata.Core.CustomAuthorizationManager, Microsoft.Management.OData, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules>
<remove name="ServiceModel" />
<remove name="WebDAVModule" />
<remove name="AuthenticationModule" />
<add type="Microsoft.Powershell.DesiredStateConfiguration.PullServer.AuthenticationPlugin, Microsoft.Powershell.DesiredStateConfiguration.Service" name="AuthenticationModule" />
</modules>
<handlers>
<remove name="WebDAV" />
<remove name="xoml-Integrated" />
<remove name="rules-Integrated" />
<remove name="svc-ISAPI-2.0-64" />
<remove name="svc-ISAPI-2.0" />
<remove name="svc-Integrated" />
</handlers>
<security>
<authentication>
<anonymousAuthentication enabled="true" />
<basicAuthentication enabled="false" />
<windowsAuthentication enabled="false" />
</authentication>
</security>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="1.00:00:00" />
</staticContent>
<directoryBrowse enabled="false" />
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="microsoft.isam.esent.interop" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="10.0.0.0" newVersion="6.3.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment