Scripting Finder's Prefs

Dear Gurus,

I see from the Finder’s dict that there is a preferences property called “desktop shows connected servers”.

Can someone help me with an applescript or shellscript to set this? This doesn’t work (10.4.9 G5)

tell application “Finder”

set desktop shows connected servers of my preferences to false

end tell

thanks - George

Hi George,

the keyword my refers to AppleScript itself.
The Finder has a property Finder preferences, which contains the data

tell application "Finder" to set desktop shows connected servers of Finder preferences to false

Thanks Stefan, exactly what I wanted and in only nine minutes!