Examples/Sample_IisLogging_Truncate.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
configuration Sample_IisLogging_Truncate { param ( # Target nodes to apply the configuration [String[]]$NodeName = 'localhost' ) # Import the module that defines custom resources Import-DscResource -Module xWebAdministration Node $NodeName { IisLogging Logging { LogPath = 'C:\IISLogFiles' Logflags = @('Date','Time','ClientIP','UserName','ServerIP') LoglocalTimeRollover = $True LogTruncateSize = '2097152' LogFormat = 'W3C' } } } |