Don't break the replacements up too much. You can simply replace the whole sequence [Evidence 1,
with C:\
, remove ]
, and replace all commas followed by a space with backslashes.
(Get-Content 'C:\path\to\input.csv' | Select-Object -Skip 2) `
-replace '\[Evidence 1, ', 'C:\' `
-replace '\]''\],' `
-replace ', ', '\' |
Set-Content 'C:\path\to\output.csv'