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
|
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
| |||
|
feedback
|
|
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
to just output the names. | ||||
|
feedback
|