DSCResources/DSR_WSManConfig/DSR_WSManConfig.data.psd1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
@{ ParameterList = @( @{ Name = 'MaxEnvelopeSizekb' Path = 'MaxEnvelopeSizekb' Type = 'Uint32' Default = 500 TestVal = 501 IntTest = $true }, @{ Name = 'MaxTimeoutms' Path = 'MaxTimeoutms' Type = 'Uint32' Default = 60000 TestVal = 60001 IntTest = $true }, @{ Name = 'MaxBatchItems' Path = 'MaxBatchItems' Type = 'Uint32' Default = 32000 TestVal = 32001 IntTest = $true } ) } |