I have a simple SMB mapped drive script that points to a network folder.
# Mount the network home
mount_script=`/usr/bin/osascript > /dev/null << EOT
# tell application "Finder"
# activate
mount volume "smb://servername/folder/"
# end tell
EOT`
Under Shared (left side on Finder) it just says "servername", which when you have 2 shares with the same servername but different folder, they both do not show up.
So i would like to have 3 share names example:
Corporate Stuff (smb://servername/CorporateStuff)
My Home Drive (smb://servername2/$3)
Files (smb://servername/Files)
That way you can tell the difference between the shares in Finder.
Ideally if there was a way to add it to a users "Favorites" as well that would be helpful.
The script runs at Login and is Ongoing
Appreciate any help!
