[int]$count=0
Get-Content $originalFilePath | ForEach-Object {
$count+=1
If($count % 2 -eq 0){
Write-Output($_) | Out-File -FilePath $filePath -Append -Encoding utf8
}else{
Write-Output($_ + "`t") | Out-File -FilePath $filePath -Append -NoNewline -Encoding utf8
}
}