Last active
April 28, 2017 09:08
-
-
Save jbl0ndie/f5c752841901e9484d20bacbb6ceddf9 to your computer and use it in GitHub Desktop.
OS X (or Mac OS) stops showing thumbnail images - fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Open Terminal | |
cd ~/Library/Preferences | |
rm com.apple.finder.plist //Delete Finder's property list | |
sudo killall Finder //Kills Finder which should prompt OS X to restart it automatically | |
//Optional manual restart of Finder | |
open /System/Library/CoreServices/Finder.app | |
//Adapted from http://www.jgoode.com/easy-fix-for-mac-finder-preview-thumbnails-not-displaying/ | |
//Further suggestions, as thumbnails are generated by QuickLook: | |
//Try resetting its cache | |
qlmanage -r cache. | |
//If this didn't work reset it completely | |
qlmanage -r. | |
//Adapted from https://apple.stackexchange.com/questions/150799/how-to-force-finder-to-update-file-thumbnails |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment