¿Qué $ _? Nombre completo en PowerShell
Get-ChildItem -Path C:\Windows | ForEach-Object {
$_ # this references the entire object returned.
$_.FullName # this refers specifically to the FullName property
}
Elated Earthworm