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?

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. 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. simple URL. In this example, the URL Component is set to Meet; the domain is set to fabrikam.com; the the URL entry created in the first command. example adds the new URL to the simple URL collection for the Redmond site. This is done by using the Set- syntax causes the URL stored in the object reference $simpleUrl to be added to the SimpleUrl property. connect to meetings.

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
Example: The example shows how a new URL can be added to an existing collection of simple URLs. To begin
In the second command, the New-CsSimpleUrl cmdlet is used to create an in-memory-only instance of a
ActiveUrl is set to https://meet.fabrikam.com; and the SimpleUrl property is set to $urlEntry, with $urlEntry being
After the URL has been created (and stored in the object reference $simpleUrl) the final command in the
CsSimpleUrlConfiguration cmdlet, the SimpleUrl parameter, and the parameter value @{Add=$simpleUrl}. This
$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 Answers:
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
References: https://technet.microsoft.com/en-us/library/gg398180.aspx

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

  1. Battousai says:

    I think the correct answer is E. New-CsSimpleURL, because this command allow you to include the new domain to the meeting url and the requierment is to add the domain to the meeting URL, on the other hand, the Update-CsTenantMeetingUrl will be usefull once the new domain is added to make the URL simpler.




    0



    4

Leave a Reply