aiotestking uk

70-347 Exam Questions - Online Test


70-347 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

Q1. HOTSPOT 

You are the Microsoft Lync Online administrator for your company. 

Some authenticated users report that they must wait in the meeting lobby when they dial in to Lync meetings. 

You need to ensure that authenticated users can connect directly to Lync meetings without waiting in the meeting lobby. 

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

Answer:  

Q2. You are the Microsoft Lync administrator for a company that uses Lync Online. 

The company has mandated that employees may use Lync Online to communicate with contacts from approved external domains. 

You need to configure Lync Online to allow Lync federation with only three specific domains. You must achieve this goal by using the least amount of administrative effort. 

Which two actions should you perform? Each correct answer presents part of the solution. 

A. In the Lync admin center, set the External Access option to On except for blocked domains. 

B. In the Office 365 admin center, add the three domains to the domain list and set the domain intent for each domain to Lync Online. 

C. In the Lync admin center, set the External Access option to Off completely. 

D. In the Lync admin center, set the External Access option to On only for allowed domains. 

E. In the Lync admin center, configure the Presence Privacy Mode option to display presence information only to the users' contacts. 

F. In the Lync admin center, add the three domains to the Blocked Or Allowed Domains list. 

Answer: D,F 

Explanation: 

References: http://solveit.openjive.com/post/2014/01/27/Lync-Federation-with-Office-365Lync-Online http://technet.microsoft.com/en-us/library/hh852512.aspx http://technet.microsoft.com/en-us/library/jj205126.aspx 

Q3. DRAG DROP 

You are the Office 365 administrator for your company. The company recently migrated to Office 365 and is planning to deploy Office 365 ProPlus to client computers in the main 

office and all branch offices. 

Due to limited bandwidth at the branch offices, the company decides to have users install Office 365 ProPlus from a network share by using the Click-to-Run deployment method. 

You need to install Office 365 ProPlus on a client computer. 

How should you complete the relevant command? To answer, drag the appropriate command segments to the correct targets. Each command segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. 

Answer:  

Q4. Your company uses Microsoft Exchange Online. Employees frequently need to change their primary email addresses. 

The messaging operations team has requested a script to simplify the process of changing email addresses. 

The script must perform the following actions: 

. Obtain employee information from a .csv file that has a header line of UserPrincipalName,CurrentPrimaryAddress,NewPrimaryAddress. 

. Change employees' primary email addresses to the values in the NewPrimaryAddress column. 

. Retain employees' current email addresses as secondary addresses. 

You create the following Windows PowerShell script to read the .csv file. Line numbers are included for reference only. 

You need to complete the script to meet the requirements. 

Which Windows PowerShell command should you insert at line 06? 

A. Set-Mailbox -Identity $UserPrincipalName -WindowsEmailAddress $NewPrimary 

B. Set-Mailbox -Identity $UserPrincipalName -PrimarySmtpAddress $NewPrimary 

C. Set-Mailbox -Identity $UserPrincipalName -ExternalEmailAddress $NewPrimary 

D. Set-MailUser -Identity $UserPrincipalName -EmailAddresses@{add = "SMTP:" + "$NewPrimary"; remove="SMTP:" + "$OldPrimary"} 

Answer:

Q5. You are the Office 365 administrator for your company. The company uses Microsoft Exchange Online and Microsoft Lync Online. 

An employee named User1 has the user name, email address, and Lync address User1@contoso.com. 

The employee requests that you change only his Lync address to User1-Sales@contoso.com. 

You start a Windows PowerShell session and run the following commands, providing your admin account credentials when prompted: 

You need to complete the process of updating the employee's Lync address without affecting any other addresses. 

Which Windows PowerShell command should you run next? 

A. Set-MsolUser -UserPrincipalName $ID -ProxyAddresses@{add = "$NewAddress"; remove = "$OldAddress"> 

B. Set-Mailbox -Identity $ID -EmailAddresses@{add = "$NewAddress"; remove = "$Old Address"} 

C. Set-Mailbox -Identity $ID -WindowsEmailAddress $NewAddress 

D. Set-CsUser -Identity $ID -ProxyAddresses@{add = M$NewAddress'' remove="$OldAddress"> 

Answer:

Q6. DRAG DROP 

You are the Office 365 administrator for your company. 

You need to generate a list of all Session Initiation Protocol (SIP) addresses. 

How should you complete the relevant Windows PowerShell script? To answer, drag the appropriate command segments to the correct targets. Each segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. 

Answer:  

Q7. HOTSPOT 

You manage an Office 365 tenant. You plan to deploy Office 365 ProPlus. You create the following deployment configuration file. 

Use the drop-down menus to select the answer choice that answers each question or to select the answer choice that completes each statement, based on the information presented in the code segment. 

NOTE: Each correct answer is worth one point. 

Answer:  

Q8. Your company uses Microsoft Exchange Online. Employees frequently need to change their primary email addresses. 

The messaging operations team has requested a script to simplify the process of changing email addresses. 

The script must perform the following actions: 

. Obtain employee information from a .csv file that has a header line of UserPrincipalName,CurrentPrimaryAddress,NewPrimaryAddress. 

. Change employees' primary email addresses to the values in the NewPrimaryAddress column. 

. Retain employees' current email addresses as secondary addresses. 

You create the following Windows PowerShell script to read the .csv file. Line numbers are included for reference only. 

You need to complete the script to meet the requirements. 

Which Windows PowerShell command should you insert at line 06? 

A. Set-Mailbox -Identity $UserPrincipalName -EmailAddresses @{add="SMTP:" + "$NewPrimary"; remove="SMTP:" + "$OldPrimary"} 

B. Set-Mailbox -Identity $UserPrincipalName -EmailAddresses @{add="SMTP:" + "$NewPrimary", "smtp:" + "$OldPrimary"; remove="SMTP:" + "$OldPrimary"} 

C. Set-Mailbox -Identity $UserPrincipalName -EmailAddresses @{add="SMTP:" + "$NewPrimary"} 

D. Set-Mailbox -Identity $UserPrincipalName -PrimarySmtpAddress $NewPrimary 

Answer:

Explanation: We add the new e-mail address. We retain the old email address by not removing it. 

Incorrect: 

Not A: We should keep the old address. 

Not B: We should keep the old address. 

Not D: This just change the PrimarySmtpAddress. We need to retain the old address. 

Note: You can add a new email address to multiple mailboxes at one time by using the Shell and a comma separated values (CSV) file. This example imports data from C:\Users\Administrator\Desktop\AddEmailAddress.csv, which has the following format. Mailbox,NewEmailAddress Dan Jump,danj@northamerica.contoso.com David Pelton,davidp@northamerica.contoso.com Kim Akers,kima@northamerica.contoso.com Janet Schorr,janets@northamerica.contoso.com Jeffrey Zeng,jeffreyz@northamerica.contoso.com Spencer Low,spencerl@northamerica.contoso.com Toni Poe,tonip@northamerica.contoso.com 

Run the following command to use the data in the CSV file to add the email address to each mailbox specified in the CSV file. 

Import-CSV "C:\Users\Administrator\Desktop\AddEmailAddress.csv" | ForEach {Set-Mailbox $_.Mailbox -EmailAddresses @{a 

Reference: Add or remove email addresses for a mailbox 

https://technet.microsoft.com/en-us/library/bb123794(v=exchg.160).aspx 

Q9. You are the Office 365 administrator for your company. 

Many employees work in remote locations with intermittent Internet connectivity. Employees must be able to access and reply to email messages, and access calendars, even when their devices are not connected to the Internet. 

You need to ensure that employees can access their Microsoft Exchange content offline. 

What should you do? 

A. Deploy and configure the AppFabric Caching service. 

B. Deploy and configure a BranchCache server. 

C. Configure the Microsoft OneDrive for Business Windows Sync client for offline access. 

D. In Internet Explorer 10, configure Outlook Web App (OWA) for offline access. 

Answer:

Explanation: Offline access lets you use Outlook Web App on your laptop or desktop computer when you’re not connected to the Internet. After you’ve enabled offline access, Outlook Web App will work in an offline mode as needed depending on your network connection. When you’re online, Outlook Web App will automatically update the offline information. 

Reference: Using Outlook Web App offline 

https://support.office.com/en-us/article/Using-Outlook-Web-App-offline-3214839c-0604-4162-8a97-6856b4c27b36 

Q10. You are the Office 365 administrator for your company. 

The company has established the following new requirements: 

. Members of the legal team must be able to conduct eDiscovery searches. 

. Employees must be notified when they send email messages that contain confidential information. 

You need to configure the environment. 

Which two actions should you perform? Each correct answer presents part of the solution. 

A. Configure journaling to a Microsoft Exchange Online mailbox for all mailboxes. 

B. Add the members of the legal team to the Discovery Management role group. 

C. Create a Data Loss Prevention policy. 

D. Place all executive mailboxes on In-Place Hold for 365 days and use In-Place eDiscovery for mailbox searches. 

E. Enable Microsoft Exchange Online Archiving for the executive mailboxes. 

F. Place all executive mailboxes on Retention Hold. 

Answer: B,C