mount Samba disk


/ Published in: AppleScript
Save to your folder(s)

mount Samba disk named "SHARE" if we haven't mounted it


Copy this code and paste it in your HTML
  1. tell application "Finder"
  2. if not (exists "SHARE") then
  3. mount volume "smb://192.168.11.200/share/" as user name "username" with password "password"
  4. end if
  5. end tell

Report this snippet


Comments


You need to login to view comments.