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 Exchange Online administrator for Contoso, Ltd. The company has purchased contoso.com for use as an email domain. 

You need to add an email address for each employee. You add the new domain into Office 365 and set the domain intention to Exchange Online. 

You need to complete a Windows PowerShell script to add email addresses for all employees. 

How should you complete the script? To answer, select the correct answer from each list in the answer area. 

Answer:  

Q2. You manage an Office 365 tenant that uses an Enterprise E1 subscription. 

A user receives frequent email messages from a specific domain that are flagged as spam. 

You need to ensure that the domain name is not flagged as spam for only the user. 

Which Windows PowerShell cmdlet should you run? 

A. Enable-JournalRule 

B. New-RetentionPolicyTag 

C. Start-ManagedFolderAssistant 

D. Set-CsUser 

E. Set-CsPrivacyConfiguration 

F. Set-HostedContentFilterPolicy 

G. Set-MalwareFilterPolicy 

H. Set-MailboxJunkEmailConfiguration 

Answer:

Explanation: 

Use the Set-MailboxJunkEmailConfiguration cmdlet to configure the junk email rule for specific mailboxes. 

The junk email rule helps Microsoft Outlook and Outlook Web App users to automatically remove any spam that gets past anti-spam filters and reaches the users' mailboxes. With this cmdlet, users and administrators can make changes to the junk email rule that's configured for a specific mailbox. 

Example: This example disables the junk email rule configuration for the user named David Pelton. 

Set-MailboxJunkEmailConfiguration "David Pelton" -Enabled $false 

Incorrect: 

Not G: Use the Set-MalwareFilterPolicy cmdlet to modify malware filter policies in your organization. 

Reference: Set-MailboxJunkEmailConfiguration 

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

Q3. You manage an Office 365 tenant that uses an Enterprise E1 subscription. You configure a retention policy for all mailboxes. 

You must apply a new retention policy immediately because of upcoming personnel changes. 

You need to ensure that the new retention policy is applied to the mailboxes immediately. 

Which Windows PowerShell cmdlet should you run? 

A. Enable-JournalRule 

B. New-RetentionPolicyTag 

C. Start-ManagedFolderAssistant 

D. Set-CsUser 

E. Set-CsPrivacyConfiguration 

F. Set-HostedContentFilterPolicy 

G. Set-MalwareFilterPolicy 

H. Set-MailboxJunkEmailConfiguration 

Answer:

Explanation: 

Use the New-RetentionPolicyTag cmdlet to create a retention tag. Retention tags are used to apply retention settings to folders and individual items such as e-mail messages and voice mail. These settings specify how long a message remains in a mailbox and the action to be taken when the message reaches the specified retention age. When a message reaches its retention age, it's moved to the user’s In-Place Archive or deleted. 

Reference: New-RetentionPolicyTag 

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

Q4. DRAG DROP 

Your company uses the Office Deployment Tool to deploy Click-to-Run for Office 365 ProPlus. 

Users report that confirmation dialog boxes do not appear during the installation of Office 365 ProPlus. 

You need to ensure that confirmation dialog boxes are displayed to users. 

How should you complete the relevant segment of the config.xml file? To answer, drag the appropriate values to the correct targets. Each value 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:  

Q5. 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:  

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

The company's environment includes Office 2007, Office 2010, Office 2013, Windows 7, and Windows 8. The company uses Office Telemetry. 

You need to collect Office version usage data for an upcoming migration to Office 365 ProPlus. 

What should you do? 

A. Open documents by using Office 2007, Office 2010, or Office 2013 on client computers that run Windows 7. 

B. Use the Get-MsolUser cmdlet with the ServiceStatus parameter. 

C. Search network shares for Office documents and export the results to a .log file. 

D. Search local computers for Office documents and export the results to a .csv file. 

Answer:

Q7. 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 

Q8. Your company has an Office 365 Enterprise El subscription. 

The company wants to implement an enterprise document collaboration and social networking platform that allows users to upload documents from their computers and conduct informal polls. 

You need to implement a solution that meets the requirements. 

Which solution should you implement? 

A. Microsoft SharePoint document libraries 

B. Microsoft SharePoint surveys 

C. Microsoft Yammer 

D. Microsoft SharePoint newsfeeds 

E. Microsoft SkyDrive Pro 

Answer:

Q9. DRAG DROP 

Your company uses Office 365 and Microsoft SharePoint Online. You are the SharePoint Online administrator. 

You need to set up resource monitoring and quota monitoring for the environment. 

What should you do? To answer, drag the appropriate terms to the correct targets. Each term 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:  

Q10. Contoso, Ltd. has an Office 365 Enterprise E3 plan. Contoso uses the domain contoso.com for email and instant messaging (IM). 

Contoso requires that website visitors who go to http://contoso.com be directed to the company's Microsoft SharePoint Online public website. 

You need to configure Office 365 to redirect the website requests without affecting the company's email or IM. 

What should you do? 

A. In the SharePoint admin center, rename the public website to http://contoso.com. 

B. In the Office 365 admin center, change the domain purpose for contoso.com to SharePoint. 

C. On the authoritative DNS servers, add a CNAME record for contoso.com. 

D. In the Office 365 admin center, add a new subdomain. Then set up redirection for http://contoso.com to the subdomain. 

Answer: