Query the number of messages sent out of the mail server from a mailbox
Get-messagetrackinglog-resultsize Unlimited-start "01/05/2016"-end "01/06/2016"-eventid "Send" | Group-object-property:sender | Select Name,count | Sort Count-descending | More
Find out if your email address is valid through the following three URLs
http://www.verifyemailaddress.org/
Http://www.email-unlimited.com/tools/verify-email.aspx
http://verifv-email.org/
Statistics mail send and receive commands
Send statistics
Get-messagetrackinglog-resultsize Unlimited-start "01/01/2015"-end "12/31/2015"-eventid "Send" | Measure-object
Receive statistics
Get-messagetrackinglog-resultsize Unlimited-start "01/01/2015"-end "12/31/2015"-eventid "Receive" | Measure-object
Count the number of incoming and outgoing data from a single server
Get-messagetrackinglog-resultsize Unlimited-start "12/20/2015"-end "01/10/2016"-eventld "send"-Server "exmbx01" | Measure-object | Select Name,count
Count the number of messages per user and the last log in time
Get-mailbox | Get-mailboxstatistics
View all users ' information about the database mailbox quota
Get-mailbox
Statistics on the delivery of a single hub server over a time period
Get-messagetrackinglog-resultsize Unlimited-start "12/20/2015"-end "01/10/2016"-eventld "send"-server "exmbx01" | Measure-object
The resultsize unlimited parameter is displayed for all.
Measure-object is the numeric attribute of the computed object and the sum of the string objects. If you remove it, it will be displayed.
View the number of mailboxes stored per server
Get-mailbox-resultsize Unlimited | Group-object-property:servername | Select Name,count
View the total number of mailboxes across your organization
Get-mailbox-resultsize Unlimited | Group-object-property:alias | Group-object-property:count | Select Count
View the number of mailboxes per mailbox store store
Get-mailbox-resultsize Unlimited | Group-object-property:database | Select Name,count
Query the number of mailbox allocations in each OU
Get-mailbox-resultsize Unlimited | Group-object-property:organizationunit | Select Name,count
Export a specified server for a specified time all users send and receive mailing lists and mail delivery times
Get-messagetrackinglog-resultsize Unlimited-start "12/20/2015"-end "01/10/2016"-eventid "send"-Server "exmbx02" | Select-object timestamp,eventld,sender,{$_. Recipients},messagesubject | Export-csv-path D:\003.csv-Encoding "UTF8"
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/83/E5/wKiom1d_SIqAy_h0AABUALh_kNI406.jpg "/>
Statistics users send and receive information
Get-messagetrackinglog-server "Server"-resultsize unlimited-start "01/26/2016 16:30:00"-end "01/26/2016 19:00:00"-Event Id "Receive"-sender Sender | FL >d:\log\01272.txt
User Mailbox Capacity settings:
View the current mailbox capacity size for a single user (e.g., Niuzhihui)
Get-mailbox niuzhihui| FL issuewarningquota,prohibitsendquota,prohibitsendreceivequota,usedatabasequotadefaults
Issuewarningquota indicates the warning size
Prohibitsendquota indicates prohibit send size
Prohibitsendreceivequota indicates prohibit send and receive size
Usedatabasequotadefaults indicates whether to follow the default configuration of the database in which it resides
regardless of how the three quota system is set, as long as " The boolean value of Usedatabasequotadefaults "True", The actual quota size of the user's mailbox will follow the default configuration value of the database in which it resides. Unless the Boolean value is "False", the individual setting values for the user's mailbox are valid.
Expand User mailbox quotas separately (e.g. Niuzhihui) to 50G
-
S Et-mailbox Niuzhihui-issuewarningquota 45gb-prohibitsendquota 49GB-PROHIBITSENDRECEIVEQUOTA50GB- Usedatabasequotadefaults $false
-
" usedatabasequotadefaults "The value of the parameter must be set to" false
restore the mailbox capacity quota for "Niuzhihui" to conform to the unified default configuration by simply " usedatabasequotadefaults<s
This article from "Nuzhihai" blog, reproduced please contact the author!
Exchange2013 operation and maintenance of common command finishing (11)