Link to home
Start Free TrialLog in
Avatar of Hilal1924
Hilal1924Flag for India

asked on

One Send/Receive Connector Connecor Annoyance

Hi Guys, Small Issue here. Well I have a csv file which contains the names and Identity of the recieve connectors. what I need to do is import this csv file in powershell via import-csv command then pipe it to Set-RecieveConnector Command. It can look something like this:

import-csv C:\Connector.csv |foreach {Set-RecieveConnector -Identitty S_ -MaxMessageSize 10MB}

CSV File is in this format
"Identity"
"con1"
"Con2"
"con3"

Thanks for the Help.
ASKER CERTIFIED SOLUTION
Avatar of endital1097
endital1097
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
when working with a csv file you must utilize the column hearder for the variable value, so you need to have it as $_.Identity
Avatar of Hilal1924

ASKER

Excellent - Worked Just fine.