Showing results for August 2007 - Page 2 of 2 - PowerShell Team

Aug 1, 2007
Post comments count0
Post likes count0

Get-WmiChildNameSpace

PowerShell Team
PowerShell Team

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...