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
@@ -98,7 +98,7 @@ In Example 2, the maximum validity period for all the Web Services configuration
98
98
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:".
99
99
This collection is then piped to the `Set-CsWebServiceConfiguration` cmdlet, which takes each item in the collection and changes the MaxValidityPeriodHours property to 16.
100
100
101
-
### -------------------------- Example 3 ------------------------
@@ -109,7 +109,7 @@ To do this, the `Get-CsWebServiceConfiguration` cmdlet is called without any par
109
109
This collection is then piped to the `Where-Object` cmdlet, which selects only those settings where the EnableGroupExpansion property is equal to True.
110
110
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.
111
111
112
-
### -------------------------- Example 4 ------------------------
112
+
### Example 4
113
113
114
114
```powershell
115
115
Set-CsWebServiceConfiguration -Identity global -ShowDownloadCommunicatorAttendeeLink $True
@@ -118,7 +118,7 @@ Set-CsWebServiceConfiguration -Identity global -ShowDownloadCommunicatorAttendee
118
118
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.
119
119
This is done by including the ShowDownloadCommunicatorAttendeeLink parameter and setting the parameter value to $True.
120
120
121
-
### -------------------------- Example 5 --------------------------
121
+
### Example 5
122
122
123
123
```powershell
124
124
$x = New-CsWebOrigin -Url "https://fabrikam.com"
@@ -134,7 +134,7 @@ The second command in the example uses the `Set-CsWebServiceConfiguration` cmdle
134
134
The syntax @{Add=$x} adds the domain to any domains already in the collection of domains authorized for cross-domain scripting.
135
135
To replace the existing collection with just https://fabrikam.com use the syntax @{Replace=$x}.
136
136
137
-
### -------------------------- Example 6 --------------------------
@@ -157,7 +157,7 @@ To remove the second domain (index number 1) from the CrossDomainAuthorizationLi
157
157
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.
158
158
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.
159
159
160
-
### -------------------------- Example 7 --------------------------
0 commit comments