Forum Discussion
StefanoC66
Oct 22, 2024Iron Contributor
powershell creation receive connector from csv
I'm trying to create a script that should create an exchange receive connector from a CSV file that contains the list of the connectors to create as well as some properties. The problem is not the c...
- Oct 23, 2024The RemoteIPRanges parameter specifies the remote IP addresses that the Receive connector accepts messages from. Valid values are:
Single IP address: For example, 192.168.1.1 or fe80::39bd:88f7:6969:d223%11.
IP address range: For example, 192.168.1.1-192.168.1.254.
Classless InterDomain Routing (CIDR) IP address range: For example, 192.168.1.1/24 or 2001:0DB8::CD3/60.
You can specify multiple value separated by commas: "Value1","Value2",..."ValueN".
https://learn.microsoft.com/en-us/powershell/module/exchange/new-receiveconnector?view=exchange-ps/?WT.mc_id=M365-MVP-5002523
AnnTaeYoun
Oct 23, 2024MVP
The RemoteIPRanges parameter specifies the remote IP addresses that the Receive connector accepts messages from. Valid values are:
Single IP address: For example, 192.168.1.1 or fe80::39bd:88f7:6969:d223%11.
IP address range: For example, 192.168.1.1-192.168.1.254.
Classless InterDomain Routing (CIDR) IP address range: For example, 192.168.1.1/24 or 2001:0DB8::CD3/60.
You can specify multiple value separated by commas: "Value1","Value2",..."ValueN".
https://learn.microsoft.com/en-us/powershell/module/exchange/new-receiveconnector?view=exchange-ps/?WT.mc_id=M365-MVP-5002523
Single IP address: For example, 192.168.1.1 or fe80::39bd:88f7:6969:d223%11.
IP address range: For example, 192.168.1.1-192.168.1.254.
Classless InterDomain Routing (CIDR) IP address range: For example, 192.168.1.1/24 or 2001:0DB8::CD3/60.
You can specify multiple value separated by commas: "Value1","Value2",..."ValueN".
https://learn.microsoft.com/en-us/powershell/module/exchange/new-receiveconnector?view=exchange-ps/?WT.mc_id=M365-MVP-5002523
- StefanoC66Oct 23, 2024Iron ContributorYou’re right I overlooked it
Thanks