Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exchange/exchange-ps/exchange/New-InboxRule.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi

### Example 1
```powershell
New-InboxRule "CheckActionRequired" -MyNameInToBox $true -FlaggedForAction Any -MarkImportance "High"
New-InboxRule -Mailbox [email protected] -Name "CheckActionRequired" -MyNameInToBox $true -FlaggedForAction Any -MarkImportance "High"
```

This example raises the message importance to High if the mailbox owner is in the To field. In addition, the message is flagged for action.
Expand Down
2 changes: 1 addition & 1 deletion exchange/exchange-ps/exchange/Set-InboxRule.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi

### Example 1
```powershell
Set-InboxRule ProjectContoso -MarkImportance "High"
Set-InboxRule -Mailbox [email protected] -Name ProjectContoso -MarkImportance "High"
```

This example modifies the action of the existing Inbox rule ProjectContoso. The MarkImportance parameter is used to mark the message with high importance.
Expand Down