Creating and using custom objects
Listener Mace writes: I’ve seen this code: $values = new-object ‘object[,]’ 5,2 Can you expound on that? The author fills the array. $k = 0 foreach ($j in $exchangeserverlist) { $perf = New-Object System.Diagnostics.PerformanceCounter($perfobj1, $counter1, $instance1, $j.Name) …
