If I got a CSV file and there are a lot of strings that contain exactly "Name"
.
How do I get to have only Name and not "Name"? -replace
won't work as you can't quote the quotes:
$computername.Name = $computername.Name -replace (""", "") # won't work
edit: example csv export Name,"IPAddress" SVDCO03,"10.10.15.46" SVLIC01,"10.10.20.221" where i need to get those quotas away