Forefront marked all files as infected with a virus and causes the SharePoint page not to load
Use these queries to get your site backup.
--Find all infected files
select * from AllDocs where (VirusStatus >= 0) and (VirusStatus is not null)
--Run this next query if you know all your documents do not have a Virus
--update AllDocs set VirusStatus = null where (VirusStatus > 0) and (VirusStatus is not null)
Comments
Post a Comment