How can I stop the finder windows from opening at startup for all my mapped drives? I've got a few shares set to mount at restart, but that doesn't mean I want the finder window too. Just connect in the background possible?
tell application "Finder"
mount volume "afp://Server._afpovertcp._tcp.local/Drobo" as user name "your login name here"
end tell
mount volume "smb://John:doe@Server_One/Company"
mount volume "afp://John:doe@DiskStation._afpovertcp._tcp.local/Main"
mount volume "afp://John:doe@DiskStation._afpovertcp._tcp.local/home"
mount volume "smb://John:doe@Lacie_Station/media"
If you want to stop the Finder opening a new window for a network drive, use this Terminal command:
Code:defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool false
This doesn't appear to work for me under Mavericks for some reason. The finder window still opens when I log in and my Synology share is mounted.
im really confused of what to put into apple script i have about 8 windows shares and they all open finder winodws on yosimite 10.10.1 upon entering my pwFound a solution
I found a solution that i thought someone would like to know
1. Get info on the volume you like to have mounted and copy the address.
In my case: (afp://Server._afpovertcp._tcp.local/Drobo)
2. Open AppleScript Editor (found in /Applications/Utilities) and paste this
Change to your address of course, and your login name.Code:tell application "Finder" mount volume "afp://Server._afpovertcp._tcp.local/Drobo" as user name "your login name here" end tell
3. Save that as a program
4. Open System Preferences->Users and Groups
Select your account and the Start Object tab, and then drag your AppleScript program into the list.
Now i get my Drobo mounted without any Finder window popping up.
This will come in handy at work were i have 5 different mounts which earlier each opened a separate Finder windows i had to close.
I wish this would have been easier done in the Start Objects with a simple check box like "open mounted volumes" or something.
Cheers
im really confused of what to put into apple script i have about 8 windows shares and they all open finder winodws on yosimite 10.10.1 upon entering my pw
here is my shares
smb://server-pc/Downloads_capture
smb://server-pc/D
smb://server-pc/E
smb://server-pc/F
smb://server-pc/G
smb://server-pc/H
their are 7 total drives in my server and would love to have a working sript or some kinds of soulution so that upon putting in my password for network shares it does not open up finder windows and just acts more like good old windows
Does anyone know how to do this on El Capitan?
The terminal command above did nothing fir me.
Thanks.
This did not work for me on CatalinaIf you want to stop the Finder opening a new window for a network drive, use this Terminal command:
Code:defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool false