Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'AppleScript will do it' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
AppleScript will do it
Authored by: kworden on Sep 11, '02 10:42:41PM

You can do it with AppleScript. At least to an AFP Server running on WinNT 4.0(it's all i have to try it with)
In Script Editor, Create a new AppleScript and type the example below.
// Start AppleScript
try

mount volume "ShareName" on server "ServerName" as user name "Username" with password "Password"
mount volume "ShareName" on server "ServerName" as user name "Username" with password "Password"

on error error_message

beep
display dialog error_message buttons {"OK"} default button 1

end try
// End AppleScript
Save the File as Run-Only and then go to System Pref's, then Logon Items and Add the file you just created.
Now to test it Logoff and Log back on



[ Reply to This | # ]