Copy-ready commandForEach-Object — Export Results
Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformationRequirements and permissions
- Requirements
- Windows PowerShell 5.1 or PowerShell 7
- Permissions
- Varies by command
- Last reviewed
- 2026-07-31
Examples
Export Results
Export the output of ForEach-Object for documentation or review.
Get-Service | ForEach-Object { $_.Name } | Export-Csv .\output.csv -NoTypeInformationOriginal command
Run an action for each pipeline object.
Get-Service | ForEach-Object { $_.Name }Common errors
Command not found
Confirm Windows PowerShell 5.1 or PowerShell 7 is installed and available in your current shell.