Posts

E14–HUB export queue to EML

  http://www.msdigest.net/2014/04/how-to-export-messages-from-a-mail-queue-on-exchange/   #Suspend all messages in the queue get-queue ExchangeServer\663 | Get-Message | Suspend-Message #Get all messages from the queue $array = @(Get-Message -Queue "ExchangeServer\663" -ResultSize unlimited) #Export all messages from the queu $array | ForEach-Object {$i++;Export-Message $_.Identity | AssembleMessage -Path ("E:\Mailqueue\"+ $i +".eml")}

E14–RPC EndPoint

  http://blogs.technet.com/b/aljackie/archive/2013/11/14/outlook-rpc-end-point-and-pf-the-microsoft-exchange-administrator-has-made-a-change-that-requires-you-quit-and-restart-outlook.aspx   http://www.msexchangegeek.com/the-microsoft-exchange-administrator-has-made-a-change-that-requires-you-quit-and-restart-outlook/   Exchange Team no longer recommend Windows NLB for Client Access Server Load Balancing http://www.stevieg.org/2010/11/exchange-team-no-longer-recommend-windows-nlb-for-client-access-server-load-balancing/   Outlook Intermittent Disconnections – Exchange 2010 http://exchangeserverinfo.net/2013/06/outlook-intermittent-disconnections-exchange-2010/ Troubleshooting Outlook RPC dialog boxes - revisited http://blogs.technet.com/b/exchange/archive/2008/05/02/3405434.aspx

E14: Update OAB from CAS

  Update-FileDistributionService –Identity CAS_server –Type OAB

E14 : RPCPing

    rpcping -t ncacn_http -o Rpcproxy=qy-cas03.msft.corp.com -P "qy.user3,MSFT,MSFT8899" -H 1 -F 3 -a connect -u 9 -v 3 -s qy-mbx01.MSFT.corp.com -I "qy.user3,MSFT,MSFT8899" -e 6001

E14–IIS settings

Default Client Access server IIS authentication and SSL settings http://technet.microsoft.com/en-us/library/gg247612(v=exchg.141).aspx

E14–Bulk Create Mail Contact & Set-Contact

Image
  http://community.office365.com/en-us/w/exchange/579.aspx     Get-Contact | Export-Csv c:\temp\contact.csv Get-MailContact | Export-Csv c:\temp\Mailcontact.csv   [PS] Import-Csv .\Contact_Source.csv | % {New-MailContact -Name $_.Name -DisplayName $_.DisplayName -ExternalEmailAddress $_.ExternalEmailAddress -Alias $_.Alias -PrimarySmtpAddress $_.PrimarySMTPAddress -OrganizationalUnit "Contacts" -WhatIf }   [PS] >$Contacts = Import-Csv .\Contact_final.csv [PS] >$Contacts | foreach {Set-Contact $_.Name -Company $_.Company -Department $_.Department -Office $_.Office -Phone $_.Phone }

E14– Query Mailbox non default settings

Image
    [PS] Get-Mailbox -organization Qisdaer -ResultSize unlimited |Where{($_.RecipientLimits -ne 'unlimited')} | f t Name, RecipientLimits [PS] Get-Mailbox -organization Qisdaer -ResultSize unlimited |Where{($_.MaxSendSize -ne 'unlimited')} | ft Name, MaxSendSize   [PS] Get-DistributionGroup   | ft Name, *Accept*