READ Free Dumps For Microsoft- 70-488
Question ID 12596 | You work on a SharePoint Enterprise Content Management (ECM) project.
You develop the Litware Document Approval workflow that enables a group of people to
review, approve, or reject documents and document changes.
You need to assign the Litware Document Approval workflow to the Document content
type.
How should you complete the relevant code? (To answer, drag the appropriate code
segments to the correct location or locations in the answer area. Each code 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.)
|
Option A | Answer :
|
Correct Answer | A |
Explanation
Question ID 12597 | A company uses SharePoint as its collaboration platform.
The SharePoint site collection has many inactive sites.
You need to identify the inactive sites in each web application of the farm by using
Windows PowerShell scripts.
Which property should you evaluate?
|
Option A | $site.DeadWebNotificationCount
|
Option B | $site.ExpirationDate
|
Option C | $site.CertificationDate
|
Option D | $site.LastContentModifiedDate
|
Option E | $site.CurrentResourceUsage
|
Correct Answer | D |
Explanation Explanation: How to find Most Active SharePoint Site Collections? Well, SPSite object has LastContentModifiedDate property, why don't we use it? Here is the nifty PowerShell script to find Most active Site collections based on content modified date. In a reverse, this can be used to find all In-active site collections also. Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue Get-SPWebApplication "https://sharepoint.company.com" | Get-SPSite -Limit All | foreach { Write-Host $_.URL $_.LastContentModifiedDate } Reference: Find Active Inactive Site Collections in SharePoint http://www.sharepointdiary.com/2012/12/find-active-inactive-site-collections.html