A family of Microsoft on-premises document management and storage systems.
Hi @jlmsy ,
From this similar thread: Sharepoint 2010 - refresh list job. You could use following PowerShell commands to refresh the list.
PowerShell:
$web = Get-SPWeb Server/ListLocation
$lists = $web.Lists
foreach ($list in $Lists) {
foreach ($item in $list.Items)
{
$item.UpdateOverwriteVersion();
}
}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.