Forum
Merhaba
kullanıcı ve tüm kullanıcıalrın mailbox boyutunu exchange 2010 nasılsorgularız
Exchange Powershell' i run as administrator olarak çalıştırıp, aşağıda ki komutu çalıştırın. Database name' i kendi db ismini girmeniz lazım. Daha sonra c:\ dizinine MBX_Repor diye bir excel tablosu olşacak.
Get-Mailbox -Database "DATABESE NAME" | sort-object | Select-Object name,alias,servername,ProhibitSendQuota,IssueWarningQuota,MaxReceiveSize,MaxSendSize,DisplayName,Database,PrimarySmtpAddress,ProhibitSendReceiveQuota,@{n="Size(KB)";e = {$MBXstat = Get-MailboxStatistics $_.name; $MBXstat.totalItemsize}},@{n="Items"; e = {$MBXstat = Get-MailboxStatistics $_.name ; $MBXstat.itemcount; $MBXstat.storageLimitStatus}} | Export-Csv C:\MBX_Report.csv
hocam bunu tek bir kullanıcı icin nasıl yaparız
Get-MailboxStatistics -Identity “USERNAME” |ft DisplayName, TotalitemSize, ItemCount, StorageLimitStatus
Hocam aşağıdaki hatayı verdi
[PS] C:\Windows\system32>Get-Mailbox -Database "db_adanan" | sort-object | Select-Object name,alias,servername,Prohi
bitSendQuota,IssueWarningQuota,MaxReceiveSize,MaxSendSize,DisplayName,Database,PrimarySmtpAddress,ProhibitSendReceiveQuo
ta,@{n="Size(KB)";e = {$MBXstat = Get-MailboxStatistics $_.name; $MBXstat.totalItemsize}},@{n="Items"; e = {$MBXstat = G
et-MailboxStatistics $_.name ; $MBXstat.itemcount; $MBXstat.storageLimitStatus}} | Export-Csv C:\MBX_Report.csv
WARNING: The user hasn't logged on to mailbox 'edefter' ('cb5d5493-0ba2-458a-9990-36a58c43843c'), so there is no data
to return. After the user logs on, this warning will no longer appear.
WARNING: The user hasn't logged on to mailbox 'edefter' ('cb5d5493-0ba2-458a-9990-36a58c43843c'), so there is no data
to return. After the user logs on, this warning will no longer appear.
WARNING: The user hasn't logged on to mailbox 'ik stajer' ('9be0eaca-5834-4b99-8cc7-77a733fa891d'), so there is no data
to return. After the user logs on, this warning will no longer appear.
WARNING: The user hasn't logged on to mailbox 'ik stajer' ('9be0eaca-5834-4b99-8cc7-77a733fa891d'), so there is no data
to return. After the user logs on, this warning will no longer appear.
[PS] C:\Windows\system32>
Rapor oluşmuş. C:\ altını kontrol edin.
Merhaba,
Şu komut dener misin?