Max Velitchko 2019-04-11 16:14:39 -07:00
parent b3216ea93d
commit a8b2c36761

View File

@ -347,13 +347,13 @@ For example, this script removes Microsoft Defender ATP from the /Applications d
``` ```
echo "Is WDAV installed?" echo "Is WDAV installed?"
ls -ld '/Applications/Microsoft Defender.app' 2>/dev/null ls -ld '/Applications/Microsoft Defender ATP.app' 2>/dev/null
echo "Uninstalling WDAV..." echo "Uninstalling WDAV..."
rm -rf '/Applications/Microsoft Defender.app' rm -rf '/Applications/Microsoft Defender ATP.app'
echo "Is WDAV still installed?" echo "Is WDAV still installed?"
ls -ld '/Applications/Microsoft Defender.app' 2>/dev/null ls -ld '/Applications/Microsoft Defender ATP.app' 2>/dev/null
echo "Done!" echo "Done!"
``` ```