I installed InterceptX onto a computer and i get following error. "The security health cannot be reported at the moment" in Sophos Central. Is there a fix for this?
This thread was automatically locked due to age.
I installed InterceptX onto a computer and i get following error. "The security health cannot be reported at the moment" in Sophos Central. Is there a fix for this?
Sophos needs to fix the issue in their installer. I have found that the issue occurs when you try to install Sophos after the warning of "It is recommended that you reboot your machine before installing..." but ignore it, and install anyways. Sophos should either require a reboot or prevent you from installing, if this issue is going to occur. We didn't realize this until we had 8-9 computers with the service error. What we've found as a way to fix it, without entering safe mode is to run the commands listed in this KB article:
https://community.sophos.com/kb/en-us/124218
I did end up scripting this as a batch file and was able to deploy it with PDQ Deploy - group policy wasn't working for us, but other deployment methods should work as long as they run it as admin or as the local service account.
fsutil resource setautoreset true c:\
attrib -r -s -h c:\windows\System32\Config\TxR\*
del c:\windows\System32\Config\TxR\*
attrib -r -s -h c:\windows\System32\SMI\Store\Machine\*
del c:\windows\System32\SMI\Store\Machine\*.tm*
del c:\windows\System32\SMI\Store\Machine\*.blf
del c:\windows\System32\SMI\Store\Machine\*.regtrans-ms
Batch File:
Echo On
fsutil resource setautoreset true c:\
attrib -r -s -h c:\windows\System32\Config\TxR\*
echo y | del c:\windows\System32\Config\TxR\*
attrib -r -s -h c:\windows\System32\SMI\Store\Machine\*
del c:\windows\System32\SMI\Store\Machine\*.tm*
del c:\windows\System32\SMI\Store\Machine\*.blf
del c:\windows\System32\SMI\Store\Machine\*.regtrans-ms
exit