Skip to content

Commit e58862f

Browse files
authored
Merge pull request #12615 from jprknight/master
Updating Set/New-InboxRule to specify the mailbox the inbox rule will be created in.
2 parents 2d0c6c1 + d56d6aa commit e58862f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exchange/exchange-ps/exchange/New-InboxRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
122122

123123
### Example 1
124124
```powershell
125-
New-InboxRule "CheckActionRequired" -MyNameInToBox $true -FlaggedForAction Any -MarkImportance "High"
125+
New-InboxRule -Mailbox [email protected] -Name "CheckActionRequired" -MyNameInToBox $true -FlaggedForAction Any -MarkImportance "High"
126126
```
127127

128128
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.

exchange/exchange-ps/exchange/Set-InboxRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
105105

106106
### Example 1
107107
```powershell
108-
Set-InboxRule ProjectContoso -MarkImportance "High"
108+
Set-InboxRule -Mailbox [email protected] -Name ProjectContoso -MarkImportance "High"
109109
```
110110

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

0 commit comments

Comments
 (0)