getcertified4sure.com

A Complete Guide to 70 347 exam




Your success in Microsoft 70 347 study guide is our sole target and we develop all our exam 70 347 braindumps in a way that facilitates the attainment of this target. Not only is our 70 347 vce study material the best you can find, it is also the most detailed and the most updated. microsoft 70 347 Practice Exams for Microsoft Exchange Server microsoft 70 347 are written to the highest standards of technical accuracy.

Q1. DRAG DROP 

You are the Office 365 administrator for a company. The company is currently migrating from a hosted POP3 email solution to Microsoft Exchange Online. The company maintains extensive lists of external contacts in several Microsoft Excel workbooks. 

You plan to import all the external contact information from the workbooks into the Exchange Online Global Address List (GAL). The external contacts must not be able to sign in to your company's Windows Azure Active Directory service. 

You consolidate all the external contact information into a file named ExternalContacts. 

You need to import the file into the GAL. 

How should you complete the relevant Windows PowerShell script? 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: 


Q2. Your company subscribes to the Office 365 Enterprise El plan. You are the Microsoft Exchange Online administrator. 

In the last week, employees have reported that they are receiving non-delivery report messages from other companies. The employees have not sent messages to recipients within those companies. 

You need to prevent non-delivery report messages from reaching employees. 

Which content filter option should you turn on in the Exchange admin center? 

A. NDR backscatter 

B. Conditional Sender ID filtering: hard fail 

C. SPF record: hard fail 

D. Block all bulk email messages 

Answer:

Explanation:

Reference: 

http://blogs.technet.com/b/exchange/archive/2014/08/18/spam-email-and-office-365-environment-connectionand-content-filtering-in-eop.aspx 


Q3. DRAG DROP 

Your company, Coho Vineyard, uses Microsoft Exchange Online. Coho Vineyard employees have email addresses on the domain cohovineyard.com. Coho Vineyard recently purchased the domain cohowinery.com. 

All employees of Coho Vineyard who work in the winery department should have an additional email address combining their current email alias with the domain cohowinery.com. Outgoing email messages must be sent from the existing cohovineyard.com email addresses. 

You need to add the cohowinery.com email addresses. 

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

Answer: 


Q4. You are the Office 365 administrator for your company. The company uses Office 365 ProPlus and has multiple Microsoft SharePoint Online sites. 

The company recently started a project that requires employees to collaborate with external users on the development of a set of documents that are stored in a team site. 

You need to ensure that external users can access and edit the documents without affecting the security of other content. 

What should you do? 

A. Configure and share guest links to the documents for the external users. 

B. Configure and share a guest link to the existing SharePoint team site for the external users. 

C. Share documents by using the Share function and adding the external users to the Contributors group. 

D. Share the existing SharePoint team site by using the Share function and adding the external users to the Contributors group. 

Answer:

Explanation: If you perform work that involves sharing documents or collaborating directly with vendors, clients, or customers, then you might want to use your sites to share content with people outside your organization who do not have licenses for your Office 365 subscription. 

There are three ways that you can do this: 

* You can send users a guest link that they can use to view individual documents on your site anonymously. 

* You can share an entire site by inviting external users to sign in to your site using a Microsoft account* or a work account. 

* You can share individual documents by inviting external users to sign in to your site using a Microsoft account* or a workacct_short. 

Reference: Share sites or documents with people outside your organization 

https://support.office.com/en-AU/article/Share-sites-or-documents-with-people-outside-your-organization-5f4cee39-5c91-4dc8-8fb1-96bca76f4eb0 


Q5. DRAG DROP 

Your company has an Office 365 Enterprise E3 subscription. You are the Microsoft SharePoint Online administrator. 

You create a site collection for the marketing department. After the site collection is created, a different employee is chosen as the site collection administrator. 

You need to grant the user the appropriate permissions. 

In the SharePoint admin portal, 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: 


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


Q7. You are the Office 365 administrator for your company. The company allows external communications through Microsoft Lync Online for all domains. 

The call center manager reports that call center personnel are spending too much time chatting with friends and not enough time taking calls. She requests that the call center personnel be blocked from chatting with anyone external to the company by using Lync Online. They still must be able to communicate with internal users. 

You need to prevent all call center personnel from communicating with external contacts by using Lync Online, while still allowing other employees to communicate with external contacts. 

What should you do? 

A. In the Lync admin center, select all users, edit their external communications settings, and clear the Lync Users check box. 

B. On the External Communications page of the Lync admin center, turn off external access. 

C. In the Lync admin center, remove the Lync Online license from each of the call center personnel. 

D. In the Lync admin center, select all call center personnel, edit their external communications settings, and clear the People on Public IM Networks check box. 

Answer:


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


Q9. HOTSPOT 

Your company subscribes to Office 365 Small Business. 

You need to disable all contact synchronization. 

Which two service categories should you configure? To answer, select the appropriate service categories in the answer area. 

Answer: 


Q10. You deploy Office 365. All the members of a team named Sales have full access to a shared mailbox named Sales. You enable auditing for all shared mailboxes. From the Sales mailbox, an email message that contains inappropriate content is sent. You need to identify which user sent the message. 

What should you do? 

A. From the Exchange Control Panel, run an administrator role group report. 

B. From Windows PowerShell, run the Get-SharingPolicy cmdlet. 

C. From Windows PowerShell, run the Write-AdminAuditLog cmdlet. 

D. From Windows PowerShell, run the New-MailboxAuditLogSearch cmdlet. 

Answer: