Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Exchange powershell notes

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Query all disabled domain accounts and transfer them to an OU in batches

get-aduser -Filter * -SearchBase "DC=contoso,DC=com" | foreach {if ($_.enabled -eq $false){$_.ObjectGUID} } | Move-ADObject -TargetPath "OU=deluser,OU=delusers,DC=Contoso,DC=com"

Count the number of user mailboxes in ExchangeDB database

Get-Mailbox -ResultSize unlimited | Group-Object -Property:Database | Select Name,Count

View the usage of user mailboxes in a database (for example, database name is database01), and arrange them in order of mailbox size. Replace database with server to query server mail statistics.

Get-Mailbox -Database "IT" |Get-MailboxStatistics | Sort TotalItemSize |ftDisplayName,ItemCount,TotalItemSize

Count the sending situation of a HUB server in a time period:

Get-MessageTrackingLog-ResultSize unlimited -Start "07/01/2012" -End "07/13/2012"-EventId "send" -Server "srvbj06" |Measure-Object

ResultSizeunlimited parameter is Display All.

Add Measure-Object to the sum of numeric attributes of the computed object and string objects. Remove it and it will be displayed one by one.

View existing Exchange 2010 database sizes

Get-MailboxDatabase -Status | ft ServerName,Name,DatabaseSize

Query the total number of boxes in a database or server

Get-Mailbox -database dbname | Measure-Object

Get-Mailbox -Server servername | Measure-Object

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report