pratik khandelwal
pratik khandelwal

Reputation: 11

Import-Csv: The member "Client Memory" is already present

I'm getting an error when running Import-Csv: The member "Client Memory" is already present. The command I am running is:

Import-Csv "FilePath" | Select -ExpandProperty "SystemCondition"

Upvotes: 1

Views: 436

Answers (1)

codewario
codewario

Reputation: 21418

You have two columns with the same heading, in this case the duplicate name is Client Memory. Each column should have a unique name.

Upvotes: 2

Related Questions