Unix2Dows using Powershell
1get-content <filename> |% {$_.replace("`n", "`r`n")} | out-file -filepath <new filename>
More explanation in https://sus42.wordpress.com/2013/01/21/unix2dos-using-powershell/
1get-content <filename> |% {$_.replace("`n", "`r`n")} | out-file -filepath <new filename>
More explanation in https://sus42.wordpress.com/2013/01/21/unix2dos-using-powershell/