Advertisement
ricbaral

Reset Spotlight (OS X El Capitan)

Dec 22nd, 2015
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.26 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. # Delete all information saved by Spotlight
  4. defaults delete com.apple.Spotlight
  5.  
  6. # Restart Spotlight
  7. killall Spotlight
  8.  
  9. # Uncomment to prevent Spotlight to always introduce itself as new
  10. # defaults write com.apple.Spotlight useCount 5
  11.  
  12. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement