localServer = get-exchangeserver $RoleFqdnOrName -DomainController $RoleDomainController; $localServerName = $localServer.Name; ...

$localServer = get-exchangeserver $RoleFqdnOrName -DomainController $RoleDomainController;          $localServerName = $localServer.Name;          Set-FrontendTransportService `          -Identity $localServerName `          -ReceiveProtocolLogPath ($RoleInstallPath + "	ransportRoles\Logs\FrontEnd\ProtocolLog\SmtpReceive") `          -SendProtocolLogPath ($RoleInstallPath + "	ransportRoles\Logs\FrontEnd\ProtocolLog\SmtpSend") `          -ConnectivityLogPath ($RoleInstallPath + "	ransportRoles\Logs\FrontEnd\Connectivity") `          -AgentLogPath ($RoleInstallPath + "	ransportRoles\Logs\FrontEnd\AgentLog") `          -ReceiveProtocolLogMaxDirectorySize 250MB `          -ReceiveProtocolLogMaxFileSize 10MB `          -SendProtocolLogMaxDirectorySize 250MB `          -SendProtocolLogMaxFileSize 10MB `          -DnsLogEnabled $false `          -DnsLogMaxAge:7.00:00:00 `          -DnsLogMaxDirectorySize "100MB" `          -DnsLogMaxFileSize "10MB" `          -ConnectivityLogMaxDirectorySize 1000MB `          -ConnectivityLogMaxFileSize 10MB `          -ConnectivityLogEnabled $true `          -AgentLogMaxDirectorySize 250MB `          -AgentLogMaxFileSize 10MB `          -AgentLogEnabled $true `          -IntraOrgConnectorProtocolLoggingLevel verbose `          -MaxConnectionRatePerMinute 72000 `          -MaxReceiveTlsRatePerMinute 6000 `          -DomainController $RoleDomainController