Changing multiple file permissions - Applications folder

After using migration assistant in Snow Leopard and then changing the username of my primary user, all third party apps in my Applications folder require me to enter the admin password when moving, updating with Sparkle, etc. They don't seem to have a primary owner.
I saw the steps outlined here: http://discussions.apple.com/thread.jspa?threadID=1778969 for changing permissions on multiple files but I'm wary of doing this on the Applications folder.
Does anyone have any advice on how to fix this? I went through files individually and i'm still getting messed up permissions all over the place. Thanks!

DO NOT use "apply to enclosed items" on the main Applications folder! Do not use it on any system created folders. they often have hidden ACLs and using this button would propagate the ACLs to everything inside. this is the case for the main Applications folder. there is no easy way to do what you want because Apple changed the permissions structure in Snow leopard and the default applications no longer have read+write access by admin users by default. I would suggest you don't mess with permissions on Applications. if you ever need to update a 3rd party application simply delete the existing copy in /Applications and put the new one in. it will have correct permissions.

Similar Messages

  • Change multiple files permissions?

    Hi,
    I would like to know if there's any way to change the permissions (from read only to read and write) of multiple files at once (without doing it one by one) ?
    Thanks in advance
    iMac 20" Mac OS X (10.4.8)

    I was able to find this concerning the X check box.
    http://docs.info.apple.com/article.html?artnum=106712
    Execute (--x)
    You can open the AppleWorks application if you have the execute permission for it.
    Also note that you must have execute permission for any folder that you can open; thus File Sharing requires execute permission set for other, world, and everyone for the ~/Public folder, while Web Sharing requires the same setting for the ~/Sites folder.
    Jesse Tyler

  • Changing multiple file permissions

    I have a corrupted user in Leopard.
    So I am copying all the files I need over to a new user.
    Both are administrators.
    Can I take a whole folder (Docs) and tell it to change all the files in Docs to give me read/write permissions or do I have to do each one separately?

    Should be fine. First open a Get Info panel for the folder in question, and see if there are any "custom" permissions set on it. If not, you are good to go. If yes, it is a good indication that ACLs are set on that folder, and you should go carefully from there.
    ACLs are a special system of file/folder permissions that overrides the regular UNIX permissions. They were first introduced in Tiger as a user-enabled option, but Leopard was the first OS X to make use of them extensively by the System.
    A "deny delete" ACL setting is put on many system-created folders, like your home folder, your Documents folder, etc. This is to prevent accidental renaming or deletion of them. If you try to trash your Documents folder, you can, but you will be prompted to enter an admin password.
    Clicking the "apply to enclosed items" button on one's Documents folder will set the "deny delete" ACL to all of its contents, meaning you will need to enter an admin password to subsequently delete anything inside.

  • Fetching of multiple files from Application Server into SAP Program

    Hi All,
    I have a issue related <b>Fetching of multiple files from Application Server into SAP Program</b>.
    Actual issue is as below.
    In the <b>selection screen</b> of <b>my program</b> i will give <b>Application Server Path</b> as :
    <b>/PW/DATA/SAP/D1S/PP/DOWN/eppi0720*</b>
    Then the based on above input it should pick up all the files that are matching <b>eppi0720*</b> criteria.
    Suppose if i am having <b>5</b> files with above scenario, i have to fetch all those <b>5</b> files at a time and place in my SAP Program.
    All those 5 file's data should come into SAP at a time.
    Can anybody tell me how can we solve above issue.
    If any body has come across same issue please provide me with solution.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    If you want to get around the authorization check, you can do something like this.
    report zrich_0001 .
    parameters: p_path type epsf-epsdirnam
                      default '/usr/sap/TST/SYS/global'.
    parameters: p_file type epsf-epsfilnam default 'CO*'.
    start-of-selection.
    perform get_file_list.
    *       FORM get_file_list                                            *
    form get_file_list.
      types: name_of_dir(1024)        type c,
             name_of_file(260)        type c,
             name_of_path(1285)       type c.
      data: begin of file_list occurs 100,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file_list.
      data: begin of file,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file.
      call 'C_DIR_READ_FINISH'             " just to be sure
           id 'ERRNO'  field file_list-errno
           id 'ERRMSG' field file_list-errmsg.
      call 'C_DIR_READ_START' id 'DIR'    field p_path
                              id 'FILE'   field p_file
                              id 'ERRNO'  field file-errno
                              id 'ERRMSG' field file-errmsg.
      if sy-subrc <> 0.
        sy-subrc = 4.
        exit.
      endif.
    * Read the file list and add to internal table.
      do.
        clear file.
        call 'C_DIR_READ_NEXT'
          id 'TYPE'   field file-type
          id 'NAME'   field file-name
          id 'LEN'    field file-len
          id 'OWNER'  field file-owner
          id 'MTIME'  field file-mtime
          id 'MODE'   field file-mode
          id 'ERRNO'  field file-errno
          id 'ERRMSG' field file-errmsg.
        if sy-subrc =  1.
          exit.
        endif.
        append file to file_list.
      enddo.
    * Write out the file list
      loop at file_list.
        write:/ file_list-name.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • I need applescript to change all files in a folder and its subfolders ending in .xlsx changed to .xlsb

    I need applescript to change all files in a folder and its subfolders ending in .xlsx changed to .xlsb

    try something like this:
    with timeout of 3600 seconds
      -- long timeout to because the Finder is horribly slow
              tell application "Finder"
      -- collects the files from a folder called "whatever" in your user home folder
                        set xlsbFiles to every file of entire contents of folder "Whatever" of home whose name extension is "xlsb"
                        repeat with thisFile in xlsbFiles
                                  set name extension of thisFile to "xlsx"
                        end repeat
              end tell
    end timeout
    you could make a more efficient script using System Events.app, but this will get the job done with a minimum of thought.

  • Change multiple files name at once

    Hi
    I would like to know if someone knows how to change multiple files name in mac. I need to name hundreds of files name, and dont want to do it one by one ... Example: Change from: Doc 1, Doc 2, Doc3 ...to: 2010Summer1; 2010Summer2,etc...
    Thanks in advance for any help,
    Joao

    Make an Automator workflow that changes the name. You would Replace text of "Doc" with "2010Summer". When you open Automator, choose Workflow. Drag in a Get Selected Finder Items and then drag in a Rename Finder Items. Select the "Replace Text" option. Fill in the Details, select the files in the Finder, and then run the workflow.
    There are also some third-party file renamers. Check MacUpdate or VersionTracker. I don't know if there are any free ones.

  • Just updated to itunes 12.1.0.71 - big problem - can no longer access the legacy "Get Info" where you could change multiple files, easily add artwork, add album name for TV show, and much more. In previous iTunes 12 you'd right click

    Just updated to itunes 12.1.0.71 - big problem - can no longer access the legacy "Get Info" where you could change multiple files, easily add artwork, add album name for TV show, and much more. In previous iTunes 12 you'd right click and hold shift key and be able to get to it. Anyone figured this out?

    The "legacy" metadata editors, for which there was a "back door" in iTunes 12.0, have gone from 12.1.  However, the revised editors in 12.1 provide access to (almost) all the metadata elements that were available in iTunes 11, albeit in a different layout and with some additional constraints based on media kind.  Some users have / will have an issue with the statement that "Get Info has been completely redesigned in iTunes 12 to focus your attention only on what’s necessary for the selected item" since that removes some metadata elements that people may have been using in creative ways.  iTunes 12.1 basically gives you access to the fields that Apple think are necessary ... .  Some of the things that have been excluded by this rule:
    track and disc number fields for video media kinds
    show and episode fields for music
    description tab for audiobooks made up of more than one file
    Obviously the first two examples can be regarded as "overloading" the metadata elements - i.e., using them in ways that the designers didn't intend - but given that some users do find valid cases for this it's a shame that they've been deprecated in the new UI.  There are couple of workarounds:
    in songs view (or any of the other columnar views), you can still select any fields to display, independent of media kind, and these can be edited (though only one at a time) by double-clicking in the relevant "cell"
    you can (temporarily) change the media kind of an item (or group of items) to get access to metadata elements that would otherwise be inaccessible.
    It may be worth submitting an issue via https://www.apple.com/feedback/itunesapp.html - I can't see it as a huge development task to have a user preference to switch between "show all fields" and "filter fields based on media kind".
    One other oddity/irritation is that some of the tabs don't, by default, show all the available fields - you need to scroll up/down to access them or to expand the window by dragging on one of its corners.  Fortunately, the latter seems to be persistent - once you've done this to make all the fields visible the editor will open at the same (larger) size when opened again.

  • How can I upload multiple files or whole folder structures in one go to the Cloud?

    How can I upload multiple files or whole folder structures to the Cloud in one go? Uploading lots of files singularly does not help my workflow.
    All help is much appreciated.
    Paul.

    Hi,
    Uploading multiple files is browser specific.
    Internet explorer won't allow to select and upload multiple files on the cloud.
    If you want to upload multiple files then you have to login to Cretaive cloud using Firefox or Chrome web browser, then you can select multiple files in the Browse window to upload.
    You can't upload folders directly.
    Thanks,
    Baljeet

  • Time machine no longer backs up changes to files in home folder.

    My Time Machine seems to be in some sort of weird state where it has stopped backing up any files/folders in my home (~/) folder or below.
    This is obviously a big issue since those are the files most needing to be backed up.
    It does catch changes to the /Applications folder, the /Developer folder, and the /usr folder, for some examples.
    A typical backup where it misses a lot of changes in my home folder is as follows:
    Starting standard backup Backing up to: /Volumes/My Backup Disk/Backups.backupdb No pre-backup thinning needed: 1.22 GB requested (including padding), 253.01 GB available Copied 20 files (157 bytes) from volume . Starting post-backup thinning Deleted backup /Volumes/My Backup Disk/Backups.backupdb/My Computer Name /2009-09-11-185523: 253.01 GB now available Deleted backup /Volumes/My Backup Disk/Backups.backupdb/My Computer Name /2009-09-07-124935: 253.05 GB now available Deleted backup /Volumes/My Backup Disk/Backups.backupdb/My Computer Name /2009-10-03-205432: 253.05 GB now available Deleted backup /Volumes/My Backup Disk/Backups.backupdb/My Computer Name /2009-10-03-205215: 253.05 GB now available Deleted backup /Volumes/My Backup Disk/Backups.backupdb/My Computer Name /2009-10-03-204044: 253.05 GB now available Post-back up thinning complete: 5 expired backups removed Backup completed successfully.
    And looking at it in TimeTracker it just shows a lot of 0 byte backups, with the occasional backup with only changes to the above-mentioned folders visible.
    How can I reset Time Machine and get it back on track?
    I'd like to preserve the current backups on it if possible.

    Are you running File Vault?
    Besides your TM disk, what's shown in the +Do not back up+ box in TM Preferences > Options?
    If nothing there would prevent your home folder from being backed-up, try a "full reset" per #A4 of the Time Machine - Troubleshooting *User Tip* at the top of this forum.

  • Delete locked file from /Applications folder

    Hi there
    I used Clean My Mac to remove a file install - something I have done many times without any problems.
    This time though the application file was left behind in the /Applications folder and I am unable to move it to the Trash because it is locked.
    I have tried the following
    sudo chflags nouchg /Applications/CrashPlan.app
    This however does not resolve the issue and I am still unable to move the file to Trash - it does not remove the locked flag
    Does anyone have any other ideas or suggestions how to remove the file?

    Hi WIlliam
    I tried what you said but I get an unexpected result...
    Johns-Mac-Pro:~ John$ sudo rm -r /Applications/CrashPlan.app
    Password:
    rm: /Applications/CrashPlan.app/Contents: Operation not permitted
    override rwxrwxr-x  root/admin schg for /Applications/CrashPlan.app?
    I'm not sure how to respond to the question it is asking. I tried keying in Y but the response was
    override rwxrwxr-x  root/admin schg for /Applications/CrashPlan.app? y
    rm: /Applications/CrashPlan.app: Operation not permitted
    Johns-Mac-Pro:~ John$

  • Using script on multiple files in a folder.

    THis has GOT to be easy, but I can't figure it out.
    Walgreens wants you to email photos to them, but I usually do like 50 photos at a time. So, I created a script that takes an object and emails it. The problem is, I don't know how to do it to one photo, then the next, etc. It will do all the photos, but that is one HUGE email!
    So that's my question. How do I get the script to run individually on multiple files?
    Thanks in advance.
    Dave

    Copy, paste, edit (where appropriate), and save - the code below as an application (AppleScript applet):
    -- Code starts here --
    property toAddress : "[email protected]"
    property tSubject : "Please process my photo(s)."
    on run {}
    my send_Photos(choose file with multiple selections allowed)
    end run
    on open (dItems)
    my send_Photos(dItems)
    end open
    on send_Photos(tItems)
    with timeout of 0 seconds
    tell application "Mail"
    repeat with i in tItems
    try
    set tMessage to make new outgoing message with properties {visible:true}
    tell tMessage
    make new to recipient at end of to recipients with properties {address:toAddress}
    set subject to tSubject
    tell application "Finder" to set fname to displayed name of i
    set content to ("Attached is the photo: '" & fname & "'." & return & return)
    tell content to make new attachment with properties {file name:i} at end of last word of last paragraph
    send
    end tell
    end
    end repeat
    end tell
    end timeout
    end send_Photos
    -- Code ends here --
    Double click on the applet and select the desired file(s), or drag the desired file(s) onto the applet - for further processing.

  • Illustrator CS6 Running an Action on Multiple files in a folder

    I'm having trouble getting this to work and was hoping someone could shed some light for me.
    I created a action in Illustrator CS6 (on a PC) which opens PNG files, scales them onto a 8.5 x 11 page, saves them as a PDF into a output folder on my desktop and then closes the page. The action works great and does exactly what I had hoped for.
    Here is my issue:
    I now have a need to do this on multiple files at the same time. Using the Illustrator Help menu, I found out about Batch processing. The tutorial says that a batch can be run on a single file or on a folder of files. Bingo! That's what I want. Problem is, I can't get it to work.
    After setting up the batch with the following settings: (note: I didn't use a destination folder because I have the action saving the pdf into an output folder on the desktop).
    According to the help page, it said to use Override Action "Open" commands which Opens the files from the specified folder and ignores any Open commands recorded as part of the original action. I thought this is what I needed to open all the files in the folder, because when recording my action, I had to use the open command to open a png file. It wouldn't just let me choose a folder. If I don't have the open command in the action, nothing happens.
    My main issue is getting multiple files from within my input folder to open when running the action. The only file that opens is the file that I recorded while creating the action. If I remove that file from the folder, nothing happens at all.
    Please help!
    Thank you,

    I need to create a Action in Illustrator CS6 where i have to open set of files from the desired folder and convert the files to eps format. but i need to save as CS5 version instead of CS6.
    I tried creating the Action it works perfectly except the CS6 to CS5 conversion.
    Is there any way to achive converting to CS5 in Action?
    please help.

  • Strange file in Applications folder, placeholder.txt

    Saw this file today, placeholder.txt, this file wasn't here before, it is in my Applications folder and on the dock as well, with contents (copy pasted):
    Placeholder to make sure directory gets created during a synch
    File creation date January 16, 2010 7:43 AM
    I don't have any backups or even a Mac back then. Was this added during 10.7.2, do you have this too? I'm just going to delete it.

    It's not in 10.7.2 only, I have 10.6.8, and it's there too. If you delete it, it reappears. Somepeople suggest it's from adobe digital editions.

  • Guide file in Applications Folder

    I am trying to clean out old software and such from my computer. There is a file in the Applications folder called Guide with a bunch of html items in it. What is this and can I delete it? So much came over from the old computer that I am sure is not necessary in Snow Leopard.
    Thanks

    Judy,
    I think it would  be safe to get rid of it. 

  • How to change default file permissions so others can write to file

    We have 15 people sharing files on a network. If we open a file on the network, work on it, and save it, it is readable and writeable for everybody. But if we drag the file off the network, work on it on our own hard drive, and save it, and THEN drag it back to the network, it is read-only for everybody. Documents made on our own hard drives are, by default, read-only for others.
    This is a real time waster for us!
    This means that every time we make a document on our own hard drives, we have to remember to go to the extra trouble to change it's permissions before we put it on our network. Please, is there some way to change the default settings, so that if I, say, save a Word doc on my hard drive and then move it to the network, it is readable and writeable by everybody without me having to change it's permissions?

    Sounds like you are not using ACLs.  When you double click your share point in Server.app, how many entries do you have in the Permissions window?  If you have only 3 then you are not using ACLs which explains why your permissions are not inheriting.  POSIX permissions, the base three of owner, group, and everyone, do not inherit.  You need to add at least one more permission entry to the table.  This is called an ACE (access control entry).  Together, you are building an ACL (access control list).  Try not to use users.  Always add groups if possible as it is easier to manage and never requires propagation of the permissions.
    R-
    Apple Consulting Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store

Maybe you are looking for

  • IPod Touch not being recognized in iTunes

    Hello Apple Discussions, my name is Wong Meng. iPod Details: iPod Touch 4G FW: 4.2.1 I just ran across a problem with my iTouch where it would be recognized in Windows under My Computer, but iTunes would freeze and lag when it loaded when my Touch wa

  • MM Subcontracting Process

    Hi, There is any method to stop posting of GR against subcontractor PO, by removing item chekbox tick manually. ie at the time of GR against subcontracting PO, without sending material to vendor, the PO is posted by removing the check box forr child

  • HT5085 itunes match not available

    I paid for itunes match and now I cannot locate it on my iphone. Yes setting is on and  all my music is now gone and I have no music to play now. Also itunes match does not appear in my icloud. I only have 1 apple ID. The payment went through OK. How

  • Clicking on JTabbedPane showConfirmDialog whether to retain the values

    I have 2 panel in the jtabbedpane. Each panel has a jtable and the user able to add rows and do some calculations. If the user clicks the 1st panel in the JTabbedpane and add few rows and calculations are done. Then clicking the 2nd panel in the Jtab

  • HOW I CAN DO INTER DEPENDEND list of value in adf

    Hi all, How i can do inter dependend list of value in adf ie if i select Country AS:USA next field it show me all state in usa