Network User Can't Delete Desktop Files

I'm not sure if this is a server or dekstop question because I'm not sure where the problem is, but I'll start here.
I have a user that cannot delete files on his desktop, and now can't change his desktop background.  He is a networked user on a 10.6.2 iMac.  His account is on a Mac OS X 10.6.8 server.  When I try to delete the file, it prompts for administrator authentication.  I enter it in, but nothing happens.  No errors appear and the file doesn't delete.  When I look at the details, it says "com.apple.desktopservices".  I have done the following things:
1.  Reapplied rights to his folder in the Get Info Box
2.  Deleted him from Workgroup Manager and re-created his account
3.  Checked that the file isn't locked
4.  Checked that the desktop folder isn't locked
5.  Verified his permissions are correct on all folders
6.  Ran Disk Utility on his machine
7.  Tried his account on another machine (same result as on his machine)
Based on another forum, I moved the com.apple.desktop.plist file out of his library and logged him in again. The only thing that I noticed is the background picture changed back to default.  I moved the file back, but the desktop picture is still back to default and if I go into System Prefences, I can't change the background or screen saver.
Something is messed up somewhere with his desktop settings, but I can't figure out where.  Does anyone have any ideas?

Today I backed up my Open Directory master on the server, deleted it and recreated it from the backup. No change unfortunately and still the same message:
"The document xxx.yyy could not be saved. You don't have permission."
Any good suggestions available?

Similar Messages

  • Can I delete desktop files or will I lose them?

    I have downloaded various files which end up on my desktop. For example,  my update for mountain lion, the downloads for Skype, and also have what looks like hard drives as Mac WD which is my external drive and what looks like a drive which may be my DVD drive. I also have various documents that have files on my desktop and one called library.XML. Can I  put them in the trash to get them off my desktop or will I lose the entire file on my computer? I want to clean up my desktop and every time I download something a new file goes there. But I don't want to lose the files. What can I do?

    it sounds like you have chosen to save your downloads to the desktop instead of the downloads folder.
    you can change this setting by opening up safari/preferences/general and choosing to save downloads to the downloads folder.
    to answer the question posted, as long as the items on your desktop have either been completely installed or if it's been placed somewhere else in the mac to be saved (such as pics put into iphoto, music into itunes etc. ) it is safe to delete it from the desktop and empty your trash to finish removing it from the mac so it no longer takes up space.

  • User can't delete Dump file (data pump)

    when I do expdp in 10.2.0.4, the dump file is created but the user don't have permission to delete those dmp files. Every time i need to login as 'oracle' user then only I can delete it. But I want that user should do it by itself.
    Please let me know if there is any way to create a dump file by user who can delete it by his own.

    Either you may need to follow as I suggested above or as below.
    Create the specific directory for each OS user who is using expdp utility and create the directories in Oracel (SQL), assign this directory to the database user.
    i.e.
    OS User - Scott
    Database User - Scott
    login as super user
    $ cd /u01/oradata/expdp
    $ mkdir scott
    $ chmod 700 scott
    Login to sqlplus as sysdba
    SQL> conn /as sysdba
    SQL> create or replace directory scott_dmp as '/u01/oradata/expdp/scott';
    SQL> grant read,write on directory scott_dmp to scott;
    Regards,
    Sabdar Syed.

  • Re: User can't delete Dump file (data pump)

    Hi,
    You could possibly set the gid bit on the datapump directory you are using?
    http://en.wikipedia.org/wiki/Setuid
    so basically chmod g+s your_unix_path
    That should mean that the files are created with the same groupas the parent directory not the user who created them - would that work?
    Regards,
    Harry
    http://dbaharrison.blogspot.com

    Either you may need to follow as I suggested above or as below.
    Create the specific directory for each OS user who is using expdp utility and create the directories in Oracel (SQL), assign this directory to the database user.
    i.e.
    OS User - Scott
    Database User - Scott
    login as super user
    $ cd /u01/oradata/expdp
    $ mkdir scott
    $ chmod 700 scott
    Login to sqlplus as sysdba
    SQL> conn /as sysdba
    SQL> create or replace directory scott_dmp as '/u01/oradata/expdp/scott';
    SQL> grant read,write on directory scott_dmp to scott;
    Regards,
    Sabdar Syed.

  • How can I delete PDF files from my iMac desktop?

    How can I delete PDF files from my iMac desktop?

    Not on my system,When I try to dump if off in the trash it will not go. I get a message that says this file cannot be removed. I also tried going to File and clicking on Move to Trash. No dice.

  • I am logged on to a wifi and can see files from other users on this network.  Can they see my files as well?

    I am logged on to a wifi and can see files from other users on this network.  Can they see my files as well?

    Yes and no. It depends on your settings.
    Go into "System Preference" and click on "Sharing"
    If you have services checked such as "File Sharing" then others can see your computer on the network. But you really don't need to worry because others would need your username and password to have access to your files.
    What you see are just computers annousing themselfs on the network. To have access to said computers, Username and Passwords are required.
    Hope this helps

  • Can i delete ALL files in directory ?

    i create a upload test using FileReference & PHP.
    In this scenario user upload files to http server.
    Now how can i delete all files in /files/uploads folder in AS3
    AS3 Code:
    req = new URLRequest();
    req.url = ( stage.loaderInfo.parameters.f )? stage.loaderInfo.parameters.f : "http://www.website.com/test/upload.php";
    uploadFile = new FileReference();
    select_btn.addEventListener( MouseEvent.CLICK, browse );
    uploadFile.addEventListener( Event.COMPLETE, complete_func );
    uploadFile.addEventListener( DataEvent.UPLOAD_COMPLETE_DATA, show_message );
    function browse( e:MouseEvent )
              filefilters = [new FileFilter('Images',"*.jpg;*.png;*.gif")];
              uploadFile.browse( filefilters );
    function complete_func( e:Event )
              trace( 'complete !' );
    function show_message(e:DataEvent)
    if (e.data == 'ok')
              label_txt.text = 'The file has been uploaded.';
    else if ( e.data == 'error')
              label_txt.text = 'The file could not be uploaded.';
    PHP Code:
    <?php
    $uploads_dir = './files/uploads';
    if( $_FILES['Filedata']['error'] == 0 ){
              if( move_uploaded_file( $_FILES['Filedata']['tmp_name'], $uploads_dir.$_FILES['Filedata']['name'] ) ){
                        echo 'ok';
                        exit();
    echo 'error';
    exit();
    ?>

    You need call another PHP file
    <?php
       $directory = './files/uploads';
       getDirectoryList ($directory);  
       //This function find all the files in the directory
       function getDirectoryList ($directory)
         // create an array to hold directory list
         $results = array();
         // create a handler for the directory
         $handler = opendir($directory);
         // open directory and walk through the filenames
         while ($file = readdir($handler)) {
           // if file isn't this directory or its parent, add it to the results
           if ($file != "." && $file != "..") {
        //$results[] = $file;
         // Delete Files
        $filename = $file;
      unlink($filename); //this delete a file
         // tidy up: close the handler
         closedir($handler);
    ?>

  • I  can't delete raw files in bridge

    I can't delete raw files in bridge anymore. I used to and it worked. Now if I click delete button, nothing happens.

    Adobe doesn't support CS5, an when I spoke to Apple, I was told that this is a known issue with OS 10.8.5 and that they're working on a patch.  In the meantime I'm using Adobe's DNG as a workaround.
    Have not heard before of this Known Issue, also find it hard to believe being true. But can't test my self because I only have CS6 and CC installed and always use Photodownloader to convert to DNG upon import. I have just installed the 10.8.5 update and checked in Bridge CC pointing to an attached card reader. no problem in showing the CR2 thumbs, it works as always and as expected.
    To my knowledge Bridge CS5 is already 64 bits and I can't think of any valid reason why an OS update would cause this problem so suddenly (but I'm not a technician I have to confess…)
    However, I would first try a check and repair permissions from Apple Disk Utility and also try Cocktail (good and cheap 3th party maintenance application for Mac) to clear caches and check permissions.
    Also try a new user account just for testing to rule out your current account as the culprit.

  • I am receiving a notification that says that I am running out of storage space. I backed up time mating to an external hard drive. Can I delete some files to make room?

    I am receiving notifications that I am running out of storage space. I backed up my mac book using an external and time machine. Can I delete some files to make room?
    If so,
    When I want to restore from my time machine, can I pick and choose, say certain songs, photos or documents?

    About TM "Backup Drive is Full"
    Alert TM only deletes older files if they have been deleted from the source and when TM needs space on the backup drive for a new incremental backup. Time Machine "thins" it's backups; hourly backups over 24 hours old, except the first of the day; those "daily" backups over 30 days old, except the first of the week. The weeklies are kept as long as there's room.
    So, how long a backup file remains depends on how long it was on your Mac before being deleted, assuming you do at least one backup per day. If it was there for at least 24 hours, it will be kept for at least a month. If it was there for at least a week, it will be kept as long as there's room.
    Note, that on a Time Capsule the sparsebundle grows in size as needed, but doesn't shrink. Thus, from the user's view of the TC it appears that no space has been freed, although there may be space in the sparsebundle.
    Once TM has found it cannot free up enough space for a new backup it reports the disk is full. You can either erase the backup drive and start your backups anew or replace the drive with a larger drive. You can also use the Time Machine application to selectively remove files, but that may be ineffective if you have to free up GBs of space.

  • HT1526 I can't delete any files, can't empty the trash bin, can't open my iTunes. Safari isn't working properly either. I keep getting the error message -50 when i try to delete anything...HELP!

    I can't delete any files, can't empty the trash bin, can't open my iTunes. Safari isn't working properly either. I keep getting the error message -50 when i try to delete anything...HELP!

    Hello, not too helpful, but...
    enum {
      paramErr                      = -50,  /*error in user parameter list*/
    Usually means a bvad or unacceptable Charachter in a File or Folder name...
    http://support.apple.com/kb/TA20831
    Solving Trash Problems...
    http://thexlab.com/faqs/trash.html
    Open Console in Utilities & see if there are any clues or repeating messages when trying to open Safari or iTunes.

  • Creative Zen 8GB - Can't delete certain files (Write Protected it sa

    I have added a bunch of mp3s, images and videos to my player, but now when I try to delete some of these files I get a "you can't delete this file because it's write protected", if I check the properties of such files they are infact write protected but there's no way for me to uncheck the box and make them deletable.
    Anyone with the same problem or with a handy solution?
    P.S. I updated already to the latest firmware.

    Yes; I got my Zen this week and had the same problem when I copied over some MP3 files from a CD-ROM, which are write protected when the CD-ROM is created. I thought that the Zen was defecti've but now feel this is either a programmers misunderstanding of Windows Read Only functionality in the Zen -or- when you protect a file from deletion within the Zen, this is what the firmware sets to flag the file as 'Protected (I have not researched this yet).
    My Fix: For some of you this will not be the answer you are looking for but it works and will kept your Zen music file structure and library intact.
    You may need to switch to MTP mode in the creative software before you are allowed to use this technique. Search the forum where to find this checkbox. Otherwise your XP may be able to nati'vely open Explorer windows to the Zen.
    Setup: Open two Windows Explorer windows on your desktop. In one, create a new folder on a hard dri've that has enough space to handle all the music files on your Zen. In another Explorer window, navigate to the Zen music folder.
    1. Use Windows Explorer to copy ALL of your music files From the Zen to a new folder on your computer's hard dri've. If you don't have enough room on your hard dri've (and if not, why don't you? ) move files in stages.
    2. When the files are in your hard dri've's folder, right-click on the new folder and select Properties. Deselect (Uncheck) the Read Only attribute checkbox. If another dialog is displayed, select "Apply changes to this folder, subfolders and files" and click 'OK'. This will make all your files deletable on the Zen.
    3. Copy (drag) all the files back to your Zen, overwriting the original files.
    That's it. In the future perform step two before copying any files to the Zen.
    -Winged One

  • Can't Delete Some Files on Media Vault

     I have hundreds of files on my Media Vault, and I often delete old files I
    no longer need. But once in a while I can't delete a file, and get this error
    message:"You require permission from Unix User\nobody to make changes to this
    file." Does anyone know how I can get in touch with User\nobody so I can ask for
    permission?
    Thanks
    Michael Trombetta

    No, I tried that before I posted. I am the administrator of my systemS.
    Actually I'm trying to move the files and directories from a permanent directory (HP defined) to a user defined directory. I was able to move 90% of the data with using the context entry "Move to Folder". I was trying to move the remainder, but I keep getting messages from UNIX that I don't have the authority. I'm running Win 7 Pro on an HP 6250. I have tried to change the permissions to no avail, see attached. Should I try an XP system?
    I did check and the files are marked as N (not indexed). I had 3 screen prints but I see no way to include them.

  • Udump directory ...can I delete the files?...PLz help me

    hi guys,
    I have disk space problem on my database server , 98% of my partition disk is used...checking the files I see that in my udump diectory there is a new 3GB trace file created by Oracle ...my questiions are :
    1 - can i delete this file?
    2- how can i know if oracle is still using it?
    my os system is Linux and I' working on Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    thanks a lot,

    thank you... so these files are not necessary for Oracle?
    below some lines from the big udump file
    /u01/app/oracle/admin/aed01/udump/aed01_ora_11397.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /u01/app/oracle/oracle/product/10.2.0/aed01
    System name: Linux
    Node name: aed01.es6.foree.lan
    Release: 2.6.18-53.1.14.el5xen
    Version: #1 SMP Tue Feb 19 07:33:17 EST 2008
    Machine: x86_64
    Instance name: aed01
    Redo thread mounted by this instance: 1
    Oracle process number: 27
    Unix process pid: 11397, image: [email protected] (TNS V1-V3)
    *** 2009-11-13 00:05:54.880
    *** ACTION NAME:() 2009-11-13 00:05:54.490
    *** MODULE NAME:(SQL*Plus) 2009-11-13 00:05:54.490
    *** SERVICE NAME:(SYS$USERS) 2009-11-13 00:05:54.490
    *** SESSION ID:(913.14607) 2009-11-13 00:05:54.478
    *********START PLSQL RUNTIME DUMP************
    ***Got internal error Exception caught in pfrrun() while running PLSQL***
    ***Got ORA-4030 while running PLSQL***
    FUNCTION FREE_CLIENT.DB_FUNC_SEARCH_PARENT:
    library unit=b9776680 line=1 opcode=84 static link=2aabac7768e8 scope=0
    FP=2aabac776b88 PC=cea6769a Page=0 AP=2aabac776b88 ST=2aabac776cd8
    DL0=2aaaacccd6a0 GF=2aaaacccd708 DL1=2aaaacccd6c8 DPF=2aaaacccd6f8 DS=cea67740
    DON library unit variable list instantiation
    0 b9776680 2aaaacccd708 2aaaaca4b3b8
    1
    2
    3
    4
    scope frame
    2 0
    1 2aabac776b88
    package variable address size
    0 2aaaacccd710 328
    version=43123476 instantiation size=432
    exception id error DON offset begin end DID
    0 1403 0 0 72 20 71
    1 0 0 1 114 14 109
    aed01_ora_11397.trc
    Edited by: OracleJavaLinux on Nov 13, 2009 2:18 AM

  • Can I delete the files/folders in 'Apple Computer\MobileSync\Backup'?

    Hi!
    I have just tried to backup and update my iphone to iOS 5.1. The backup seems to have worked but when it came to restoring the iphone, I think the hard disk ran out of space and so it failed. I saw this and so I freed up around 3Gb of disk space and I tried it again. It again failed. Again I noticed that there was no space left on the hard disk. I assumed that to continue the restore it probably won't need that much more space (as it had already done most of the work) so I freed up a few more Gb.
    Again it failed. When it fails, itunes leaves the partially restored elements on my hard disk meaning that my 'Apple Computer' folder is now 28Gb!! I cannot afford to delete anything else from the hard disk. I am using a PC by the way. I have noticed that in the folder 'Apple Computer\MobileSync\Backup' has 5 folders in it which is the same amount that I tried to restore the iphone (before the last restore attempt there were 4 folders). These folders amount to 20Gb. From this I am assuming that the actual backup that I made is infact in 'Apple Computer\iTunes\Mobile Backups'.
    Can I delete the folders in 'MobileSync\Backup'? This would free up 20Gb of disk space giving me enough to properly restore (in theory!).
    Thanks for your time!!
    Nick

    your advice worked for me and saved me what ever evil lurked behind my thought to just delete the backup and get back my very lmited space on my 250GB Mackbook Pro using daisydisk pro https://itunes.apple.com/us/app/daisydisk/id411643860?mt=12
    Why DaisyDisk?
    DaisyDisk remains the tool of choice for film makers (including companies like Pixar), digital artists, IT professionals and hundreds of thousands of Mac users worldwide when it comes to disk space management. Constantly improving since its initial introduction, the app easily blows away competition in terms of speed, efficiency and user experience.
    @wjostenMar 27, 2012 4:03 AM Re: Can I delete the files/folders in 'Apple Computer\MobileSync\Backup'?
    Re: Can I delete the files/folders in 'Apple Computer\MobileSync\Backup'?in response to nickcrowney
    Delete iOS backups this way: iTunes>Preferences>Devices...select the backup/backups...hit delete. Do not mess with your backup folder.

  • I can't delete my files on mac computer or empty trash because it keeps saying certain file is locked

    I can't delete my files on desktop. Also my trash won't empty because it says I have a locked file.
    Thanks Michelle

    Hi, first try holding option or alt key when selecting Empty Trash.
    Solving Trash Problems...
    http://thexlab.com/faqs/trash.html

Maybe you are looking for

  • Iphone 5 not syncing to itunes

    When I try to sync the iPhone 5 with iTunes for the first time it says I need to update to 10.7.  When I try updating to 10.7 it says, "This software requires Mac OS X version 10.6.8 or later." I have a 10.5.8. Do I need to update to 10.6.8 to sync t

  • Iam trying to create a PO for a material.

    In Material Master source list is activated in purchasing view and source list is created for the material,plant and vendor combination.A contract is created with the same vendor with validity period.contract number is assigned in the source list.Now

  • SBO Release 2007 Intrastat - Artikeldaten

    Hallo, wie kann man die Artikeldaten für Intrastat importieren (Ursprungsland, Warennummer, ...)? Das ist ja ein User Defined Object (=UDO) indem die Daten liegen. Daher klappt es mit der Data Transfer Workbench (=DTW) nicht, oder? Generell kenne ich

  • Is it possible to digitally sign SQL operations?

    Is Oracle, for example,able to validate a digital signature on a SQL request before honoring it, to make sure the request came from a known, authorized user? I've been unable to locate anything on this subject. Thank you.

  • Process message characteristics

    hi experts , in standard process messgae characteristics we can see process message icon in first tab where we can give input help or foriegn key etc. for characteristics starting with pppi. same  process message icon i want in Z-characteristics crea