Share via

SharePoint refresh Missing Server Side Dependencies

jlmsy 46 Reputation points
2022-03-30T12:44:11.297+00:00

Hello everyone,

I'm currently working on the missing server side dependencies errors, and I just have a stupid question:
How to force a refresh on the missing server side dependencies errors?

I tried to run the weekly Health Analysis Job timer job, but seems it's not that. Can I refresh the list by running a specific timer job or by PowerShell command ?
Don't want to wait Sunday 12:00 PM to have a refresh :)

Thanks!

Microsoft 365 and Office | SharePoint Server | For business
0 comments No comments

1 answer

Sort by: Most helpful
  1. CaseyYang-MSFT 10,466 Reputation points
    2022-03-31T07:46:12.37+00:00

    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.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.