Skip to content

Commit bd0e0f1

Browse files
authored
Update Get-CsAllowedDomain.md
Removed illegal code block from Example 4
1 parent 656cd8e commit bd0e0f1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

skype/skype-ps/skype/Get-CsAllowedDomain.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Conversely, the blocked list represents domains that users are expressly forbidd
4141

4242
The Get-CsAllowedDomain cmdlet provides a way for you to return information about all the domains on the allowed domains list.
4343

44-
4544
## EXAMPLES
4645

4746
### -------------------------- Example 1 --------------------------
@@ -78,10 +77,7 @@ Get-CsAllowedDomain | Where-Object {$_.ProxyFqdn -eq $Null}
7877
In Example 4, the Get-CsAllowedDomain cmdlet and the Where-Object cmdlet are used to return a collection of all the domains where no value has been entered for the ProxyFqdn property.
7978
To carry out this task, the Get-CsAllowedDomain cmdlet is first called without any additional parameters in order to return a collection of all the allowed domains.
8079
This collection is then piped to the Where-Object cmdlet, which selects only those allowed domains where the ProxyFqdn property is equal to a null value; a null value means that no value has been entered for ProxyFqdn.
81-
To find all the domains that have a value of some kind configured for the ProxyFqdn property, use this syntax instead:
82-
```
83-
Where-Object {$_.ProxyFqdn -ne $Null}
84-
```
80+
To find all the domains that have a value of some kind configured for the ProxyFqdn property, use this syntax instead: `Where-Object {$_.ProxyFqdn -ne $Null}`.
8581

8682
### -------------------------- Example 5 --------------------------
8783
```
@@ -92,7 +88,6 @@ Example 5 returns all the allowed domains that have their health status checked
9288
To do this, the Get-CsAllowedDomain cmdlet is first used to return a collection of all the domains on the allowed domains list.
9389
That collection is then piped to the Where-Object cmdlet, which picks out only those domains where the MarkForMonitoring property is equal to True.
9490

95-
9691
## PARAMETERS
9792

9893
### -Identity

0 commit comments

Comments
 (0)