Posted on 11-13-2014 02:04 AM
Hi guys.
I am new to this Casper Suite. I apologize for my ignorance and I would appreciate any help that i can get for these two things:
Can this be done in the background?
We are using Mountain Lion OSX.
Thanks.
Posted on 11-13-2014 04:45 AM
Hi,
for remote management you can add a script to the JSS and trigger it by a policy, the code would be:
#!/bin/sh
# enable apple remote desktop
/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -activate
# Allow remote access
/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -access -on
# Set specific remote access
/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -allowAccessFor -specifiedUsers
# Set who can have remote access
/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -access -on -users localadmin -privs -all
exit 0
Not sure about the accessibility options but hopefully someone else will.
David