"No Items" listed under defaults tab of Users & Groups

After Mountain Lion upgrade from Snow Leopard, "No Items" listed under default images from Users & Groups as well as Contacts (which) I'm sure share the same library. Have repaired permissions, redownloaded and re-installed Mountain Lion as recommended by the Apple Geniuses, but to no avail. Anyone got any ideas? See image.

Hi Leroy -  Sy Kim, another user in the community posted a solution that worked, see below.
SY Kim
Sep 10, 2012 6:42 AM 
After upgrade(from snow leopard), user picture list have no items. (Users & Groups)
Finally, I got the solution.
The key is to delete every '.DS_Store' files in the directory '/Library/User Pictures/'.
Open Terminal application and follow these.
1. Chagne directory by command below :
cd '/Library/User Pictures'
2. Listing all files including hiddens in the directory by command below :
ls -al
3. If there is a .DS_Store file. Remove the file by command below :
sudo rm .DS_Store
(It need user password for execute)
Then, it'll show every pictures in 'Users & Groups' control panel.

Similar Messages

  • I cannot add a printer. It is not listed under default, and does not allow me to add printer.

    I cannot add a printer. It is not listed under default, and does not allow me to a add printer.

    philw
    Try some maintenance actions:
    1) Reset Printing System:
    http://support.apple.com/kb/PH14141
    2) If that doesn't help, repair the hard drive and permissions after booting from the recovery partition:
    http://support.apple.com/kb/ts1417
    (go down to "Try Disk Utility")

  • Gmail not listed under default programs how do I select it?

    Trying to set gmail as default for email when clicking on a "reply to" address. It is not listed under default programs. How do I add it or what can I do to make gmail or any other non-microsoft program the default?

    For links inside Firefox, you can change a setting in the Options dialog. This article has the steps: [[Change the program used to open email links]].
    For links outside Firefox, you may want to check with Google on what they suggest. (Well, they suggest using Google Chrome, but I meant other than that!)

  • TFS Workitems:Bugs : I want ot select different lists, from the global list, for fields basd upon user group

    Hi,
    I am customizing the bug workitem workflow.
     I want ot select different lists, from the gllobal list, for fields basd upon user group
    I am aware that I can use "when" clauses in the allowed/suggested values of the field.
    My question is : how do I get the group(s) that the current user is in and how do use this to select different lists?

    Hi!
    You can not do this through standard way. You must to create the custom work item control:
    http://witcustomcontrols.codeplex.com/
    And get the user group through IIdentityManagementService.
    IIdentityManagementService IdentityService = _workItem.Store.TeamProjectCollection.GetService<IIdentityManagementService>();
    TeamFoundationIdentity _curid = null;
    _workItem.Store.TeamProjectCollection.GetAuthenticatedIdentity(out _curid);
    string _group = "Admin";
    var _gr = IdentityService.ReadIdentity(IdentitySearchFactor.AccountName, _group, MembershipQuery.Direct, ReadIdentityOptions.None);
    if (_gr.Members.Where(s => s.Identifier == _curid.Descriptor.Identifier).Count() > 0) return true;

  • Apps no longer listed under "all" tab for purchased apps

    This is for an iphone 4 with IOS 5.
    On my iphone when I go to the app store, updates, and then select "purchased", the apps listed under "all" are the same as the apps listed under "not on this iphone." The apps are on the phone, under app discriptions they are listed as installed, and under my itunes store account on my computer they are shown as installed. Anyone have any ideas why this would be?
    I know when it changed: I bought an app for 4 bucks that did not work when it installed. I reported the problem and got a response that they were investigating it. A day later an IOS 5 update came through and fixed the program. I wrote an informed apple that it was fixed and that I did not need the refund. Got a reply saying great and that they were happy I was satisfied. The next day I got another email from apple stating I was credited for the purchase. I informed them that I already informed them that I did not need the credit and they said that they cannot reverse the credit, but I can download the app again. I did this and the install stated I would not be charged as it was previously downloaded. Could this have messed things up?
    Ken

    I did a restore through itunes last night. At first the apps were listed under downloaded apps. Four apps did not get returned back to the iphone as it stated the software could not be found. When I returned them to the phone though icloud the apps disappeared from the "All" catagory, being replaced by the "not on this phone" list once again.
    Anyone have any ideas?

  • Using the WLS 7.0 default realm can users/groups be added/deleted within a web app?

    If I use the default realm provided in WebLogic Server 7.0,
    is it possible for me to programatically add/delete users/groups
    from within a web application? Is there an API I can use to
    add/delete users/groups from the embedded LDAP server? Or can
    you only add/delete users/groups using the WebLogic Admin Console?

    Tom,
    The below is the program for creating a new user:
    import weblogic.management.MBeanHome;
    import weblogic.management.configuration.DomainMBean;
    import weblogic.management.configuration.SecurityConfigurationMBean;
    import weblogic.management.security.RealmMBean;
    import
    weblogic.management.security.authentication.AuthenticationProviderMBean;
    import weblogic.management.security.authentication.UserEditorMBean;
    import weblogic.management.security.authentication.GroupEditorMBean;
    import weblogic.management.utils.InvalidParameterException;
    import weblogic.management.utils.AlreadyExistsException;
    import weblogic.servlet.security.ServletAuthentication;
    import javax.naming.NamingException;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    MBeanHome mbh;
    try{
    Hashtable env = new Hashtable();
    env.put( Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory" );
    // use administrator account in order to create a user
    env.put( Context.SECURITY_PRINCIPAL, "system" );
    env.put( Context.SECURITY_CREDENTIALS, "weblogic" );
    Context ctx = new InitialContext( env );
    mbh = (MBeanHome)ctx.lookup( "weblogic.management.home.localhome" );
    catch( NamingException e ){
    throw new ServletException( e.toString() );
    DomainMBean dmb = mbh.getActiveDomain();
    SecurityConfigurationMBean scmb = dmb.getSecurityConfiguration();
    RealmMBean rmb = scmb.findDefaultRealm();
    AuthenticationProviderMBean providers[] = rmb.getAuthenticationProviders();
    for( int i = 0; i < providers.length; i++ ){
    if( providers[i] instanceof UserEditorMBean ){
    UserEditorMBean uemb = (UserEditorMBean)providers;
    uemb.createUser( username, password, "dynamically created user" );
    hope this helps,
    Koji
    "Tom" <[email protected]> wrote in message
    news:[email protected]...
    >
    If I use the default realm provided in WebLogic Server 7.0,
    is it possible for me to programatically add/delete users/groups
    from within a web application? Is there an API I can use to
    add/delete users/groups from the embedded LDAP server? Or can
    you only add/delete users/groups using the WebLogic Admin Console?

  • Organization Item List Pricenot Defaulting in a PO

    Dear Gurus
    When I enter a List Price in Organization Item-Purchasing tab, it is not defaulted in PO. Instead it is defaulting from Master Item. Please explain.
    Thanks & Regards
    Merlin Rajesh

    Hi Rajesh,
    System always defaults the price of what ever u specifid in the Financial Options Inventory Organization,U Know PO is controlled at OU level not Organization level. Suppose ur having two organizations A & B and 'A' as Master Organization and 'B' is Child organization, If u r specifing 'B' in Financial Options then this List Price is only defults in the ur Purchasing documents.
    Thanks,
    Chowdary.

  • After updating Firefox to version 10.01 i no longer have any addons listed under extensions tab. I do have addons installed and they are working.

    Example addons that are currently working include no-script and downloadthemall. Both addons are working but do not show up under extensions. I can only see my plugins, such as java, realplayer, shockwave etc. It's very annoying when trying to acess my addons to constantly be taken to the "Get Addons" page.

    It is possible that there is a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (e.g. extensions.sqlite, extensions.ini, extensions.cache) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to do a compatibility check or see if there is a compatibility update available.
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/kb/Preferences+are+not+saved

  • Hiding Dashboard tab by user group

    I have my users created and assigned to groups in my rpd only (under manage-security). I want to display a specific tab on my dashboard for a particular group only. All users in the other groups need to have that tab hidden. What is the best way to do this?

    Create a group for example Group_DB_Hide and add all the users to this group.Remove permission for that particular folder for this Group_DB_Hide.
    What you can do is place your reports for each tab in separate folders and assign access to the group as said.
    goto settings-> Administration->Manage catalog-> assign permission

  • Update default Buyer in Inventory (Under Purchasing tab)

    Hi all,
    Please explain the steps of updating the Default Buyer in Inventory Mater Item form under Purchasing tab.
    Scenario here is I need to update 25000+ records. So apart from simple update statement on mtl_system_items_b, is there any API to do that task ?
    Thanks,
    AdamGil.

    Hi Sandeep,
    Are there any complications if we update the buyer_id in mtl_system_items_b table directly using below update statement.
    UPDATE mtl_system_items_b SET BUYER_ID=123
    WHERE (SEGMENT1,buyer_id) IN(
    SELECT SEGMENT1,BUYER_ID
    FROM mtl_system_items_b msib
    WHERE buyer_id=456) ;
    Regards,
    AdamGil

  • Items in project report(query) are listed under the "not assigned" (column)

    Hi All,
    Items in project reports (query) are listed under the "not assigned" (column name) Why it is so ?
    Start query : project reports & ask for period April 2008 (Period from/to). .
    You will see items listed under  Not assigned WBS Element (column name)
    If you choose for a period of April until June 2008 then you see more items under u201Cnot assignedu201D .
    Items should be under Assigned (column name) & not under the Not assigned (column name )
    Any suggestions highly appreciable.
    Thanks.

    Hi,
    How are you displaying the ITEM field in the BEx query designer? Is it displayed with "Key and Text"? If so and if the text is not loaded for this master, this may happen.
    Regards,
    Yogesh.

  • Change documents for DEFAULTS tab in su01

    Hi all!!
    Somehow SPOOL CONTROL option-> output device for a user changed(under SU01--> DEFAULTS tab) in my Production system.
    Question> can i find out change documents for DEFAULTs TAB  in SU01 for a user ID?

    In fact I was believing the same.
    I was wondering if we could add one new column to sap standard tables which will store any change documents specific to defaults tab for users. But no idea how lengthy this could be!!
    Any suggestions???
    Please do reply if there is any other option to find.

  • Somehow lost listing under Mac HD under Finder Devices

    I am not sure what I did, but somehow I lost some items listed under Macintosh HD under DEVICES on the left side of the Finder window.  It used to show my account, "Test", and "Applications", as sub headings under Macintosh HD.  How do I get these back?

    Check the settings in the Sidebar tab of the Finder's preferences.
    (124361)

  • While launch ad hoc query - always defaulted to user group 10

    Hi All,
    When I launch ad hoc query, I am always defaulted to particular user group 10. Everytime I have to change it to different user group. So is there any defaulted user group parameter so that when i open ad hoc query, my required user group gets defaulted. I dont want to change manually.
    Regards,
    kumar

    rohit,
    just now my client informed that, he is getting same user group, not which he changed from AQB.
    Please let me know if there is any other setting....
    early reply appreciated..
    thanks,
    kumar

  • No provisioning of User Group for authorization field in user master

    We are implementing CUP 5.3 workflows. Both in manual proviosing and automated provisioning based on User Defaults the user group gets only provisioned to the Groups tab in SU01. The field User Group for authorization on the Logon data tab remains empty (field CLASS from system table USLOGOND, filling CLASS field in table USR02).
    In User defaults both under user default as on the user group tab the user groups have been defined. In manual provisioning the correct list of user groups get displayed for selection.
    Under field mapping in the Application field I only find User Group in user master maintenance, but not User group for authorization. However I would assume I do not need to use field mapping, as I want to automate this provisioning based on user defaults.
    Am I missing a configuration setting here? If so, where can I set it?
    I would assume the provisioning of this field is possible. RAR reports the user group also based on the User group for auhtorization and not from the Groups tab.

    S.Pados,
    I can assure you that what I said in my last response does provision the User Group For Authorization Check on the Logon Data tab; in fact, I was having the opposite issue where the Group tab was not being provisioned; however, I am ruunning AE 5.2 and you said you are running 5.3; maybe something did change or got lost in the releases; it probably is good to see what SAP has to say about this; I would hate to lose this capapbility when I upgrade to AE 5.3
    As far as using the custom field for multiple applications, would that field not be usable for any of the applications you would select in the request form?; if you are using the same table names in the different SAP systems (selectable by the application field on the request) would the drop down selections be whatever the table has defined for that system? I may not be understanding something here so I am just asking;
    It would be great to have a Group field automatically filled in by another selection to avoid the user involvement; I agree with you there; because of our concerns on users entering the AE request, our shop has decided to continue with the users submitting the request through normal email and the security administrators perform the AE entering; this way we have a better idea on something like the GROUP field; we have an option to include the original email as an attachment for justification of the request
    Sorry I could not be of more help
    Jerry
    Ryerson,Inc.

Maybe you are looking for