Check-in [c70309ceb4]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Trivial Get-InboxRule script |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c70309ceb4cd766abf9df87db0a4de72 |
| User & Date: | mario 2018-05-16 18:15:44 |
Context
|
2018-05-16
| ||
| 18:16 | REGEDIT starter which key-macro loads remote machine right away. check-in: b70b97c785 user: mario tags: trunk | |
| 18:15 | Trivial Get-InboxRule script check-in: c70309ceb4 user: mario tags: trunk | |
| 18:15 | NETLOGON registry change to enable WinLogon debugging check-in: 7d3b522d61 user: mario tags: trunk | |
Changes
Added tools/exchange/mboxrules.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.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
|