Locking Down Finder Command Preferences

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) Locking Down Finder Command Preferences
# 1  
Old 08-05-2010
Locking Down Finder Command Preferences

I understand how to lock down things with the finder in workgroup manager, but for matching commands outside of the workgroup manager realm, what's the best way to insert script in order to disable any one of these features?

Features workgroup manager highlights:

-connect to server
-shut down
-restart
-go to folder
-burn disc
-eject
-go to idisk
-burn disc

I'd like to push out a script command via ssh with the ability to disable which is the focus.
# 2  
Old 08-26-2010
Take server tools and install them on an unbound machine. Use WGM to connect to the local directory services. Configure your desired settings for that local user account. Export that mcx file for that user via dscl command. You can then script a set of commands to import that MCX file and apply the settings to non bound machines.

Directory Services is almost near identical on the local machine as it is in Open Directory.
# 3  
Old 08-31-2010
I'll begin testing this, but the complexity lies in deploying it under Aquaconnect's ability to allow deployment of the settings per user that authenticates within their terminal session. The key is to prevent individual users from shutting down the server or rebooting the server (since there's no golden triangle setup, with an OD server in place).
# 4  
Old 09-03-2010
Quote:
Originally Posted by unimachead
...but the complexity lies in deploying it under Aquaconnect's ability to allow deployment of the settings per user that authenticates within their terminal session.
Presumably, Aquaconnect spawns multiple user sessions via some display functionality, but the actual user session on the server is still identical to a single user logon at the physical server. no?

That is, a new user logging on to the server via Aquaconnect, still automagically gets a "default" home folder on that server, created in /Users/

If that is the case, then any admin user can modify the /System/Library/User\ Template/<language>.proj/Library/Preferences/ directory. That takes care of any new user accounts that are created on the server for remote sessions.
Then you can copy the MCX file to existing user's home folders on the server and change privs for that preference file as needed via a script 'er something?

As I recall, Aquaconnect was positioned as the Mac equivalent to RDC on the PC. If that is the case, then user sessions are spawned on the server
# 5  
Old 11-04-2010
look at the dscl command. Specially the mcx commands. You can read/export/import from here making it very plausible to script in your own management at either machine, group, or user level.
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Insert Command Creating Table Locking Problem

Hi, i have a java based tool which does insert operation in a TABLE, and in parallel the same table is used by my C++ code which does select Query. the Table will be always busy, but sometimes the table is getting locked when i try to make an insert, am bit confused whether the lock is... (9 Replies)
Discussion started by: senkerth
9 Replies

2. Programming

Table Locking in Insert Command.

Hi, i have a java based tool which does insert operation in a TABLE, and in parallel the same table is used by my C++ code which does select Query. the Table will be always busy, but sometimes the table is getting locked when i try to make an insert, am bit confused whether the lock is... (0 Replies)
Discussion started by: senkerth
0 Replies

3. Ubuntu

Scripting sound preferences?

I'm finding myself changing sound preferences (specifically, output) frequently, and I'd like to write a shell script to do this for me. Does anyone know what command(s) to use? (5 Replies)
Discussion started by: CRGreathouse
5 Replies

4. UNIX and Linux Applications

Bluefish: where are the preferences saved?

I have just tried out Bluefish as an alternative to my regular text editor. If I save the modified preferences and reboot, the preferences have to be reentered again. Does anyone know which file the preferences are saved in? The command find / -mmin -5 | grep bluefish yields zero hits. Thanks... (2 Replies)
Discussion started by: figaro
2 Replies

5. Shell Programming and Scripting

Bash shell: Creating Preferences

In OS X I'm currently writing a bash script that requires writing to preference file. I may eventually want to share it with users on other Unix-like OSs and would like to accommodate for that possibility ahead of time. Most OS X applications save preferences in xml-format plist files. These... (4 Replies)
Discussion started by: airsmurf
4 Replies
Login or Register to Ask a Question