When I run the following command it results in having trailing spaces after each object. What is the best way for me to remove them?

Get-VMHost | select Name | out-file c:\temp\hosts.txt

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

So you really need the table view for a single property? Remember that the table and list outputs are supposed to be read by humans, not piped into a file.

You can use

Get-VMHost | Select -Expand Name | Out-File hosts.txt

to just output the names.

link|improve this answer
feedback

Use Set-Content (and/or Add-Content) to not have formatting artifacts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.