Holy thread revival Batman!
I took time today to figure this out and I'm pleased to say I have.
You can make an Apple Script that will mount those drives for you. That way, since the system gets a call to mount the drive, there is no call for a new window as the operation happens in the background. You can even include usernames and passwords in there. Here is an example:
tell application "Finder"
try
mount volume "afp://<USER>:<PWD>@<SERVER>/<SHARE>"
on error
display dialog "There was an error mounting the Volume." & return & return & ¬
"The server may be unavailable at this time." & return & return & ¬
"Please inform the Network Administrator if the problem continues." buttons {"Okay"} default button 1
end try
end tell
Here is mine. I right clicked on the Time Capsule disk then "Get Info" and highlighted and copied the server address:
tell application "Finder"
try
mount volume "afp://Time Capsule._afpovertcp._tcp.local/Time%20Capsule"
on error
display dialog "There was an error mounting the Volume." & return & return & ¬
"The server may be unavailable at this time." & return & return & ¬
"Please inform the Network Administrator if the problem continues." buttons {"Okay"} default button 1
end try
end tell
You need to make this in the AppleScript Editor - found in Applications/Utilities/
Then once you have complied it, save it as an application, save it somewhere you like.
Then add the application to run on login (System Preferences - Accounts - Login Items)
Then when you login it will run the script, mount the drive and close the script without opening the finder window.
Any problem's post a reply I'll try to help.
Thanks