[This is preliminary documentation and is subject to change. Blank topics are included as placeholders.]

Creates a new Simple URL, which can then be added to a Simple URL configuration collection. Simple URLs make it easier for users to join meetings and conferences, as well as making it easier for Administrators to log on to the Communications Server Control Panel.

Syntax

New-CsSimpleUrl -Component <String> -Domain <String> [-ActiveUrl <String>] [-SimpleUrlEntry <PSListModifier>]

Parameters

Parameter Required Type Description

Component

Required

String

Indicates the type of Simple URL being created. Valid values are:

Meet – URL used for managing meetings.

Admin – URL that points to the Communications Server Control Panel.

Dialin – URL used for dial-in conferencing.

For example: -Component "Meet".

Domain

Required

String

SIP domain for the Simple URL. For example: -Domain "litwareinc.com".

SimpleUrlEntry

Optional

PS List Modifier

Collection of URLs for the specified component. For example, both https://meet.litwareinc.com and https://litwareinc.com/meet might be configured as URL entries for the Meet component. However, only one of those URLs can be (and must be) configured at the Active URL.

Simple URL entries must be created using the New-CsSimpleUrlEntry cmdlet.

ActiveUrl

Optional

String

Indicates the URL that is actually to be accessed by users. The SimpleUrlEntry property can contain multiple URLs, but only one of those URLs can be active at a given time. An error will occur if you try to set the ActiveUrl to a value not found in the SimpleUrlEntry property.

To assign an active URL, simply use the URL itself as the parameter value. For example: -ActiveUrl https://meet.litwareinc.com".

Detailed Description

In Office Communications Server 2007 R2, online meetings had URLs similar to this:

https://imdf.litwareinc.com/Join?uri=sip%3Akenmyer%40litwareinc.com%3Bgruu%3Bopaque%3Dapp%3Aconf%3Afocus%3Aid%3A125f95a0b0184dcea706f1a0191202a8&key=EcznhLh5K5t

Needless to say, URLs such as that one are not especially intuitive, and not easy to convey to someone else. The Simple URLs introduced in Microsoft Communications Server “14” help overcome those problems by providing users with URLs that look more like this:

https://meet.litwareinc.com/071200

Simple URLs are obviously an improvement over the URLs used in the previous version of Office Communications Server. However, Simple URLs are not automatically created for you; instead, you must configure the URLs yourself. (You must also create DNS records for each URL; see the Microsoft Communications Server “14” Deployment Guide for more information.)

Communications Server 2010 enables you to create three different Simple URLs:

Meet – Used for online meetings. You must have at least one Meet URL for each of your SIP domains.

Admin – Used to point administrators towards the Communications Server Control Panel.

Dialin – Used for dial-in conferencing.

Simple URLs are stored in Simple URL configuration collections. When you install Communications Server, a global collection is created for you; you can also create custom collections at the site scope. This gives you the ability to use different Simple URLs at each of your sites.

To add an actual URL to a Simple URL collection you must first create the URL using the New-CsSimpleUrl and the New-CsSimpleUrlEntry cmdlets. The New-CsSimpleUrlEntry cmdlet creates a URL entry: a URL (such as https://meet.litwareinc.com) that can be used as a Simple URL (for meeting, administration, or dial-in conferencing purposes). The object created by New-CsSimpleUrlEntry is added to the SimpleUrlEntry property of a new Simple URL. You must use a separate cmdlet to create the object because the SimpleUrlEntry property can hold multiple URLs. (However, only one such URL can be designated as the active URL. The active URL represents the actual URL used for meetings, administration, or dial-in conferencing.)

After creating a Simple URL entry, you then use the New-CsSimpleUrl to create an in-memory-only instance of a Simple URL, defining such things as the component (the type of Simple URL), the domain, the active URL, and all of the Simple URL entries. After you have created an object representing the Simple URL, that object can then be added to a new (or existing) Simple URL collection.

Return Types

New-CsSimpleUrl creates new instances of the Microsoft.Rtc.Management.WriteableConfig.SimpleUtl.SimpleUrl object.

Examples

Add code example

Copy Code
$urlEntry = New-CsSimpleUrlEntry -Url "https://meet.litwareinc.com"

$simpleUrl = New-CsSimpleUrl -Component "meet" -Domain "litwareinc.com" -SimpleUrl $urlEntry -ActiveUrl "https://meet.litwareinc.com"

Set-CsSimpleUrlConfiguration -Identity global -SimpleUrl @{Add=$simpleUrl}

The preceding example shows how a new URL can be added to an existing collection of Simple URLs. To begin with, the first command in the example uses New-CsSimpleUrlEntry to create a URL entry that points to https://meet.litwareinc.com; this URL entry is stored in a variable named $urlEntry.

In the second command, New-CsSimpleUrl is used to create an in-memory-only instance of a Simple URL. In this example, the URL Component is set to Meet; the domain is set to litwareinc.com; the ActiveUrl is set to https://meet.litwareinc.com; and the SimpleUrl property is set to $urlEntry, with $urlEntry being the URL entry created in the first command.

After the URL has been created (and stored in the object reference $simpleUrl) the final command in the example adds the new URL to the Simple URL collection for the Redmond site. This is done by using the –SimpleUrl parameter and the parameter value @{Add=$simpleUrl}. This syntax simply says that the URL stored in the object reference $simpleUrl should be added to the SimpleUrl property.