-
All replies
-
Helpful answers
-
Dec 16, 2015 7:44 AM in response to federicogartnerby Niel,Choose Utilities from the Finder’s Go menu, open the AppleScript Editor, and run the following:
tell application "Finder" to quit
try
if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is not "1" then error
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
on error
do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
end try
delay 2
tell application "Finder" to run
If you change your mind later, run the script again.
(137259)