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 example gets an application instance by name using Find-CsOnlineApplicationInstance cmdlet. We then use the AAD ObjectId of that application instance to create an application endpoint callable entity.
69
69
70
-
### -------------------------- Example 5 --------------------------
Suppresses the "Please leave a message after the tone" system prompt when transferring to shared voicemail.
155
+
156
+
```yaml
157
+
Type: SwitchParameter
158
+
Parameter Sets: (All)
159
+
Aliases:
160
+
Applicable: Skype for Business Online
161
+
162
+
Required: False
163
+
Position: Named
164
+
Default value: None
165
+
Accept pipeline input: False
166
+
Accept wildcard characters: False
167
+
```
168
+
153
169
### CommonParameters
154
170
This cmdlet supports the common parameters: `-Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).`
Controls the attendees who can attend a webinar meeting. The default is EveryoneInCompany, meaning that internal accounts and guest accounts can attend.
919
+
Controls the attendees who can attend a webinar meeting. The default is Everyone, meaning that everyone can register. If you want to restrict registration to internal accounts set the value to 'EveryoneInCompany'.
920
920
921
921
Possible values:
922
922
923
923
- Everyone
924
924
- EveryoneInCompany
925
925
926
-
If you want to organize public webinars, set the value to Everyone.
@@ -96,7 +98,7 @@ In Example 2, the maximum validity period for all the Web Services configuration
96
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:".
97
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.
98
100
99
-
### -------------------------- Example 3 ------------------------
@@ -107,7 +109,7 @@ To do this, the `Get-CsWebServiceConfiguration` cmdlet is called without any par
107
109
This collection is then piped to the `Where-Object` cmdlet, which selects only those settings where the EnableGroupExpansion property is equal to True.
108
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.
109
111
110
-
### -------------------------- Example 4 ------------------------
112
+
### Example 4
111
113
112
114
```powershell
113
115
Set-CsWebServiceConfiguration -Identity global -ShowDownloadCommunicatorAttendeeLink $True
@@ -116,7 +118,7 @@ Set-CsWebServiceConfiguration -Identity global -ShowDownloadCommunicatorAttendee
116
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.
117
119
This is done by including the ShowDownloadCommunicatorAttendeeLink parameter and setting the parameter value to $True.
118
120
119
-
### -------------------------- Example 5 --------------------------
121
+
### Example 5
120
122
121
123
```powershell
122
124
$x = New-CsWebOrigin -Url "https://fabrikam.com"
@@ -132,7 +134,7 @@ The second command in the example uses the `Set-CsWebServiceConfiguration` cmdle
132
134
The syntax @{Add=$x} adds the domain to any domains already in the collection of domains authorized for cross-domain scripting.
133
135
To replace the existing collection with just https://fabrikam.com use the syntax @{Replace=$x}.
134
136
135
-
### -------------------------- Example 6 --------------------------
@@ -155,7 +157,7 @@ To remove the second domain (index number 1) from the CrossDomainAuthorizationLi
155
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.
156
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.
157
159
158
-
### -------------------------- Example 7 --------------------------
0 commit comments