March 1, 2023
The amount of time the New icon is shown in SharePoint 2010 can be changed at the Web Application level using PowerShell. Below are examples to get or change settings for the icon:
$webApp= Get-SPWebApplication "http://webAppURL/"$webApp.DaysToShowNewIndicator
# Set to 1 Day$webApp= Get-SPWebApplication "http://webAppURL/"$webApp.DaysToShowNewIndicator
=1$webApp.Update()
# Essentially, just set the display duration to 0 days.$webApp= Get-SPWebApplication
"http://webAppURL/"$webApp.DaysToShowNewIndicator =0$webApp.Update()