Sophos stalls when I reaches a certain file (crushftp3.dmg). I have searched my MAC and no such file is found. How can I delete this file and get the scan to continue?
This thread was automatically locked due to age.
Sophos stalls when I reaches a certain file (crushftp3.dmg). I have searched my MAC and no such file is found. How can I delete this file and get the scan to continue?
From Terminal you can run the below to see if the file exists in your account’’’’s home folder:
find ~/ -name "crushftp3.dmg"
Or check all home folders with:
sudo find /Users/ -name "crushftp3.dmg"
Or the entire computer:
sudo find / -name "crushftp3.dmg"
From Terminal you can run the below to see if the file exists in your account’’’’s home folder:
find ~/ -name "crushftp3.dmg"
Or check all home folders with:
sudo find /Users/ -name "crushftp3.dmg"
Or the entire computer:
sudo find / -name "crushftp3.dmg"