(In Finder) Go -> Connect to Server.
I can connect to it with out a problem. I want a shortcut on my desktop so all i have to do is click on it, not click on finder, go, then connect to server. I can actually just click on the server on the side bar
Does this what you are looking for
http://support.apple.com/kb/HT4011
Otherwise you could write a little script for connecting to the server then save it as an application
that's close but i was thinking more along the lines of creating a shortcut on my mac desktop that points to my windows drive on another pc. I had a shortcut on my linux box that would mount the windows drive as soon as i double clicked on it. Thats really what im gunning for here.
What about writing a script and save it as an app on your desktop
Just tried it with one of my folders
I used Script Editor
tell application "Finder"
if not (exists disk "backup") then open location "afp://xserv.local/backup"
end tell
tell application "Finder"
if (exists disk "backup") then open disk "backup"
end tell
You will have to change "afp://xserv.local/backup" to something like smb://servername/sharename
How do you want to change it?
What about writing a script and save it as an app on your desktop
Just tried it with one of my folders
I used Script Editor
tell application "Finder"
if not (exists disk "backup") then open location "afp://xserv.local/backup"
end tell
tell application "Finder"
if (exists disk "backup") then open disk "backup"
end tell
You will have to change "afp://xserv.local/backup" to something like smb://servername/sharename