Examples/Sample_xWebAppPoolDefaults.ps1
<#
.SYNOPSIS An example of configuring the application pool default settings. .DESCRIPTION This examples show how to use xWebAppPoolDefaults for configuring the application pool default settings. The resource is currently limited to configuring the managed runtime version and the identity used for the application pools. #> Configuration Sample_xWebAppPoolDefaults { param ( # Target nodes to apply the configuration [string[]]$NodeName = 'localhost' ) # Import the module that defines custom resources Import-DscResource -Module xWebAdministration, PSDesiredStateConfiguration Node $NodeName { # Configures the application pool defaults. xWebAppPoolDefaults PoolDefaults { ApplyTo = 'Machine' ManagedRuntimeVersion = 'v4.0' IdentityType = 'ApplicationPoolIdentity' } } } |