Hi All,
I’m trying to write an applescript for 10.2 to open the Connect to server dialog, and select a server name like smb://server.domain.com
I know you can use a script like
tell application “Finder”
open location “smb://username:password@server.domain.com/sharename”
end tell
to mount a specific share on the desktop but I don’t need a script that goes this far, just opening the “SMB/CIFS Authentication window” for the correct server is enough as I want users to enter thier own username and password as well as select the share they want to mount, rather than have it all hard coded in the smb:// string.
Basically all the script would have to do is the same as the user hitting apple-k then typing (or browseing from the list) the server smb://server.domain.com and clicking “Connect”
Does anyone have any suggestions?