Hi there,
I'm trying to create an AppleScript to mount a network home drive for logged in users. Our current Python Script is dead with 12.3.
I'd like to map the drive for the current user in the script below. Instead of jane.doe, I tried using $3, $User, ~ and a bunch of brackets. How can I replace jane.doe with the current signed in user?
tell application "Finder"
open location "smb://example.com/networkshares/Home%20Directories/jane.doe"
end tell