Set-CsWebServer
Modifies one or more of the Web Server services used by Skype for Business Server. This cmdlet was introduced in Lync Server 2010.
Syntax
Set-CsWebServer
[[-Identity] <XdsGlobalRelativeIdentity>]
[-AppSharingPortCount <UInt16>]
[-AppSharingPortStart <UInt16>]
[-ExternalFqdn <Fqdn>]
[-ExternalHttpPort <UInt16>]
[-ExternalHttpsPort <UInt16>]
[-PrimaryHttpPort <UInt16>]
[-PrimaryHttpsPort <UInt16>]
[-ReachExternalPsomServerPort <UInt16>]
[-ReachPrimaryPsomServerPort <UInt16>]
[-UserServer <String>]
[-Force]
[-WhatIf]
[-Confirm]
[-InternalFqdn <Fqdn>]
[-PublishedExternalHttpPort <UInt16>]
[-PublishedExternalHttpsPort <UInt16>]
[-PublishedPrimaryHttpPort <UInt16>]
[-PublishedPrimaryHttpsPort <UInt16>]
[-McxSipExternalListeningPort <UInt16>]
[-McxSipPrimaryListeningPort <UInt16>]
[-RmWebSipExternalListeningPort <UInt16>]
[-RmWebSipPrimaryListeningPort <UInt16>]
[-SupportConferenceConsoleSipExternalListeningPort <UInt16>]
[-SupportConferenceConsoleSipPrimaryListeningPort <UInt16>]
[-UcwaSipExternalListeningPort <UInt16>]
[-UcwaSipPrimaryListeningPort <UInt16>]
[-MeetingRoomAdminPortalExternalListeningPort <UInt16>]
[-MeetingRoomAdminPortalInternalListeningPort <UInt16>]
[-UcapSipPrimaryListeningPort <UInt16>]
[-VxmlSipPrimaryListeningPort <UInt16>]
[<CommonParameters>]
Description
Skype for Business Server makes extensive use of Web servers and web services. For example, Address Book queries can be conducted using web services (the Address Book Query Web service). Skype for Business Server also hosts webpages that enable users to do such things as configure their dial-in conferencing personal identification number (PINs). Considering the important role played by Web servers and web services, it is critical that administrators know how these servers and services are configured. That information that can be returned using the following command:
Get-CsService -WebServer
There are also times where it is critical that administrators be able to change the way their Web servers are configured.
For example, you might need to modify the port used for external HTTP or HTTPS connections.
Port changes like these (and other modifications) can be made using the Set-CsWebServer
cmdlet.
Examples
-------------------------- Example 1 ------------------------
Set-CsWebServer -Identity "WebServer:atl-cs-001.litwareinc.com" -PrimaryHttpPort 89
The command shown in Example 1 changes the PrimaryHttpPort for a single Web Service pool: the pool with the Identity WebServer:atl-cs-001.litwareinc.com. In this example, the port is changed to port number 89.
-------------------------- Example 2 ------------------------
Get-CsService -WebServer | ForEach-Object {Set-CsWebServer -Identity $_.Identity -PrimaryHttpPort 89}
The command shown in Example 2 is a variation of the command shown in Example 1.
In this case, the PrimaryHttpPort is modified for all the Web Service pools in the organization.
To do this, the command starts off by using the Get-CsService
cmdlet and the WebServer parameter to return a collection of all the Web Services pools currently in use.
This collection is then piped to the ForEach-Object
cmdlet, which takes each pool in the collection and sets the PrimaryHttpPort to port 89.
The data must be piped to the ForEach-Object
cmdlet because the Set-CsWebServer
cmdlet cannot accept pipelined data itself.
Parameters
-AppSharingPortCount
Total number of ports allocated for application sharing. The actual ports to be opened will start with the value configured for AppSharingPortStart and continue through the number of ports specified for AppSharingPortCount. For example, if the AppSharingPortStart is set to 60000 and the AppSharingPortCount is set to 100 then ports 60000 through 60099 will be used for application sharing. The default value is 16383.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-AppSharingPortStart
First port in the range of ports allocated for application sharing. The default value is 49152.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-Confirm
Prompts you for confirmation before executing the command.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-ExternalFqdn
Fully qualified domain name (FQDN) used by people connecting to the Web Services pool from outside the internal network. For example:
-ExternalFqdn "www.litwareinc.com"
Type: | Fqdn |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-ExternalHttpPort
Port number for external web connections made using the HTTP protocol. The default value is port 8080.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-ExternalHttpsPort
Port number for external web connections made using the HTTPS protocol. The default value is port 4443.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-Force
Suppresses the display of any non-fatal error message that might arise when running the command.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-Identity
Unique identifier for the Web Services pool. For example:
-Identity "WebServer:atl-cs-001.litwareinc.com"
Note that you can leave off the prefix "WebServer:" when specifying a Web server. For example:
-Identity "atl-cs-001.litwareinc.com"
Type: | XdsGlobalRelativeIdentity |
Position: | 2 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-InternalFqdn
Fully qualified domain name for the Mobility Services. The InternalFqdn should only be accessible from inside the organization's firewall.
Type: | Fqdn |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-McxSipExternalListeningPort
External listening port for the Mobility service.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-McxSipPrimaryListeningPort
Internal listening port for the Mobility service.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-MeetingRoomAdminPortalExternalListeningPort
External listening port for the Skype for Business Meeting Room Admin Portal. The Admin Portal is a web-based utility that makes it easy for administrator to manage meeting rooms.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Skype for Business Server 2015, Skype for Business Server 2019 |
-MeetingRoomAdminPortalInternalListeningPort
Internal listening port for the Skype for Business Meeting Room Admin Portal. The Admin Portal is a web-based utility that makes it easy for administrator to manage meeting rooms.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Skype for Business Server 2015, Skype for Business Server 2019 |
-PrimaryHttpPort
Port number for internal web connections made using the HTTP protocol. The default value is port 80.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-PrimaryHttpsPort
Port number for internal web connections made using the HTTPS protocol. The default value is port 443.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-PublishedExternalHttpPort
Port number for the published external HTTP port.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-PublishedExternalHttpsPort
External port for the Mobility service.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-PublishedPrimaryHttpPort
Port number for the published primary HTTP port.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-PublishedPrimaryHttpsPort
Internal port for the Mobility service.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-ReachExternalPsomServerPort
External port number for the Persistent Shared Object Model Protocol, a Microsoft protocol used for conferences. The default port number is 8061.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-ReachPrimaryPsomServerPort
Primary port number for the Persistent Shared Object Model (PSOM) Protocol, a Microsoft protocol used for conferences. The default port number is 8060.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-RmWebSipExternalListeningPort
External listening port for the Persistent Chat Room Management Web App. This application is available only if you have installed and configured Persistent Chat.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-RmWebSipPrimaryListeningPort
Primary listening port for the Persistent Chat Room Management Web App. This application is available only if you have installed and configured Persistent Chat.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-SupportConferenceConsoleSipExternalListeningPort
Listening port for the Support Conferencing Console. The default value is 6007.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-SupportConferenceConsoleSipPrimaryListeningPort
Port used by the Office 365 Support Conference Console. This console is used by support personnel to troubleshoot problems with conferences and online meetings.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-UcapSipPrimaryListeningPort
Primary listening port for the UCAP (Unified Communication Application Platform).
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Skype for Business Server 2015, Skype for Business Server 2019 |
-UcwaSipExternalListeningPort
External SIP listening port for the Unified Communications Web API (UCWA). The default value is 5088.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-UcwaSipPrimaryListeningPort
Internal SIP listening port for the Unified Communications Web API (UCWA). The default value is 5089.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-UserServer
Service ID for the User Services pool associated with the Web Services pool. For example:
-UserServer "UserServer:atl-cs-001.litwareinc.com"
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
-VxmlSipPrimaryListeningPort
This parameter is not currently used with Skype for Business Server.
Type: | UInt16 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Skype for Business Server 2015, Skype for Business Server 2019 |
-WhatIf
Describes what would happen if you executed the command without actually executing the command.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | Lync Server 2010, Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019 |
Inputs
None.
The Set-CsWebServer
cmdlet does not accept pipelined input.
Outputs
None.
Instead, the Set-CsWebServer
cmdlet modifies instances of the Microsoft.Rtc.Management.Xds.DisplayWebServer object.