Just getting started with Powershell and have a quick question. Trying to run this statement:
gwmi -query "select Description from Win32_OperatingSystem" | select-object Description
The results come back as:
Description
------------
My PC Name
But I just want MY PC Name
. What else to I need to add to the statement to remove the label and just get the value? Thanks!