Skip to content

Commit ef379fd

Browse files
authored
Removed lines of hyphens from headings
1 parent 8fdb8fe commit ef379fd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

skype/skype-ps/skype/Set-CsWebServiceConfiguration.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Alternatively, you can modify the property values for an existing collection by
7979

8080
## EXAMPLES
8181

82-
### -------------------------- Example 1 ------------------------
82+
### Example 1
8383

8484
```powershell
8585
Set-CsWebServiceConfiguration -Identity site:Redmond -EnableGroupExpansion $True
@@ -88,7 +88,7 @@ Set-CsWebServiceConfiguration -Identity site:Redmond -EnableGroupExpansion $True
8888
Example 1 enables group expansion for the Web Services configuration settings applied to the Redmond site (-Identity site:Redmond).
8989
This is done by including the EnableGroupExpansion property and setting the parameter value to True.
9090

91-
### -------------------------- Example 2 ------------------------
91+
### Example 2
9292

9393
```powershell
9494
Get-CsWebServiceConfiguration -Filter "site:*" | Set-CsWebServiceConfiguration -MaxValidityPeriodHours 16
@@ -98,7 +98,7 @@ In Example 2, the maximum validity period for all the Web Services configuration
9898
To carry out this task, the `Get-CsWebServiceConfiguration` cmdlet is called along with the Filter parameter; the filter value "site:*" limits the returned data to settings where the Identity begins with the characters "site:".
9999
This collection is then piped to the `Set-CsWebServiceConfiguration` cmdlet, which takes each item in the collection and changes the MaxValidityPeriodHours property to 16.
100100

101-
### -------------------------- Example 3 ------------------------
101+
### Example 3
102102

103103
```powershell
104104
Get-CsWebServiceConfiguration | Where-Object {$_.EnableGroupExpansion -eq $True} | Set-CsWebServiceConfiguration -MaxGroupSizeToExpand 400
@@ -109,7 +109,7 @@ To do this, the `Get-CsWebServiceConfiguration` cmdlet is called without any par
109109
This collection is then piped to the `Where-Object` cmdlet, which selects only those settings where the EnableGroupExpansion property is equal to True.
110110
In turn, this filtered collection is piped to the `Set-CsWebServiceConfiguration` cmdlet, which takes each item in the collection and sets the value of the MaxGroupSizeToExpand property to 400.
111111

112-
### -------------------------- Example 4 ------------------------
112+
### Example 4
113113

114114
```powershell
115115
Set-CsWebServiceConfiguration -Identity global -ShowDownloadCommunicatorAttendeeLink $True
@@ -118,7 +118,7 @@ Set-CsWebServiceConfiguration -Identity global -ShowDownloadCommunicatorAttendee
118118
The command shown in Example 4 shows how the global Web Services settings can be configured so that any person joining a meeting using a client application other than Skype for Business Server will first be shown a link to a site where he or she can download Skype for Business Web App.
119119
This is done by including the ShowDownloadCommunicatorAttendeeLink parameter and setting the parameter value to $True.
120120

121-
### -------------------------- Example 5 --------------------------
121+
### Example 5
122122

123123
```powershell
124124
$x = New-CsWebOrigin -Url "https://fabrikam.com"
@@ -134,7 +134,7 @@ The second command in the example uses the `Set-CsWebServiceConfiguration` cmdle
134134
The syntax @{Add=$x} adds the domain to any domains already in the collection of domains authorized for cross-domain scripting.
135135
To replace the existing collection with just https://fabrikam.com use the syntax @{Replace=$x}.
136136

137-
### -------------------------- Example 6 --------------------------
137+
### Example 6
138138

139139
```powershell
140140
$x = Get-CsWebServiceConfiguration -Identity "site:Redmond"
@@ -157,7 +157,7 @@ To remove the second domain (index number 1) from the CrossDomainAuthorizationLi
157157
Note that command 2 removes the domain from the copy of the Redmond site stored in the variable $x and not from the site itself.
158158
To actually remove the domain from the Redmond site, the third command in the example uses the `Set-CsWebServiceConfiguration` cmdlet and the Instance parameter to overwrite settings for the Redmond site with the settings stored in $x.
159159

160-
### -------------------------- Example 7 --------------------------
160+
### Example 7
161161

162162
```powershell
163163
Set-CsWebServiceConfiguration -Identity "site:Redmond" - CrossDomainAuthorizationList $Null

0 commit comments

Comments
 (0)