No subject


Thu Mar 5 04:39:10 PST 2009


You can run:
$ defaults write com.apple.AppleShareClient "afp_cleartext_allow" -bool YES
$ defaults write com.apple.AppleShareClient "afp_cleartext_warn" -bool YES

This is for older Novell servers that don=B9t have Universal passwords set up
on them (they really should, but I doubt I need to tell you that).

For then doing the mounts, we have a set of scripts (I assume this is NWEA?=
)
that we use to do the mounts and loads of tests. =A0If this is the case, I ca=
n
send them along off-list, let me know. =A0Or, for opening single apps that
require a mount point, I use script editor to write an app and then save it
as an app bundle so we can brand it and use it. =A0Below is sample code for
this.

     =20
=20
=20
=20

 if     =20
=20
=20
=20

 (list disks) does not contain "VolumeName" then
=A0=A0=A0--test to see if volume is already mounted then
=A0=A0=A0tell application "Finder"
=A0=A0=A0=A0=A0=A0=A0mount volume "afp://user:password@server.domain.org/VolumeName"
=A0=A0=A0end tell
end if
--hide volume from desktops so it doesn=B9t get messed with
do shell script "/usr/bin/SetFile -a V /Volumes/VolumeName"
do shell script "killall Finder"
tell application "System Events" to delay 2
tell application "Finder"
=A0=A0=A0open file "Applications:MyApp" of startup disk
end tell
     =20
=20
=20
=20

=20
 Note in the above that the /usr/bin/SetFile file is from the developer
tools and is used to hide the volume from the desktop. =A0It works much like
the jamf mount=A0=ADhidden command but this doesn=B9t seem to hide it from finder
like the jamf one does (which changed in 6) so that apps can still see the
volume. =A0We use this to launch our apps needing a volume, but don=B9t use it
for testing.

-John


On 3/20/09 11:26 AM, "Thomas Larkin" <tlarki at kckps.org> wrote:

     =20
=20
=20
> =20
> =20
>=20
>  =A0=A0
>=20
> =A0       =20
> =20
> =20
> =20
>=20
>  I thought about that, but I don't want all 6,000 clients accessing the s=
hare
> at once and I also don't want it permanently mounted. =A0In my experience w=
ith
> this testing app from last year is that it works best if you stagger
> connections and testing sessions to say, no more than 400 clients at one =
time.
> =A0       =20
> =20
> =20
> =20
>=20
>  =A0=A0=A0
>=20
> =A0=A0=A0=A0=A0=A0=A0
>=20
> =A0       =20
> =20
> =20
> =20
>=20
>  I am going to try to invoke apple script from the command line like sugg=
ested
> and see if it makes a difference.
> =20
> =20
> =20
>=20
>  =A0=A0=A0
>=20
> =A0=A0=A0=A0=A0=A0=A0
>=20
> =A0       =20
> =20
> =20
> =20
>=20
>  Thanks for everyone's input and help, it is appreciated.
> =20
> =20
> =20
>=20
>  =A0=A0=A0
>=20
> =A0=A0=A0=A0=A0=A0=A0
>=20
> =A0       =20
> =20
> =20
> =20
>=20
>  tom
>        =20
> =20
> =20
> =20
>=20
> =20
>>>>  >>> Miles Leacy <miles.leacy at themacadmin.com> 03/20/09 11:21 AM >>>
> Are you using Open Directory? You can set a share as a login item via
> Workgroup Manager. I'm not sure of the applicable MCX settings off the to=
p of
> my head, but if WGM can do it, you can push the MCX via a dscl script.
>=20
> ----------
> Miles A. Leacy IV
>=20
> =95 Certified System Administrator
> =95 Certified Trainer
> Certified Casper Administrator
> ----------
> voice: 1-347-277-7321
> miles.leacy at themacadmin.com
> www.themacadmin.com <http://www.themacadmin.com>
>=20
>=20
>=20
>=20
> =A0=A0=A0=A0
> =A0
> =A0
>=20
> =A02009/3/20 Thomas Larkin =A0=A0=A0=A0=A0
> =A0
> =A0
>=20
> =A0<tlarki at kckps.org> =A0=A0=A0=A0=A0=A0=A0
> =A0
> =A0
>=20
> =A0
> =A0
> =A0
>        =20
> =20
> =20
>> =20
>> =20
>>=20
>> =20
>>  =A0
>>=20
>> =A0         =20
>> =20
>> =20
>> =20
>>=20
>>  Still no dice. The problem I think I am having is that these shares are=
 on
>> old Netware 6.5 servers and 6.5 supports AFP but heck if I know what ver=
sion
>> of AFP it is. I do know that it is old enough that it does not support
>> encrypted passwords. If I recall you need to have universal passwords en=
abled
>> and well the Novell side is being migrated to SuSe but I am not really a=
 part
>> of that project. Different network admins.
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>>=20
>> =A0
>> =A0
>> =A0
>>=20
>> =A0         =20
>> =20
>> =20
>> =20
>>=20
>>  So, I can hit cmd + K and connect to the file share just fine. I can't
>> connect via command line. I don't know if there is actually a difference=
. DNS
>> is kind of weird because we have an old DNS running on some legacy syste=
ms,
>> which it is running an older DNS for these file shares. At this point in=
 time
>> I am almost considering hosting the database file on one of my Mac serve=
rs
>> instead. I don't know how well that will fare though, and my window to g=
et
>> this working is getting shorter and shorter.
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>>=20
>> =A0
>> =A0
>> =A0
>>=20
>> =A0         =20
>> =20
>> =20
>> =20
>>=20
>>  I just want to create a generic account, grant it access to this one
>> particular file on a network share so the application can write data to =
the
>> database file. Once the file share is mounted the application launches a=
nd
>> takes care of the rest.
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>>=20
>> =A0
>> =A0
>> =A0
>>=20
>> =A0         =20
>> =20
>> =20
>> =20
>>=20
>>  It works if I do it manually, no problem. I however, want to have the e=
nd
>> user click one self service policy and have all the work done for them u=
nder
>> the hood. That way they just click and it works.
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>>=20
>> =A0
>> =A0
>> =A0
>>=20
>> =A0         =20
>> =20
>> =20
>> =20
>>=20
>>  I was looking at Apple Scripts but those can be interrupted by the end =
user.
>> I'd rather it work under the hood via a shell script.
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>> =A0
>>=20
>> =A0
>> =A0
>> =A0
>> =A0___________________________
>> Thomas Larkin
>> TIS Department
>> KCKPS USD500
>> tlarki at kckps.org
>> blackberry: 913-449-7589
>> office: 913-627-0351
>>=20
>>=20
>>=20
>>=20
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>> =A0
>>=20
>> =A0>>> Eric Winkelhake <eric.winkelhake at mundocomww.com> 03/19/09 5:29 PM >=
>>
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>> =A0
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>> =A0
>>=20
>> =A0
>> =A0I think he's looking to have the user log in with their creds, right?? =
so
>> actually that osascript works if you remove the user name and password p=
art.
>> that'll make the finder request that the user log in rather then the she=
ll.
>>=20
>> eric winkelhake
>> mundocomww
>> office 312 220 1669
>> cell 312 504 5155
>>=20
>>=20
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>> =A0
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>> =A0=A0
>> =A0=A0=A0         =20
>> =20
>> =20
>> =20
>>=20
>>  Yaniv Lugassy <ylugassy at promedianj.com
>> =20
>> =20
>> =20
>>=20
>>>  >
>>          =20
>> =20
>> =20
>> =20
>>=20
>>  Sent by: casper-bounces at list.jamfsoftware.com
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =20
>> =20
>> =20
>>=20
>>  03/19/2009 05:23 PM
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =20
>>=20
>>           =20
>> =20
>>=20
>>  =A0=A0=A0         =20
>> =20
>> =20
>> =20
>>=20
>>  To         =20
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =20
>>=20
>>           =20
>> =20
>>=20
>>  =A0=A0=A0         =20
>> =20
>> =20
>> =20
>>=20
>>  Thomas Larkin <tlarki at kckps.org
>> =20
>> =20
>> =20
>>=20
>>>  >, Thomas Larkin <TLARKI.PO-001.admin at kckps.org>,
>>> <casper at list.jamfsoftware.com> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =20
>>=20
>>           =20
>> =20
>>=20
>>  =A0=A0=A0         =20
>> =20
>> =20
>> =20
>>=20
>>  cc         =20
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =20
>>=20
>>           =20
>> =20
>>=20
>>  =A0=A0=A0
>> =A0=A0=A0=A0         =20
>> =20
>>=20
>>           =20
>> =20
>>=20
>>  =A0=A0=A0         =20
>> =20
>> =20
>> =20
>>=20
>>  Subject       =20
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =20
>>=20
>>           =20
>> =20
>>=20
>>  =A0=A0=A0         =20
>> =20
>> =20
>> =20
>>=20
>>  Re: [Casper] need advice on self service mount points, and app launchin=
g
>> =20
>> =20
>> =20
>>=20
>>  =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>>=20
>> =A0
>> =A0
>> =A0=A0
>> =A0=A0=A0
>> =A0=A0=A0=A0=A0
>> =A0=A0=A0=A0=A0
>>=20
>> =A0
>> =A0
>> =A0=A0=A0=A0
>>=20
>> =A0
>> =A0
>> =A0
>> =A0         =20
>> =20
>> =20
>> =20
>>=20
>>  How about something like this for the script, should do the mount for y=
ou
>> without any problems:
>>=20
>> osascript -e 'mount volume "afp://username:pass@servername/sharepoint
>> <afp://username:pass@servername/sharepoint> "'
>>=20
>>=20
>>=20
>> Yaniv Lugassy
>> Promedia Technology Services, Inc.
>> Office: 973.253.7600 x2308
>> Fax: 973.253.5601
>> www.promedianj.com <http://www.promedianj.com> <http://www.promedianj.co=
m
>> <http://www.promedianj.com>  <http://www.promedianj.com/> >
>>=20
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0
>>=20
>> =A0
>>=20
>> From: Thomas Larkin <tlarki at kckps.org <tlarki at kckps.org>
>> <http://tlarki@kckps.org> >
>> Date: Thu, 19 Mar 2009 15:04:32 -0500
>> To: Thomas Larkin <TLARKI.PO-001.admin at kckps.org
>> <TLARKI.PO-001.admin at kckps.org>  <http://TLARKI.PO-001.admin@kckps.org> =
>,
>> <casper at list.jamfsoftware.com <casper at list.jamfsoftware.com>
>> <http://casper@list.jamfsoftware.com> >
>> Subject: Re: [Casper] need advice on self service mount points, and app
>> launching
>>=20
>>=20
>>=20
>>          =20
>> =20
>> =20
>> =20
>>=20
>>  Well
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  A bit of progress, but not in the right direction. I can mount the shar=
e
>> fine via the finder, however when using the mount_afp command I can neve=
r get
>> it to work. I always get this error:
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  mount_afp: AFPMountURL returned error 22, errno is 118
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  So this is my method of doing this from the terminal:
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  mkdir /Volumes/FS106
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  mount_afp afp://user:password@10.10.10.10 <afp://user:password@10.10.10=
.10>
>> =20
>> =20
>> =20
>>=20
>>  <mailto:afp://user:password@10.10.10.10
>> <mailto:afp://user:password@10.10.10.10>
>> =20
>> =20
>> =20
>>=20
>>  <mailto:afp://user:password@10.10.10.10> >
>> =20
>> =20
>> =20
>>=20
>>  /Volumes/FS106
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  I am looking at creating a generic user account so it just auto maps vi=
a a
>> script and possibly loop it so that is checks to see if that volume is
>> mounted and then once it is mounted it will launch the app, which will h=
ave
>> location specific configuration for where to look for the database file.
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  Any help would be appreciated
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>>  ___________________________
>> Thomas Larkin
>> TIS Department
>> KCKPS USD500
>> tlarki at kckps.org <tlarki at kckps.org>  <http://tlarki@kckps.org>
>> blackberry: 913-449-7589
>> office: 913-627-0351
>>=20
>>=20
>>=20
>>=20
>>=20
>>>>> >>> "Thomas Larkin" <tlarki at kckps.org <tlarki at kckps.org>
>> =20
>> =20
>> =20
>>=20
>>  <http://tlarki@kckps.org> > 03/19/09 11:28 AM >>>
>>=20
>>=20
>>=20
>>          =20
>> =20
>> =20
>> =20
>>=20
>>  Well
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  This is a bit of a complicated debacle I am in. I have some old Novell
>> servers that do not support encrypted passwords, so I must have users lo=
g in
>> using plain text. So I need to mass edit a plist file on each user accou=
nt to
>> allow this. Then I want them to click once on a self service policy and =
have
>> it map the network share that holds the database files. Then in the app'=
s
>> preferences I already have it pointed out where to look.
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  I looked at the mount_afp command but when I run it in interactive mode=
 it
>> always asks for authentication in the terminal? I can't seem to get a GU=
I
>> based dialog box. I also need it to wait for about 20 seconds while the =
user
>> authenticates and then have it launch the app in question.
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  I have the app configured and it works when I do everything manually, b=
ut I
>> need to wrap this up in a one click solution for the end user, so they d=
on't
>> get confused. My other thought is to just create one generic user accoun=
t
>> that can have access to this database file and then use that generic pas=
sword
>> in the script and just have it mount under the hood with out the user's
>> actual credentials.
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>> =20
>>=20
>>  Thanks for any advice.
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>> =20
>> =20
>>  ___________________________
>> Thomas Larkin
>> TIS Department
>> KCKPS USD500
>> tlarki at kckps.org <tlarki at kckps.org>  <http://tlarki@kckps.org>
>> blackberry: 913-449-7589
>> office: 913-627-0351
>>=20
>>=20
>>=20
>>=20
>>=20
>>=20
>>=20
>>          =20
>> =20
>> =20
>> =20
>>=20
>> =20
>>=20
>>  _______________________________________________
>> Casper mailing list
>> Casper at list.jamfsoftware.com <Casper at list.jamfsoftware.com>
>> <http://Casper@list.jamfsoftware.com>
>> http://list.jamfsoftware.com/mailman/listinfo/casper____________________=
_____
>> ______________________
>> Casper mailing list
>> Casper at list.jamfsoftware.com
>> http://list.jamfsoftware.com/mailman/listinfo/casper
>>=20
>>=20
>> ------------------------------------------------------------------------
>> Disclaimer
>> The information in this email and any attachments may contain proprietar=
y and
>> confidential information that is intended for the addressee(s) only. If =
you
>> are not the intended recipient, you are hereby notified that any disclos=
ure,
>> copying, distribution, retention or use of the contents of this informat=
ion
>> is prohibited. When addressed to our clients or vendors, any information
>> contained in this e-mail or any attachments is subject to the terms and
>> conditions in any governing contract. If you have received this e-mail i=
n
>> error, please immediately contact the sender and delete the e-mail.
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>>=20
>>=20
>> =A0=A0=A0=A0
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>>=20
>>=20
>> ------------------------------------------------------------------------
>>=20
>>=20
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>>=20
>>=20
>> =A0=A0
>> =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0
>>=20
>>=20
>> Mundocom UK Limited, Registered in England and Wales. Registration Numbe=
r
>> 2882166. Registered Office: Warwick Building, Kensington Village, Avonmo=
re
>> Road, London W14 8HQ.
>>=20
>>=20
>>=20
>> =A0
>>=20
>> _______________________________________________
>> Casper mailing list
>> Casper at list.jamfsoftware.com
>> http://list.jamfsoftware.com/mailman/listinfo/casper
>>=20
>>=20
>>=20
>>=20
>>          =20
>> =20
>> =20
> =20
=20
=20

=20
 --
John Wetter
Technology Support Administrator
Educational Technology, Media & Information Services
Hopkins Public Schools
952-988-5373
=20
=20
=20

_______________________________________________
Casper mailing list
Casper at list.jamfsoftware.com
http://list.jamfsoftware.com/mailman/listinfo/casper


--B_3320922085_3085087
Content-type: text/html;
	charset="ISO-8859-1"
Content-transfer-encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Re: [Casper] need advice on self service mount points, and applaunch=
ing</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt=
'><BR>
I seem to have luck using this in applescript:<BR>
<BR>
mount volume &#8220;<a href=3D"afp://servername/sharepoint">afp://servername/=
sharepoint</a>&#8221; as user name &#8220;myusername&#8221; with password &#=
8220;mypassword&#8221;<BR>
<BR>
Also, just in case you miss it only because I have in the past, the sharepo=
int name is case sensitive.<BR>
<BR>
</SPAN></FONT><FONT COLOR=3D"#00007E"><FONT SIZE=3D"2"><FONT FACE=3D"Arial"><SPAN=
 STYLE=3D'font-size:10pt'><BR>
Yaniv Lugassy, ACSA<BR>
Apple Systems Engineer<BR>
</SPAN></FONT></FONT><FONT FACE=3D"Arial"><SPAN STYLE=3D'font-size:12pt'><B>Pro=
media Technology Services, Inc.<BR>
</B></SPAN><FONT SIZE=3D"2"><SPAN STYLE=3D'font-size:10pt'>Office: 973.253.7600=
 x2308<BR>
</SPAN></FONT></FONT></FONT><FONT FACE=3D"Arial"><FONT SIZE=3D"2"><SPAN STYLE=3D'=
font-size:10pt'><FONT COLOR=3D"#0000FE">www.promedianj.com</FONT><FONT COLOR=3D"=
#00007E"> &lt;</FONT><FONT COLOR=3D"#0000FF"><U><a href=3D"http://www.promedianj=
.com">http://www.promedianj.com</a></U></FONT><FONT COLOR=3D"#00007E">&gt; <BR=
>
Fax: 973.253.5601<BR>
</FONT></SPAN></FONT></FONT><FONT COLOR=3D"#00007E"><FONT FACE=3D"Times New Rom=
an"><SPAN STYLE=3D'font-size:12pt'><BR>
</SPAN></FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN =
STYLE=3D'font-size:11pt'><BR>
</SPAN></FONT><FONT COLOR=3D"#00007E"><FONT SIZE=3D"2"><FONT FACE=3D"Arial"><SPAN=
 STYLE=3D'font-size:10pt'>*Please call 973-774-1120 or e-mail </SPAN></FONT></=
FONT></FONT><FONT SIZE=3D"2"><FONT FACE=3D"Arial"><SPAN STYLE=3D'font-size:10pt'><=
FONT COLOR=3D"#0000FF"><U><a href=3D"support at promedianj.com">support at promedianj.=
com</a></U></FONT><FONT COLOR=3D"#00007E"> &lt;</FONT><FONT COLOR=3D"#0000FF"><U=
><a href=3D"mailto:support at promedianj.com">mailto:support at promedianj.com</a></=
U></FONT><FONT COLOR=3D"#00007E">&gt; for technical support and assistance fro=
m your Promedia support team* <BR>
*For all other calls, please contact our Main Number: 973-253-7600<BR>
</FONT></SPAN></FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"=
><SPAN STYLE=3D'font-size:11pt'><BR>
<BR>
<HR ALIGN=3DCENTER SIZE=3D"3" WIDTH=3D"95%"><B>From: </B>Thomas Larkin &lt;<a hre=
f=3D"tlarki at kckps.org">tlarki at kckps.org</a>&gt;<BR>
<B>Date: </B>Thu, 26 Mar 2009 12:46:36 -0500<BR>
<B>To: </B>John Wetter &lt;<a href=3D"john_wetter at hopkins.k12.mn.us">john_wet=
ter at hopkins.k12.mn.us</a>&gt;, Casper List &lt;<a href=3D"Casper at list.jamfsoft=
ware.com">Casper at list.jamfsoftware.com</a>&gt;<BR>
<B>Subject: </B>Re: [Casper] need advice on self service mount points, and =
applaunching<BR>
<BR>
&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT SIZE=3D"4"><FONT FACE=3D"Lucida Grande"><SPAN STYLE=3D'=
font-size:14pt'>Ok, I am about to get a few more gray hairs over this. &nbsp=
;According the man pages and everything I google I am doing this right but i=
t is not working.</SPAN></FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetic=
a, Arial"><SPAN STYLE=3D'font-size:11pt'> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT SIZE=3D"4"><FONT FACE=3D"Lucida Grande"><SPAN STYLE=3D'=
font-size:14pt'>If I mount the share via the finder it works just fine, no i=
ssues. &nbsp;If I mount it via apple script it works to an extend, if I moun=
t it via mount_afp no dice.</SPAN></FONT></FONT><FONT FACE=3D"Calibri, Verdana=
, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt'> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT SIZE=3D"4"><FONT FACE=3D"Lucida Grande"><SPAN STYLE=3D'=
font-size:14pt'>here is my apple script</SPAN></FONT></FONT><FONT FACE=3D"Cali=
bri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt'> &nbsp;&nbsp;&n=
bsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT COLOR=3D"#3366FF"><FONT SIZE=3D"4"><FONT FACE=3D"Lucida=
 Grande"><SPAN STYLE=3D'font-size:14pt'>tell application &quot;finder&quot;</S=
PAN></FONT></FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SP=
AN STYLE=3D'font-size:11pt'> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT COLOR=3D"#3366FF"><FONT SIZE=3D"4"><FONT FACE=3D"Lucida=
 Grande"><SPAN STYLE=3D'font-size:14pt'>mount volume &quot;<I><U><a href=3D"afp:=
//username:password at x.x.x.x:548">afp://username:password@x.x.x.x:548</a></U>=
</I></SPAN></FONT></FONT><FONT FACE=3D"Lucida Grande"><SPAN STYLE=3D'font-size:1=
1pt'> &lt;<a href=3D"mailto:afp://username:password@x.x.x.x:548">mailto:afp://=
username:password at x.x.x.x:548</a>&gt; &quot;</SPAN></FONT></FONT><SPAN STYLE=
=3D'font-size:11pt'><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"> &nbsp;&nb=
sp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</FONT></SPAN><FONT COLOR=3D"#3366FF"><FONT SIZE=3D"4"><FONT FACE=3D"Lucida=
 Grande"><SPAN STYLE=3D'font-size:14pt'>end tell</SPAN></FONT></FONT></FONT><F=
ONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt'> =
&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT SIZE=3D"4"><FONT FACE=3D"Lucida Grande"><SPAN STYLE=3D'=
font-size:14pt'>This works but there are three share points on this server, =
and if I add the share point it, it doesn't work, says server does not exist=
 or spits out a syntax error. &nbsp;Now if I could get this to work</SPAN></=
FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'fon=
t-size:11pt'> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT COLOR=3D"#00CCFF"><FONT SIZE=3D"4"><FONT FACE=3D"Lucida=
 Grande"><SPAN STYLE=3D'font-size:14pt'>tell application &quot;finder&quot;</S=
PAN></FONT></FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SP=
AN STYLE=3D'font-size:11pt'> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT COLOR=3D"#00CCFF"><FONT SIZE=3D"4"><FONT FACE=3D"Lucida=
 Grande"><SPAN STYLE=3D'font-size:14pt'>mount volume &quot;<I><U><a href=3D"afp:=
//user:password at x.x.x.x:548/sharepoint">afp://user:password@x.x.x.x:548/shar=
epoint</a></U></I></SPAN></FONT></FONT><FONT FACE=3D"Lucida Grande"><SPAN STYL=
E=3D'font-size:11pt'> &lt;<a href=3D"mailto:afp://user:password@x.x.x.x:548/shar=
epoint">mailto:afp://user:password@x.x.x.x:548/sharepoint</a>&gt; &quot;</SP=
AN></FONT></FONT><SPAN STYLE=3D'font-size:11pt'><FONT FACE=3D"Calibri, Verdana, =
Helvetica, Arial"> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</FONT></SPAN><FONT COLOR=3D"#00CCFF"><FONT SIZE=3D"4"><FONT FACE=3D"Lucida=
 Grande"><SPAN STYLE=3D'font-size:14pt'>end tell</SPAN></FONT></FONT></FONT><F=
ONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt'> =
&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT COLOR=3D"#00CCFF"><FONT SIZE=3D"4"><FONT FACE=3D"Lucida=
 Grande"><SPAN STYLE=3D'font-size:14pt'>I would be golden!</SPAN></FONT></FONT=
></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-si=
ze:11pt'> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT SIZE=3D"4"><FONT FACE=3D"Lucida Grande"><SPAN STYLE=3D'=
font-size:14pt'>Any advice? &nbsp;Any Novell wizards around here? &nbsp;Also=
, how well does casper fair with Apple scripts I normally don't use them?</S=
PAN></FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYL=
E=3D'font-size:11pt'> &nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
<BR>
&nbsp;</SPAN></FONT><FONT SIZE=3D"4"><FONT FACE=3D"Lucida Grande"><SPAN STYLE=3D'=
font-size:14pt'>Thanks,<BR>
</SPAN></FONT></FONT><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN =
STYLE=3D'font-size:11pt'><BR>
<BR>
___________________________<BR>
Thomas Larkin<BR>
TIS Department<BR>
KCKPS USD500<BR>
<a href=3D"tlarki at kckps.org">tlarki at kckps.org</a><BR>
blackberry: &nbsp;913-449-7589<BR>
office: &nbsp;913-627-0351<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
&gt;&gt;&gt; John Wetter &lt;<a href=3D"john_wetter at hopkins.k12.mn.us">john_w=
etter at hopkins.k12.mn.us</a>&gt; 03/20/09 12:28 PM &gt;&gt;&gt;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;<BR>
&nbsp;<BR>
&nbsp;<BR>
<BR>
&nbsp;Tom,<BR>
<BR>


More information about the Casper mailing list