I can add a comma to the end of a string
$content = Get-Content "C:\Temp\reboot\list.txt"
$content | Foreach-Object{ "{0}{1}" -f $_,', ' } | Set-Content "C:\Temp\reboot\listdone.txt"
but how would I wrap my string in single quotes? I need to add a leading single quote and a trailing single quote.