You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This examples removes a specific ARC sealer from the list. If, after removing this entry from the list, no other ARC Sealers exist, using the " " works around the below error if $DomainsToRemove is empty
93
+
94
+
```powershell
95
+
(Cannot bind argument to parameter 'ArcTrustedSealers' because it is an empty array.)
96
+
```
97
+
76
98
## PARAMETERS
77
99
78
100
### -Identity
@@ -99,9 +121,11 @@ The ArcTrustedSealers parameter specifies the domain name of the ARC sealers tha
99
121
100
122
The domain name must match the domain that's shown in the `d` tag in the **ARC-Seal** and **ARC-Message-Signature** headers in affected email messages (for example, fabrikam.com). You can use Outlook to see these headers.
101
123
102
-
To replace the existing list of ARC sealers with the values you specify, use the syntax `Domain1,Domain2,...DomainN`. To preserve existing values, be sure to include the file types that you want to keep along with the new values that you want to add.
124
+
To replace the existing list of ARC sealers with the values you specify, use the syntax `Domain1,Domain2,...DomainN`. To preserve existing values, be sure to include the entries that you want to keep along with the new values that you want to add.
125
+
126
+
To add or remove values without affecting the other entries, see the Examples section in this topic.
103
127
104
-
To add or remove file types without affecting the other file type entries, see the Examples section in this topic.
128
+
To completely clear the list, set this value to " " (a string with a single whitespace character)
0 commit comments