Exchange 命令行管理

Powershell管理Exchange
管理Exchange:安裝Exchange的管理工具
遠程管理本地Exchange服務器:必須在管理計算機中安裝Exchange 管理工具
◊ 當前計算機在域環境中,而且使用域用戶登錄(推薦)
◊ Import-Module "C:\Program Files\Microsoft\Exchange Server\V15\bin\RemoteExchange.ps1"
◊ Connect-ExchangeServer -Auto -ClientApplication:managementshell
◊ 當前計算機工做組狀態
◊ Import-Module "C:\Program Files\Microsoft\Exchange Server\V15\bin\RemoteExchange.ps1"
◊ Connect-ExchangeServer -Auto -ClientApplication:managementshell
◊ $exchcred = Get-Credential
◊ $exchsession = New-PSSession -ConfigurationName Microsoft.exchange -ConnectionUri "https://lon-ex1.adatum.com/Powershell/" -Authentication Kerberos -Credential $exchcred
◊ Import-PSSession $exchsession
Exchange Online 管理
https://support.office.com/zh-cn/article/%e5%b0%86-powershell-%e8%bf%9e%e6%8e%a5%e5%88%b0-office-365-%e6%9c%8d%e5%8a%a1-06a743bb-ceb6-49a9-a61d-db4ffdf54fa6?ui=zh-CN&rs=zh-CN&ad=CN
經常使用命令
對象管理














shell

服務器管理命令

    示範
            Get-MailboxDatabase | Set-MailboxDatabase –ProhibitSendQuota 5GB 
            Get-Mailbox –Database DB1 | New-MoveRequest –TargetDatabase DB2
            Get-RemoteDomain | ForEach-Object {New-SendConnector –Internet –Name $($_.Name) – AddressSpaces $($_.DomainName)} 
            Note 
            Get-MailboxDatabaseCopyStatus –Server LON-EX1 | ? {$_.Status –eq ‘Mounted’} | MoveActiveMailboxDatabase –ActivateOnServer LON-EX2 
            Get-OwaVirtualDirectory | Set-OwaVirtualDirectory –ExternalUrl https://mail.adatum.com/owa
    經常使用測試命令

監控命令示範
        Get-MailboxDatabaseCopyStatus * 
        Get-MailboxDatabaseCopyStatus –Server LON-EX1 -Active
        Get-EventLog –LogName Application –Source 「MSExchange Common」 –EntryType Error –Newest 10
        Get-EventLog –LogName Application –Source 「MSExchange Common」 –EntryType Error –Newest 10 –Computer LON-EX1, LON-EX2

Exchange 命令行管理

相關文章
相關標籤/搜索