Scripting Microsoft UAM
Scripting Microsoft UAM
- Subject: Scripting Microsoft UAM
- From: Amir Bozorgzadeh <email@hidden>
- Date: Wed, 15 Jan 2003 08:31:03 -0600
Has anybody had any luck mounting a share with applescript using
Microsoft's UAM? This script works fine using Apple's authentication.
Here is my script, but it comes back with a -1070 error which I think
means it doesn't understand the authentication module.
set dialogResult to display dialog "Hawk ID" default answer "" default
button "OK"
tell application "File Sharing"
set owner name to "x"
if button returned of dialogResult is "OK" then set owner name to
(text returned of dialogResult)
quit
end tell
set dialogResult2 to display dialog "Password" default answer ""
default button "OK"
mount volume ("afp://" & (text returned of dialogResult) & ":" & (text
returned of dialogResult2) & "@itcnt101.iowa.uiowa.edu/MacApps")
Any help would be greatly appreciated. Thanks.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.