Powershell统计一周内创建的账户和邮箱
生活随笔
收集整理的這篇文章主要介紹了
Powershell统计一周内创建的账户和邮箱
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
統(tǒng)計(jì)一周內(nèi)創(chuàng)建的AD用戶(hù)
Get-ADUser -Filter * -Properties * | where{$_.WhenCreated -gt (get-date).adddays(-7)}統(tǒng)計(jì)一周內(nèi)創(chuàng)建的Exchange郵箱
Get-Mailbox -resultsize unlimited | where{$_.WhenCreated -gt (get-date).adddays(-7)}| ft Name,whenCreated -Autosize統(tǒng)計(jì)一周內(nèi)特定數(shù)據(jù)庫(kù)中創(chuàng)建的Exchange郵箱
Get-MailboxDatabase DB* | Get-Mailbox-resultsize unlimited | where {$_.WhenCreated -gt (get-date).adddays(-7)}| ftName,whenCreated -Autosize歡迎掃描關(guān)注本人的微信公眾號(hào),獲取更多IT資訊:
總結(jié)
以上是生活随笔為你收集整理的Powershell统计一周内创建的账户和邮箱的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 浅谈iOS 开发中的界面通信
- 下一篇: 34.11. 视图、存储过程、函数