How to disable the creation of .DS_Store files on network shares

pest_control Sympthoms
search Causes
construction Fix/Workaround/Solution
Follow those steps to disable the creation of .DS_Store files on network shares:
  1. On MacOS, open the Terminal app
  2. Paste the following command:
  3. defaults write com.apple.desktopservices DSDontWriteNetworkStores true
    Note that the shell doesn't output any confirmation of the successful execution of the command.
  4. If for any reason you need to revert back to the default situation, simply exeute the command again changing true with false:
  5. defaults write com.apple.desktopservices DSDontWriteNetworkStores false

school Further considerations




Article ID: SYS-OSX-0001