Pushing out a script to run via ARD

I have the following script I am running into two issues with
1)  Instead of running it as root, can we run as a member of the admin group.
2)  Can this be pushed out via ARD?
#!/bin/bash
#This script needs to run as root
ROOT_UID=0
if [[ $UID -ne $ROOT_UID ]]; then
echo "YOU MUST BE ROOT TO RUN THIS SCRIPT"
exit 1
fi
OLD="<string>The owner or any administrator can unlock the screensaver.<\/string>"
NEW="<string>(Use SecurityAgent.) The owner or any administrator can unlock the screensaver.<\/string>"
cp /private/etc/authorization /tmp/auth.tmp
sed "s/$OLD/$NEW/" /tmp/auth.tmp > /tmp/authorization
mv /private/etc/authorization /private/etc/authorization.previous
mv /tmp/authorization /private/etc/authorization
rm /tmp/auth.tmp

Do not remove the "root user reference" from the script. Without "the reference" the script will place a modified authorization file in the /tmp directory. To modify the /private/etc/authorization file you must be root or an admin user with the proper authorization (You would use sudo in the shell environment). Here's a safer and cleaner version of that script->
#!/bin/bash
OLD="<string>The owner or any administrator can unlock the screensaver.<\/string>"
NEW="<string>(Use SecurityAgent.) The owner or any administrator can unlock the screensaver.<\/string>
# use sed to make a backup of the original file then edit the file in place
/usr/bin/sed -i.previous "s/$OLD/$NEW/" /private/etc/authorization

Similar Messages

  • Pushing Out User Account Using ARD

    Does anyone know if it is possible to push an entire user account from the administrative computer to a client computer? I am trying to come up with an easy way to create a new user account on 35 student computers in a lab setting. Thanks

    Hi
    You should be able to achieve this using the command line? The commands that follow need to be run as root. As an example let's use one of Apple's 'favourite' test users - Howie Doitt.
    Create a new entry in the local domain under the category /Users
    dscl . -create /Users/howiedoitt
    Create and set the shell property
    dscl . -create /Users/howiedoitt UserShell /bin/bash
    Create and set the user’s full name
    dscl . -create /Users/howiedoitt RealName "Howie Doitt"
    Create and set the user’s ID (assuming only one account?)
    dscl . -create /Users/howiedoitt UniqueID 510
    Create and set the user’s group ID (the default staff group)
    dscl . -create /Users/howiedoitt PrimaryGroupID 20
    Create and set the user home directory
    dscl . -create /Users/howiedoitt NFSHomeDirectory /Local/Users/howiedoitt
    Set the password - if desired?
    dscl . -passwd /Users/howiedoitt whateverpasswordyouwant
    If you would like howiedoitt to be able to perform administrative duties
    dscl . -append /Groups/admin GroupMembership howiedoitt
    Restart the workstation(s) or log out the current user and log in again as the new user for changes to take effect. If there was no home folder created it will be created on successful login with the appropriate POSIX permissions set. You could pre-create the home folder in /Users using the mkdir command making sure you define that folder's name as the created user's shortname.
    There are a number of ways of doing the above using ARD. You could do it command by command applied to a selected list of computers. Or combine the whole lot into a script and run the script. You could even schedule when the script can be run.
    Tony

  • Running CS3Clean via ARD send unix command?

    Anyone know the proper commands to run this via ARD? Since the two dont play well together we need to uninstall CS3 for CS4 in remote cities.
    I've tried:
    sudo python /MacCS3Clean/CS3Clean.py
    I am not UNIX guru by any means but I can back engineer it.  This command runs it but it needs to add the additional information asked when you run the script manually or it hangs.

    Patrick Seibert wrote:
    I am basically in charge of testing for this migration. All of my test machines have produced license issues either for CS3 or CS4 or both. In 90% of cases, installing CS4 on machines with current CS3 breaks the CS3 License.  Adobe tech support told me they do not coexist becuase they overwrite the each others Flexnet licensing system files. We are not using the DVD's to install this either but using Casper to deply via network and install the package. So either your retail installer is different Adobe tech lied to me or you are using a pirated version with flexnet ripped out.
    I am using retail installs. I've never had a problem with multiple versions ever as each version is its own application. I have never used Flexnet Licensing so I can't answer that. All I know is everything works and I have no conflicts.

  • Script issue,Java install from script, push out to servers.

    this is a non standard install for Java that has to be installed from a script.  basically this script will run against a given amount of servers, stop the required services ( pertains to the application that requires Java on the server), uninstall
    java, install java, configure java with correct parameters and security permissions then lastly output a log file to the server that is running the script (folder) of each server .  each server will have thier own text file.   so two issues first
    java uninstalls but does not install due to a permissions error, and the other  issue that is occuring is there should be a log file for each server the
    log file will have the server name as the file namey, the script will look at the server list and run the code on that server so basically the script
    will run at the same time on all the servers, and create log file for each server and put in the folder i designate.  - this is not occuring based on the Powershell script below. what parameter is missing below. thanks
    $user = Read-Host 'Username:'
    $pass = Read-Host 'Password:'
    $result = "D:\Temp\" + $env:COMPUTERNAME +"_JavaUpdate.log"
    $copyfinal = "\\wsive005pap\d$\BatchFiles\Java_Update\"
    #Stop NCSB and Tomcat Services
    Stop-Service Tomcat7
    Stop-Service "NuanceCSB"
    #Uninstall Java
    Get-WmiObject -Class win32_product | ? {$_.Vendor -like "*Oracle*"} | % {msiexec /x "$($_.IdentifyingNumber)" /qn | Out-Null}
    Start-Sleep -s 120
    "Java 7 Uninstalled" | Out-File $result -append
    #Install Java
    $JRE = "D:\Installations\NVP 4.0 Install\jre-7u76-windows-i586.exe"
    & $JRE /s INSTALLDIR=D:\Apps\Progra~1\Java\jre7\ /l D:\Temp\javainstall.log | Out-Null
    Start-Sleep -s 240
    "Java 7 Installed" | Out-File $result -append
    #Configure Java
    $pattern = "security.provider.10=sun.security.mscapi.SunMSCAPI"
    $javasec = "D:\APPS\Program Files (x86)\Java\jre7\lib\security\java.security"
    $viecore = "security.provider.11=cryptix.provider.Cryptix"
    (Get-Content $javasec) |
        Foreach-Object{
            if($_ -match $pattern)
                $_ 
                $viecore
            } else {
                $_ 
         } | Set-Content $javasec
    "Java Configured" | Out-File $result -append
    #Start NCSB and Tomcat Services
    Start-Service Tomcat7
    Start-Service "NuanceCSB"
    #Updating log files and push to the central server
    $javaver = gci "D:\APPS\Program Files (x86)\Java\jre7\bin\java.exe"
    $tomcatver = "D:\APPS\Program Files (x86)\Apache Software Foundation\Tomcat 7.0_Tomcat7\lib\catalina.jar"
    "*****Check Java and Tomcat Version*****" | Out-File $result -append
    & $javaver -cp $tomcatver org.apache.catalina.util.ServerInfo | Out-File $result -append
    "*****Check Services Started*****" | Out-File $result -append
    Get-Service | Where-Object {$_.Name -eq "NuanceCSB"} | Out-File $result -append
    Get-Service | Where-Object {$_.Name -eq "Tomcat7"} | Out-File $result -append
    "*****Check Java Security File*****" | Out-File $result -append
    Select-String -Path $javasec -Pattern "cryptix" | Out-File $result -append
    "*****Print log file for CTI connections*****" | Out-File $result -append
    Get-Content "D:\APPS\NuanceCSB\logs\stdout.log" | Out-File $result -append
    "*****Print log file for connector*****" | Out-File $result -append
    Get-Content "D:\APPS\NuanceCSB\logs\CSB.log" | Out-File $result -append
    NET USE \\wsive005pap\d$ $pass /user:CORP\$user
    Copy-Item $result $copyfinal
    NET USE \\wsive005pap\d$ /delete

    Hi Gow,
    I would like to know how did you deploy the .ps1 script on remote computers like using task scheduler or something else, please make sure the user account you used to run this script on every server has enough permission.
    According to your script, it will produce a log file under "D:\Temp\" and this file will be copied to the destination
    \\wsive005pap\d$\BatchFiles\Java_Update\, please check the username and the password, and also make sure the folder exist before copy, then test the script below separately:
    $user = Read-Host 'Username:'
    $pass = Read-Host 'Password:'
    $result = "D:\Temp\" + $env:COMPUTERNAME +"_JavaUpdate.log"
    $copyfinal = "\\wsive005pap\d$\BatchFiles\Java_Update\"
    Get-Content "D:\APPS\NuanceCSB\logs\stdout.log" | Out-File $result -append
    Get-Content "D:\APPS\NuanceCSB\logs\CSB.log" | Out-File $result -append
    NET USE \\wsive005pap\d$ $pass /user:CORP\$user
    get-item \\wsive005pap\d$\BatchFiles\Java_Update\
    Copy-Item $result $copyfinal
    NET USE \\wsive005pap\d$ /delete
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Failing to push out apps via profile manager

    Hi,
    Been helping out at a school where they have bought 90 iPads for their kids to use - after weeks of frustrations they were all finally enrolled on the mac server (runs OS X Yosemite). Thought I had finally managed to help them finish it off but now when they try too push out apps from profile manager they're having an issue.
    The devices are grouped in groups of 30 and when I tried too push out an app to them (Scratch Jr, if that makes any difference at all) it would only push out to 14 of the iPads in the group - with varying degrees of success. The room there kept in doesn't have a great signal from their wi-fi so I thought it might have something to do with that but when I tried to push out another app (PhotoMath) it got pushed out to all the iPads in the group, again with varying degrees of success.
    Essentially I have 2 problems - Why would the server only push out to some iPads for some apps but then suddenly find them all when pushing out an another? And why would some iPads not even pick up the app? Even when, in the active tasks, it says app deployment has been successful? The school have had these iPads since September and have only been able to use them sparingly - so to say they're dead keen would be an understatement.
    I hope I'm making sense - please help! I've checked the logs from the server but I'd be lying if I said I could understand that stuff...
    Thank you.

    I'm not familiar with LANDesk, but ARD will allow you to push files to remote Macs as specify their locations.
    So if everybody need a particluar font on their computer, you could push it to /Library/Fonts on all of your Macs. You can also remotely install packages. This is useful if your deploying a something like Adobe CS5 to a bunch of workstations.

  • Issue with ARD 3.0 not pushing out Installs, Says its installing but not

    Issue with ARD 3.0 not pushing out Installs, Says its installing but not
    Has anyone seen this. It seems to happen with ARD 3, have not seen this in ARD 2.
    I go to the Install Packages on Target Computers, put in: 10.4.7 Combo (for the correct CPU, PPC or Intel), security updates, QT 7.1.2, etc.
    Push it to Macs I can connect to, observe and control.
    The progress bar copies the files (in some instances it does not) and then it just hangs there, bar does not move, Installs never finish, not good, very odd.

    Is it the same clients that have the problem every time? Are those clients doing anything cpu intensive? Have you tried rebooting the affected clients?
    Maybe try a smaller package on those clients.

  • Silently/remotely upgrading clients from 10.6 to 10.7 via ARD/Script

    Hi!
    Apple finally made it possible to upgrade from a major OS (10.6 to 10.7) via an application running on the client, rather than having to boot of a DVD on 100 individual computers.
    Does anyone know of a way to kick this installation procedure off remotely?
    Currently I am remoting onto the machines via ARD and manually clicking the "Install Mac OS X Lion" app, then choosing Next, Next, Next, Install
    it would be nice to be able to schedule this via an ARD task so the installer runs silently without the need to click on the GUI to kick off the installation.
    Any ideas?
    TIA!
    FZ

    I can add it's the same with upgrading to Lion... So I guess they changed some driver code between 10.6.7 and 10.6.8 and its not compatible with my logic board.
    Annoying tbh..

  • Pushing out MSI's via GPO for Windows 8.1

    I'm having an issue trying to push Flash Player 13 MSI via GPO to Windows 8.1 machine. It pushes out fine to windows XP pro and windows 7 pro. I know the GPO works, just not for 8.1. I've don't gpupdate /force and still nothing.
    Has anyone else had any issues with this?  Is there something I'm missing for 8.1 MSI deployment via GPO?
    THANKS!

    Hi Dale Ham,
    Updates will automatically be made available through the built in Windows Update system. For your information, please refer to the following article to get more
    help:
    http://forums.adobe.com/message/4814662
    Note:
    Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Regards,
    Lany Zhang

  • When I open FB it says a script is running and now I can't post pictures, feelings or any of the buttons, and even when I push post it stays grey

    I have a new computer and run Symantec protection on it. When I open Facebook it always says a script is running and asks me what I want to do (continue, debug or end script). Then I can't post pictures of anything on that grey toolbar. When I post just words it stays light grey and if I try to leave the page it says I'm not done, but then posts it anyways...
    Any help would be appreciated. It only happens on mozilla.

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Click the menu button [[Image:New Fx Menu]], choose History, and then "Clear Recent History...".
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the "Clear Now" button.
    Further information can be found in the [[Delete browsing, search and download history on Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Deploy CUPS printers.conf file via ARD?

    Hi all
    Anyone have an idea how to push out CUPS Printers to Tiger clients using ARD 3? I have been trying to send out the printers.conf file located in /etc/cups to a few Macs, but after the CUPS file copies to its destination, print jobs error out with a generic "a printing error has occurred" message. I checked permissions, etc and everything looks good. I assume Im missing another file somewhere but am stumped.
    Basically what I want to do is set my Mac with 5 AppleTalk printers from my LAN, and then reproduce those printers for 10 other Macs so that those users see the exact same printers I see in my Print Setup Utility. I don't want to have to set up the printers manually on each Mac. I figured it would be a no-brainer to just copy my "golden" CUPS file via ARD to the other Macs but I'm having no luck at all thus far.
    Once the printers.conf file is copied to their Macs, They can "see" the new printers in their Print Setup Utility.app as desired, but they are unable to print to any of them ("printer error occured"). Rebooting doesn't help.
    Facts:
    All Macs and printers are in the same AppleTalk zone.
    All Macs are on the same subnet and VLAN.
    All Macs are the identical version of OS X and are from the same NetBoot NetRestore master image.
    All Macs are running 10.4.7.
    Users do not need to authenticate to print.
    All printing is done direct to the printers - no print server is in the middle.
    All Macs have the ARD 3.0 client properly installed.
    All Macs are Power Mac PPC G5s with 1.5 GB RAM.
    No users are logged into their Macs when I attempt to copy the printers.conf file (no users are printing or running Print Setup Utility etc)
    All of the printers are PostScript/PCL HP LaserJet's with valid AppleTalk names and Zone info.
    I can print to all of the printers just fine and my other Macs can print to them also when configured manually.
    There must be a practical way to mass-deploy CUPS printer settings to my Macs via ARD. Obviously I'm missing a critical step. Any ideas?
    Thanks!

    This is possible, but you have to be very careful because one mistake will cause this to fail:
    1. On your template computer system, reset the printing system via Printer Setup Utility then configure your printers.
    2. Backup the following files, noting their proper POSIX permissions:
    /etc/cups/printers.conf (root:lp, 600)
    /etc/cups/ppd (whole folder) (root:lp, 755)
    3. Use ARD to deploy the files in the following way:
    a. Log out all users on the client systems and reset the printing system by executing Apple's Reset Printing System script via Send UNIX command as root:
    /Applications/Utilities/Printer\ Setup\ Utility.app/Contents/MacOS/PrintingReset.sh
    b. Stop CUPS (PrintingServices) before copying any new configuration files (Send UNIX Command as root): SystemStarter stop PrintingServices
    c. Distribute the printers.conf file and ppds folder to the clients. You can either copy the items there via Copy Items, setting owner and group to root and lp, and issuing appropriate chmod commands via Send UNIX Command to set their permissions.
    d. Repair Permissions (Send UNIX Command as root): diskutil repairPermissions /
    e. Start PrintingServices again: SystemStarter start PrintingServices, and restart.
    That should work. You can also distribute a printer list via the managed client, storing a printer list in the com.apple.mcxprinting XML file in an attribute mapped to dsAttrTypeStandard:MCXSettings in a computer (dsRecTypeStandard:Computers) account or group (dsRecTypeStandard:Groups) account. Account types from NetInfo, LDAPv3, or Active Directory will work.
    --Gerrit

  • Root vs. admin softwareupdate via ARD 2.0

    Hello,
    I've searched here and have not been able to find a similar post. I have an office of about 25 Tiger clients (10.4.6) which get their directory information via LDAP from a Tiger server(10.4.6). If I run softwareupdate from the GUI as an admin account or even from the command line as admin, softwareupdate looks to the local server, which is running the softwareupdate service. If, however, I run softwareupdate as root (which I have to do via ARD, from what I can tell) it checks Apple's servers and wants to download from them. This is a source of frustration because I don't want to have to visit every machine, nor do I prefer to download updates on my admin machine and then push the package out with ARD.
    I'm wondering if using softwareupdate via root is designed to work this way, or if it's a bug. If it's a bug, I'll report it to Apple.
    If this has happened to any of you, please resond with your solution.
    By the way, if I send this command:
    sudo -u admin softwareupdate -i -a
    via ARD as root user, I am prompted for a password, which I'm not sure how to enter. The task just fails.
    Thanks in advance!
    Sean

    It sounds like your group is pushing out Workgroup Management (MCX) from your MacOS X Server box, specifically they are setting the Software Update server. But it sounds like they are setting this as a policy based on groups, rather than on computers. So since root is not in any of the groups managed by the MCX settings, when you run Software Update it is not set, and is defaulting to the built-in address.
    If you really wanted to do it without making changes (if they don't want to put that in for "guest" computers and every other one), then you could use:
    defaults write /Library/Preferences/com.apple.SoftwareUpdate CatalogURL http://your.softwareupdateserver.com:8088/
    note that that last goes all on one line, and is taken from afp548.com.

  • Push out Adober Reader changes to Macs

    I have a network with both Windows and Mac clients that use Adobe Reader.  I already know how to use Active Directory Group Policy to push the necessary registry changes so that my Windows based clients can have their Adobe Reader settings updated.
    However, for my Mac users where the settings exist in .plist files, I have been searching for a way to centrally update these same settings (I'm interested in pushing out security related settings when Adobe releases security advisories saying that the mitigation is to ensure that certain settings are in place until a full blown patch is released).
    Does anyone know how to push out .plist settings changes from a central point similar to what AD Group Policy allows with registry changes?
    Thanks,
    Brandon

    I ran into this issue some time ago as well and wrote just such a script!
    Here's an exerpt from my documentation:
    Lastly we need to add the Printer via the command line. Here's how:
    First thing we need to do is copy the PPD file to the correct location. By default it's in /Library/Printers/PPDs/Contents/Resources/
    The PPD in question can be found specifically by typing lpinfo -m This lists all of the printer drivers available to cups.
    You must copy the gz file using sudo. It needs to be copied to /usr/share/cups/model/
    The copy command looks like this:
    sudo cp /Library/Printers/PPDs/Contents/Resources/HP\ LaserJet\ P3010\ Series.gz /usr/share/cups/model/
    Once there, you run the script to install it.
    I've left the scripts in the Public/Techy Stuff for each printer we use in the highschool.
    So, the command looks like this. It's a bit of a trick cause figuring out the details as to how it's supposed to work just by looking in the man pages usually *****.
    I'll explain...  The command is as follows:
    lpadmin -p LabLaser -E -v socket://192.168.1.11 -m HP\ LaserJet\ 1320\ Series.gz -o printer-is-shared=false
    lpadmin -p LabLaser adds the printer and calls it "LabLaser"
    -E forces encryption while connecting to the server. It's probably not necessary but it's in all the examples on the web that I could find.
    -v gives you the opportunity to specify the location of the printer. In ***** case they're all network printers with valid IP addresses and MDNS addresses, so yeah. socket:// for standard IP printing protocol (IPP) mdns:// for bonjour.
    Get the mdns name from lpinfo -m
    ...the -m specifies the name of the PPD. See above. (this is the driver that I copied to /usr/share/cups/model/)
    -o is pretty self explanitory...  However I feels it's extremely important.  This will prevent the printer from showing up in the bonjour list of printers on the network even if the user has printer sharing turned on.
    Hope this helps!
    -Graham

  • Root vs. admin softwareupdate via ARD

    Hello,
    I've searched here and have not been able to find a similar post. I have an office of about 25 Tiger clients (10.4.6) which get their directory information via LDAP from a Tiger server(10.4.6). If I run softwareupdate from the GUI as an admin account or even from the command line as admin, softwareupdate looks to the local server, which is running the softwareupdate service. If, however, I run softwareupdate as root (which I have to do via ARD, from what I can tell) it checks Apple's servers and wants to download from them. This is a source of frustration because I don't want to have to visit every machine, nor do I prefer to download updates on my admin machine and then push the package out with ARD.
    I'm wondering if using softwareupdate via root is designed to work this way, or if it's a bug. If it's a bug, I'll report it to Apple.
    If this has happened to any of you, please resond with your solution.
    By the way, if I send this command:
    sudo -u admin softwareupdate -i -a
    via ARD as root user, I am prompted for a password, which I'm not sure how to enter. The task just fails.
    Thanks in advance!
    Sean
    PowerBook G4 / 15 / 1.67GB / SD   Mac OS X (10.4.6)  

    It sounds like your group is pushing out Workgroup Management (MCX) from your MacOS X Server box, specifically they are setting the Software Update server. But it sounds like they are setting this as a policy based on groups, rather than on computers. So since root is not in any of the groups managed by the MCX settings, when you run Software Update it is not set, and is defaulting to the built-in address.
    If you really wanted to do it without making changes (if they don't want to put that in for "guest" computers and every other one), then you could use:
    defaults write /Library/Preferences/com.apple.SoftwareUpdate CatalogURL http://your.softwareupdateserver.com:8088/
    note that that last goes all on one line, and is taken from afp548.com.

  • Deploying AppleMail settings via ARD - is it possible?

    Hello,
    I want to set AppleMail settings for about 50 Users via ARD.
    First of all IMAP settings, next account details based on the local non-admin user.
    Any idea?
    Thanks a lot!
    Jochen

    ARD cant do this directly, but you can send an OSA script to do this. Here is one I use. You send a UNIX command:
    osascript -e 'tell application "System Events"' -e 'keystroke "q" using command down' -e 'end tell'
    You can string together commands by using -e. This comes in really useful for product serial numbers, for instance:
    osascript -e 'tell application "System Events"' -e 'keystroke "Company Name"' -e 'keystroke tab' -e 'keystroke "Company Location"' -e 'keystroke tab' -e 'delay 2' -e 'keystroke "REALLY long pointless serial number"' -e 'delay 2' -e 'keystroke return' -e 'end tell'
    In this example, "delay 2" means wait two seconds. Older systems / apps will actually have an issue with receiving the keystrokes to fast, and do nothing. Quark is the worst offender here, and I need to run a delay of 5 seconds, even on mac Pros.
    I also use it for logging in a bunch of system as a maintenance user. I will log out everyone, and then issue:
    osascript -e 'tell application "System Events"' -e 'keystroke "Service User"' -e 'keystroke tab' -e 'delay 2' -e 'keystroke "myPasswordHere"' -e 'delay 2' -e 'keystroke return' -e 'keystroke return' -e 'end tell'
    You will notice here that you need to hit enter twice... This is a bug in the login system. 50% of your systems will not continue with hitting enter only once in script (although they work perfectly fine hitting enter once at the keyboard).
    Hope this helps.

  • How can I 'login' as a different user via ARD?

    It has been too many years and I cannot remember much of anything anymore...
    My main computer is running the ARD admin app. I have a 'server' that has the
    client software installed and setup to auto login to my admin account on the 'server'.
    I can easily connect to the server using ARD... however I would like to connect
    as a different user ( the postgresql admin account).
    Is is possible to do this via the ARD software?
    If I log out on my main admin account on the server while connected via ARD
    then the remote desktop software on my main
    computer reports that ARD in no longer active on the server client and I cannot access
    the server via ARD without rebooting the server.
    The help menu in ARD gives an Applescript that supposedly will allow a login from
    the clients login screen but I don't seem to recall how to setup the client so
    that one can access the server if the login screen is up...
    I am running the latest everything...
    In short-- Can I use ARD to connect as different users on a client machine? ( if so how)
    Thanks
    Jerry

    Ok,
    Never mind...
    I enabled postgres in the sharing panel.
    When I log out I get the login screen and I can directly
    login to the postgres account via ARD.
    Thanks
    Jerry

Maybe you are looking for

  • I barely have any apps and it's telling me I have no storage when I try to download

    basically i I have no photos , five apps , and two songs ; when I try to download or update an app it will say my storage is full and not let me take photos or download stuff . This is really frustrating because I've tried restarting my apps and ever

  • Parse errors while creating a Web service from Java class!

    Can anybody tell me please, is it possible to create a Web Service from java class where the input from user is required ? I have the following program, which is successfully compiled, but when I'm trying to make a web service in JDeveloper, the foll

  • Adobe Pixel Bender Plug-In for Photoshop CS5

    Can the Adobe Pixel Bender Plug-In for Photoshop CS5 be used in Photoshop CS6?  And, more specifically can it be used with Windows 7 operating system?

  • CS5.5 installing 32 & 64bit AME

    Hello. I've just installed CS5.5 onto a Server 2008 R2 64bit OS. For some reason it is installing AME in both Program Files\Adobe Media Encoder CS5.5 and Program Files (x86)\Adobe Media Encoder CS5.5 and when I launch AME from Premiere (Export Media

  • Copy user roles/profiles : Su01

    Hello, I want to copy user roles /privileges from one user to other? how do we do this and which user can do this ? my pisuper does not seem to have authority to copy user profiles from one user to other? Thanks