Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


Artifact [01428321ad]

Artifact 01428321ad23a42cf823fd02ecd90e2a59f5a883:

  • File tools/exchange/mboxrules.ps1 — part of check-in [c70309ceb4] at 2018-05-16 18:15:44 on branch trunk — Trivial Get-InboxRule script (user: mario size: 393)

# api: multitool
# version: 0.2
# title: Inbox rules
# description: Get-InboxRule
# type: inline
# category: exchange
# param: username
# hidden: 0
# key: m15|mboxrules?
# status: beta
# config: -
#
# Show server-side rules


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

Import-ExchangeSession
Get-InboxRule -Mailbox $username | FL Name,Enabled,Priority,Description