Powershell Get SPList Last Modified
In Powershell
param($webUrl="http://fdi-sp2013-1:2921", [string]$listTitle="Pages")
if ((Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue) -eq $null) {
Add-PSSnapin Microsoft.SharePoint.PowerShell
}
clear;
$web = Get-SPWeb $webUrl
$list = $web.Lists[$listTitle]
$list.PropertiesXml
$props = New-Object System.Xml.XmlDocument
$props.LoadXml($list.PropertiesXml)
$props.ChildNodes
$web.Dispose()
Write-Host -NoNewLine 'Press any key to continue...';
$null = $Host.UI.RawUI.ReadKey('NoEcho,IncludeKeyDown');