Hello,
you can achieve the removal of the colum name with:
get-content $file |
select -Skip 1 |
set-content "$file-temp"
move "$file-temp" $file -Force
To remove the " character use:
Get-Content C:\Temp\FileBefore.txt -Encoding UTF8 | ForEach-Object {$_ -replace '"',''} | Out-File C:\Temp\FileAfter.txt -Encoding UTF8
------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept as answer--