Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


Check-in [0d04d7129a]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Another basic exchange script: mailbox stats
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 0d04d7129a7968d2c45dd1faa74b5029d304c856
User & Date: mario 2017-09-24 08:22:10
Context
2017-09-24
08:46
Fix UTF8 encoding check-in: 561b07f0bf user: mario tags: trunk
08:22
Another basic exchange script: mailbox stats check-in: 0d04d7129a user: mario tags: trunk
08:20
Add some depends: (e.g. funcs_base or wpf, but no e.g. bin:netsh yet) check-in: c9c0a40135 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added tools/exchange/mboxstat.ps1.











































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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