<t>I think you might be able to use the ExpandProperty parameter of Select-Object.<br/>
<br/>
For example, to get the list of the current directory and just have the Name property displayed, one would do the following:<br/>
<br/>
ls | select -Property Name<br/>
<br/>
```<br/>
<br/>
This is still returning DirectoryInfo or FileInfo objects. You can always inspect the type coming through the pipeline by piping to [Get-Member](http://technet.microsoft.com/en-us/library/hh849928.aspx) (alias `gm`).<br/>
<br/>
```<br/>
ls | select -Property Name | gm<br/>
<br/>
```<br/>
<br/>
So, to *expand* the object to be that of the type of property you're looking at, you can do the following:<br/>
<br/>
```<br/>
ls | select -ExpandProperty Name<br/>
<br/>
```<br/>
<br/>
In your case, you can just do the following to have a variable be an array of strings, where the strings are the Name property:<br/>
<br/>
```<br/>
$objects = ls | select -ExpandProperty Name<br/>
<br/>
```</t>