70-339 Managing Microsoft SharePoint Server 2016

Loading demo links...

Showing 7–9 of 10 questions

Question 7 (Mixed Questions)

A company has an on-premises SharePoint farm. The company also uses SharePoint Online.

Employees must be able to access on-premises sites and SharePoint Online resources.

You must use single sign-on (SSO).

You need to configure authentication.

Which three options should you configure? Each correct answer presents part of the solution.

Select all that apply, then click Submit answer.

  • Windows Azure directory synchronization without Password Sync

  • server to server authentication

  • Active Directory Federation Services 2.0 with SSO

  • forward proxy configuration

  • Windows Azure directory synchronization with Password Sync

Question 8 (Mixed Questions)

You administer a company's SharePoint Online environment. The environment hosts several site collections that are used to store documents that contain sensitive customer information.

A user in the customer relationship department must share a document that contains scheduling and project information with multiple external vendors.

The document contains scheduling and project information.

You need to ensure that the external vendors can access and collaborate on the document.

What should you do?

Select an option, then click Submit answer.

  • Share the site containing the collaboration document and require sign-in.

  • Share the document and do not require sign-in.

  • Create a document library for the document and require sign-in.

  • Share the document and require sign-in.

Question 9 (Mixed Questions)

You are a SharePoint Administrator for Contoso, Ltd.

While doing weekly maintenance you discover that a web application at http://sharepoint.contoso.com has an orphan site. The orphan site is located in the WSS_Content database.

You need to resolve the issue.

What should you do?

Select an option, then click Submit answer.

  • Run the following Windows PowerShell command:$wa = Get-SPWebApplicationhttp://sharepoint.contoso.com$wa.Sites.SyncRoot

  • In Central Administration, select the http://sharepoint.contoso.comweb application. Select the database that contains the orphaned site. Select Remove database and click OK. Run the Windows PowerShell cmdletDismount-SPContentDB.

  • Run the following Windows PowerShell command:$ContentDb = “WSS_Content”$db = Get-SPDatabase | where {$_.name –eq $ContentDb}Remove-SPContentDatabase $dbMount-SPContentDatabase –WebApplicaionhttp:// sharepoint.contoso.com–Name $ContentDb

  • Run the following Windows PowerShell command:$wa = Get-SPWebApplicationhttp://sharepoint.contoso.com$wa.Sites[0].Dispose();