Remove Header from Powershell get output

When you select one column in output of get command and then try to use it in a for loop you see each line is embedded in Curly braces {}

Instead of using select xyz you will useĀ ForEach-Object {$_.xyz}

Get-ChildItem C:\temp\ | ForEach-Object {$_.Fullname}