Valid 70-488 Dumps shared by ExamDiscuss.com for Helping Passing 70-488 Exam! ExamDiscuss.com now offer the newest 70-488 exam dumps, the ExamDiscuss.com 70-488 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 70-488 dumps with Test Engine here:
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?
Correct Answer: D
Explanation/Reference: 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. 5 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