Office 365で完全なSMTPログをエクスポートする方法


10

Office 365では、SMTPログをエクスポートできますか?たぶんpowershellまたは他の方法で。

私の目標は、特定のドメインとの間で送受信されるすべてのメッセージの完全な概要を把握することです。


a complete overview of all messages send from and to a specific domain そういうものは、一般的に「クラウド」に行くときに諦めるものです。この種の完全な監視とロギングが必要な場合、または望んでいる場合は、クラウドサービスが本当に望んでいるものではない可能性があります。
HopelessN00b 2014年

3
Office365には、HopelessN00bと思われるものが他にもあります。:-)
ZEDA-NL 2014

回答:


12

オンラインのどこかで見つかった2つのスクリプトを組み合わせることで、なんとかそれを理解することができました。

これは仕事をしたスクリプトです。

#Accept input parameters 
Param( 
    [Parameter(Position=0, Mandatory=$true, ValueFromPipeline=$true)] 
    [string] $Office365Username, 
    [Parameter(Position=1, Mandatory=$true, ValueFromPipeline=$true)] 
    [string] $Office365Password 
) 

$OutputFile = "DetailedMessageStats.csv" 

Write-Host "Connecting to Office 365 as $Office365Username..." 

#Connect to Office 365 
$SecurePassword = $Office365Password | ConvertTo-SecureString -AsPlainText -Force 
$cred = New-Object System.Management.Automation.PSCredential -ArgumentList $Office365Username, $SecurePassword 
$session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://ps.outlook.com/powershell/" -Credential $cred -Authentication Basic -AllowRedirection  
Import-PSSession $session -AllowClobber 

Write-Host "Collecting Recipients..." 

#Collect all recipients from Office 365 
$Recipients = Get-Recipient -ResultSize Unlimited | select PrimarySMTPAddress 
$MailTraffic = @{} 
foreach($Recipient in $Recipients) 
{ 
    $MailTraffic[$Recipient.PrimarySMTPAddress.ToLower()] = @{} 
} 
$Recipients = $null 

#Collect Message Tracking Logs (These are broken into "pages" in Office 365 so we need to collect them all with a loop) 
$Messages = $null 
$Page = 1 
do 
{ 

    Write-Host "Collecting Message Tracking - Page $Page..." 
    $CurrMessages = Get-MessageTrace -StartDate (Get-Date).AddDays(-7) -EndDate (Get-Date)  -PageSize 5000  -Page $Page| Select Received,*Address,*IP,Subject,Status,Size

    if ($CurrMessages -ne $null)
      {
      $CurrMessages | Export-Csv C:\FILE-$PAGE.csv -NoTypeInformation
      }
    $Page++ 
    $Messages += $CurrMessages 


} 
until ($CurrMessages -eq $null) 

Remove-PSSession $session 

素晴らしいスクリプト!Office 365のインスタンスに接続するためにURLを変更する必要がありました。リモートPowerShell使用したExchange Onlineへの接続の情報を使用して、接続とスクリプトの残りの部分を処理し、ファイルを取得しました。
ジェイソンマッセイ2015年

-1

すべてのログを収集するために、数行を少し変更しました

$OutputFile = "c:\temp\SMTPlog"

$CurrMessages | Export-Csv "$($OutputFile)$($Page).csv" -NoTypeInformation

3
こんにちは、回答を編集して詳細を追加したり、他の回答にコメントを残したりしたいと思います。変更としてスクリプト全体を貼り付け、それに基づいたメモを残すことをお勧めします他の答えでは、それは完全な答えになります。
yagmoth555
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.