PowerShellOrg / StackExchangeResources

DSC Resources from Stack Exchange
MIT License
13 stars 8 forks source link

StackExchange_Pagefile doesn't expect multiple pagefiles #6

Open n8v opened 9 years ago

n8v commented 9 years ago

Hi, I'm just getting started with DSC but it's been fascinating to read the code here. Thank you!

I noticed that the StackExchange_Pagefile resource only expects a single pagefile.

It's possible and even likely for machines with multiple drives to have multiple pagefiles, and Win32_PageFileSetting will return an array of them.

To start with you should ask for an array,

$PageFileSettings = @(Get-WmiObject Win32_PageFileSetting)

but the whole thing will need some rethinking.