I am trying to figure out how to eliminate line breaks when using add-content
echo $server "Uptime: " $uptime.days ", Days" $uptime.hours ", Hours" $uptime.minutes ", Minutes" | add-content $output_file
Basically I have been trying to get the uptime of a server to go to a text file, and when I do this the output comes out
HOSTNAME
Uptime:
, 2 Days
2
, Hours
15
, Minutes
I looked at this question: Powershell replace lose line breaks
Also I went from using out-file -append to add-content, however both produce similar results, can someone shed to some light on how I can eliminate the breaks?