I am a linux guy so I'm used to "grep". With grep it keeps the columns, however in powershell it changes the output. For example:
Get-WmiObject -List | Select-String -Pattern "Win32_LogicalDisk$"
\\COMP\ROOT\cimv2:Win32_LogicalDisk
Where as "Get-WmiObject -List" puts out the columns such as:
CIM_Tachometer {SetPowerState, R... {Accuracy, Availability, Caption, ConfigManagerErrorCode...
I would like my "Select" to yield the entire column as opposed to just the object or whatever it's returning. I would like to emulate a grep of the actual output of Get-WmiObject -List
Also as a bouns side question: Besides MSDN what is a good site that lists all the WMI objects and what they return? These seem like a super powerful way to get information about any aspect of a windows system. AmIRight?