Nov 26, '02 09:33:26AM • Contributed by: steidley
I used the following script to accomplish this task. I saved the script as rmdsstore.sh (remember to make it executable), launched Terminal, quit the Finder and ran the script as root.
#!/bin/shAfter restarting the finder, window positions are remembered!
# rmdsstore.sh
# deletes all .DS_Store files on /
for x in `find / -name ".DS_Store" -print`
do
rm -f $x
done
#eof
[Editor's note: I haven't tested this script myself, nor have I had the window position memory problem ... but I know others have, so maybe this will help someone out there.]
