Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


Artifact [75b7331e82]

Artifact 75b7331e82e94bd6fc0667f1534f34b6cdc3656a:

  • File tools/exchange/mboxstat.ps1 — part of check-in [0d04d7129a] at 2017-09-24 08:22:10 on branch trunk — Another basic exchange script: mailbox stats (user: mario size: 519)

# api: multitool
# version: 0.1
# title: Mailbox stats
# description: Get-MailboxFolderStatistics
# type: inline
# category: exchange
# depends: funcs_base
# param: username
# hidden: 0
# key: m4|mboxstats?
# status: beta
# config: -
#
# Show folders and sizes of mailbox


Param($username = (Read-Host "Username"));

Import-ExchangeSession
Get-Mailbox -Identity $username | Get-MailboxFolderStatistics | FT -Prop FolderPath, FolderType, FolderSize | Out-String
#Get-InboxRule -Identity $username