Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Automatically reconnect to a Samba share at login' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Automatically reconnect to a Samba share at login
Authored by: Gonzonia on Jun 26, '03 11:08:59AM

I think this hint was somewhere. I never got it to work myseld. I've added an applescript to the login items instead...
Save as an app and place in the login items...Works great (unless I'm not on my network)


tell application "Finder"
mount volume "smb://<WORKGROUP>;<USER>:<PASSWORD>@<MACHINE>/<SHARE>"
end tell



[ Reply to This | # ]
Automatically reconnect to a Samba share at login
Authored by: chrisleuty on Jul 01, '03 03:53:43AM

I couldn't get this format to work so I tried this instead - with success:

tell application "Finder"
mount volume "smb://<USER>:<PASSWORD>@<MACHINE IP NAME OR NUMBER/<SHARE>"
end tell



[ Reply to This | # ]