Aug 1, 2007
Post comments count0
Post likes count0
Get-WmiChildNameSpace

I got sick of fiddling around with WMI namespace so I produced a really simple script to cope with this. I call it Get-WmiNamespace: PS> cat .\Get-WMIChildNameSpace.ps1param ($Namespace="root\cimv2", $Computer=".", $Column=4)Get-WmiObject -Computer:$Computer -NameSpace:$NameSpace __NameSpace |Format-Wide -Column:$ColumnPS>PS> .\Get-WmiC...