PrepAway - Latest Free Exam Questions & Answers

Which Windows PowerShell cmdlet should you run?

A company uses Skype for Business Online. You use contoso.com as the verified domain name for
the Office 365 tenant. Users conduct Skype online meetings. You add fabricam.com to the tenant
and configure the tenant to use this domain name.
You need to ensure that all Skype online meeting URLs contain the new domain name.
Which Windows PowerShell cmdlet should you run?

PrepAway - Latest Free Exam Questions & Answers

A.
Update-CsTenantMeetingUrl

B.
Set-CsMeetingConfiguration

C.
Set-CsUser

D.
Set-CsMeetingRoom

E.
New-CsSimpleURL

Explanation:

The New-CsSimpleURL command 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,
and also make it easier for administrators to log on to the Skype for Business Server Control Panel.
Example: The 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 the New-CsSimpleUrlEntry cmdlet to create a
URL entry that points to https://meet.fabrikam.com; this URL entry is stored in a variable named
$urlEntry.
In the second command, the New-CsSimpleUrl cmdlet 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
fabrikam.com; the ActiveUrl is set to https://meet.fabrikam.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 Set-CsSimpleUrlConfiguration cmdlet, the SimpleUrl parameter, and the parameter value
@{Add=$simpleUrl}. This syntax causes the URL stored in the object reference $simpleUrl to be
added to the SimpleUrl property.
$urlEntry = New-CsSimpleUrlEntry -Url “https://meet.fabrikam.com”
$simpleUrl = New-CsSimpleUrl -Component “meet” -Domain “fabrikam.com” -SimpleUrlEntry
$urlEntry -ActiveUrl “https://meet.fabrikam.com”
Set-CsSimpleUrlConfiguration -Identity “site:Redmond” -SimpleUrl @{Add=$simpleUrl}
Incorrect:
Not A: The Update-CsTenantMeetingUrl command updates the meeting URL for the specified Lync
Online tenant. The updated URL uses a simpler, more standardized format that makes it easier for
clients to locate and connect to meetings.
Example:
The command shown in example updates the meeting URL for the tenant with the tenant ID
38aad667-af54-4397-aaa7-e94c79ec2308. (Note that you must supply the tenant ID in order for this
command to complete.) After pressing ENTER to run the command, you will be asked if you are sure
you want to update the meeting URL. You must answer yes to this prompt before UpdateCsTenantMeetingUrl will actually make any changes to your Lync Online configuration settings.
Update-CsTenantMeetingUrl -Tenant “38aad667-af54-4397-aaa7-e94c79ec2308”
Not B: Set-CsMeetingConfiguration enables you to modify the meeting configuration settings
currently in use in your organization. Meeting configuration settings help dictate the type of
meetings (also called conferences) that users can create, and also control how (or even if)
anonymous users and dial-in conferencing users can join these meetings. Note that these settings
only affect scheduled meetings; they do not affect ad-hoc meetings created by clicking the Meet
Now option in Skype for Business.

New-CsSimpleUrl
https://technet.microsoft.com/en-us/library/gg398180.aspx

8 Comments on “Which Windows PowerShell cmdlet should you run?

  1. Peter says:

    I would choose A

    Below is from https://technet.microsoft.com/en-us/library/dn424754.aspx
    Describes same scenario to this question.

    suppose the organization undergoes some changes and decides to use the “vanity” URL litwareinc.com instead of the onmicrosoft.com URL. The organization modifies their user email addresses to use the litwareinc.com domain. However, meeting URLs will still use the old domain name:
    https://meet.lync.com/contoso/user1/45GZFH99

    To fix this problem, administrators should run the Update-CsTenantMeetingUrl cmdlet. That will replace the old meeting URL with a new one that features the vanity URL instead:
    https://meet.lync.com/litwareinc.com/user1/37JYLP71

    ** Running the Update-CsTenantMeetingUrl cmdlet is the only way to make this change **




    0



    1

Leave a Reply