getcertified4sure.com

70 347 dumps : Oct 2021 Edition




Want to know Actualtests exam ref 70 347 enabling office 365 services pdf Exam practice test features? Want to lear more about Microsoft Enabling Office 365 Services certification experience? Study Tested Microsoft office 365 exam 70 347 answers to Renew 70 347 dumps questions at Actualtests. Gat a success with an absolute guarantee to pass Microsoft office 365 exam 70 347 (Enabling Office 365 Services) test on your first attempt.

Q51. You are the administrator for Contoso, Ltd. You have an Office 365 tenant with Skype for Business Online. You have an account named Test.User@contoso.com. You configure the account to use the same email address and Session Initiation Protocol (SIP) address. 

You need to change the SIP address for the account to Test.User1@contoso.com. 

What should you do? 

A. In the Office 365 admin center, change the display name for Test.User@contoso.com to Test.User1@contoso.com. 

B. Run the following Windows PowerShell command: Get-MsolUser –UserPrincipalName Test.User@contoso.com | Set-MsolUser –UserPrincipalName Test.User1@contoso.com 

C. In the Office 365 admin center, add the SMTP address Test.User1@contoso.com to Test.User@contoso.com 

D. Run the following Windows PowerShell command: Set-MsolUserPrincipalName –UserPrincipalName Test.User@contoso.com –NewUserPrincipalName Test.User1@contoso.com 

Answer:

Explanation: 

The Set-MsolUserPrincipalName cmdlet is used to change the User Principal Name (user ID) of a user. 

Example: The following command renames user1@contoso.com to CCole@contoso.com. Set-MsolUserPrincipalName -UserPrincipalName User1@contoso.com -NewUserPrincipalName CCole@contoso.com 

Reference: Set-MsolUserPrincipalName 

https://msdn.microsoft.com/en-us/library/azure/dn194135.aspx 


Q52. HOTSPOT 

You are the Office 365 administrator for your company. A user wants to share a link to a presentation with a salesperson. 

The salesperson will share the link with potential customers. 

You have the following requirements: 

. Make a read-only version of the presentation available to anonymous users. 

. Notify the salesperson by email when the presentation is available. 

You need to configure the sharing settings. 

How should you configure the sharing settings? To answer, configure the appropriate options in the dialog box in the answer area. 

Answer: 


Q53. You subscribe to Office 365. You plan to implement single sign-on. You need to deploy Active Directory Federation Services (AD FS) to a server for the planned implementation. 

Which deployment methods should you use? (Each correct answer presents a complete solution. Choose all that apply.) 

A. On a server that runs Windows Server 2008 R2, download and install AD FS 2.0. 

B. On a server that runs Windows Server 2008, download and install AD FS 2.0. 

C. On a server that runs Windows Server 2008, install the AD FS server role. 

D. On a server that runs Windows Server 2008 R2, install the AD FS server role. 

Answer: A,D 


Q54. HOTSPOT 

You are the Microsoft Exchange Online administrator for your company. The company has been using Exchange Online for over two years. 

Employees report that items are disappearing from their primary mailboxes. You discover that an old retention policy is enabled for the employee mailboxes. 

You need to ensure that items are not automatically removed from employees' primary mailboxes. 

How should you complete the relevant Windows PowerShell script? To answer, select the correct code segment from each list in the answer area. 

Answer: 


Q55. HOTSPOT 

You are the Exchange Online administrator for a company that has offices in Seattle, New York, London, and Paris. The StateOrProvince attribute in Active Directory is populated with each user’s location. 

Employees must be able to send email messages to all users in Europe. 

You need to create the distribution group. 

How should you complete the Windows PowerShell command? To answer, select the appropriate segment from each list in the answer area. 

Answer: 


Q56. HOTSPOT 

Your company has an Office 365 subscription and uses Microsoft Lync Online. The environment includes the domains shown in the following image, and is configured as shown in the exhibit. (Click the Exhibit button.) 

Lync is not deployed in a hybrid configuration. 

An employee requires specific Lync communication settings. The employee's account is configured as shown in the following image. 

For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point. 

Answer: 


Q57. 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? 

A. Update-CsTenantMeetingUrl 

B. Set-CsMeetingConfiguration 

C. Set-CsUser 

D. Set-CsMeetingRoom 

E. New-CsSimpleURL 

Answer:

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 Update-CsTenantMeetingUrl 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. 

Reference: New-CsSimpleUrl 

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


Q58. Your company has an Office 365 subscription. You need to add the label "External" to the subject line of each email message received by your organization from an external sender. 

What should you do? 

A. From the Exchange Control Panel, add a MailTip. 

B. From the Forefront Online Protection Administration Center, set the footer for outbound email. 

C. Run the Enable-InboxRule cmdlet. 

D. From the Exchange Control Panel, run the New Rule wizard. 

Answer:


Q59. DRAG DROP 

An organization has an Office 365 tenant. You hire a new administrator. 

The new administrator is responsible for several SharePoint Online site collections. 

You need to grant the new administrator access to SharePoint Online as a site collection administrator. 

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. 

Answer: 


Q60. HOTSPOT 

You are the Office 365 administrator for your company. 

Management has requested a report of all Microsoft Exchange ActiveSync-enabled employees and their devices. 

You need to generate a report that contains employee display names and device types. 

How should you complete the relevant Windows PowerShell script? To answer, select the appropriate option from each list in the answer area. 

Answer: