<t>Add | select FullName to the end of your line above. If you need to actually do something with that afterwards, you might have to pipe it into a foreach loop, like so:<br/>
<br/>
get-childitem "C:\windows\System32" -recurse | where {$_.extension -eq ".txt"} | % {<br/>
Write-Host $_.FullName<br/>
}<br/>
<br/>
```</t>