Scenario: Your Exchange 2013 Servers Receive Connector already has multiple values assigned to it. Because its a multi-valued field, you cannot easily add a single IP address to it without overwriting the contents of the field using a command similar to: set-receiveconnector -remoteipranges 10.10.0.2
Solution: In order to add a IP address to an existing set of RemoteIPRanges for a receiveconnector, run the following:
$RC = Get-ReceiveConnector "Ex2013-1Default FrontEnd Ex2013-1" $RC.RemoteIPRanges += "10.10.0.2" Set-ReceiveConnector "Ex2013-1Default FrontEnd Ex2013-1" -RemoteIPRanges $RC.RemoteIPRanges