03-19-2007 11:13 AM
03-19-2007 11:32 AM
defaults write com.apple.desktopservices DSDontWriteNetworkStores true08-08-2007 08:34 AM
I would prefer to enforce it on the server though. Is there a way to do thatMe too!
Thanks, Colin
10-02-2007 03:49 PM
Hello,I would prefer to enforce it on the server though. Is there a way to do thatMe too!
Thanks, Colin
Thanks
Andreas
08-06-2008 04:51 PM
10-04-2008 10:09 AM
02-06-2009 06:44 AM
#!/bin/sh
# This script walks through the alfresco directory and delte all meta-files created by
# OS X, cifs/smb/webdav clients
#
# Created by Egil Hasting @ frontbase no
# 2008
ALFRESCO_MOUNT="/mnt/alfresco.files"
TIME_NOW=`date '+%y%d%m_%H%M%S'`
FILE_NAME="Deleted_AlfrescoFiles_$TIME_NOW.txt"
# echo "Finding OS X meta-files and log the file names to $FILE_NAME…"
#example
#/usr/bin/find . -not -mtime -168 -delete
mount $ALFRESCO_MOUNT
/usr/bin/find $ALFRESCO_MOUNT -name "._*.*" -or -name ".DS*" > /tmp/$FILE_NAME
echo "— End of log —" >> /tmp/$FILE_NAME
# echo "Delete files…"
/usr/bin/find $ALFRESCO_MOUNT -name "._*.*" -delete
/usr/bin/find $ALFRESCO_MOUNT -name ".DS*" -delete
cp /tmp/$FILE_NAME $ALFRESCO_MOUNT/Logs
rm /tmp/$FILE_NAME
umount $ALFRESCO_MOUNT
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.