/ Published in: AppleScript
mount Samba disk named "SHARE" if we haven't mounted it
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
tell application "Finder" if not (exists "SHARE") then mount volume "smb://192.168.11.200/share/" as user name "username" with password "password" end if end tell