Copying files via File Sharing, files get locked

Hey, Folks!
I've just begun sharing files from my Mac Pro with my wife's laptop. I have no problems dragging-and-dropping files from one computer to another, but the copied folders are locked, meaning, for example, if I put a video file into iTunes, I'm unable to change its metadata (i.e. change it from a "Home Movie" to a "Music Video"). I've tried some variations to no avail.
Suggestions?
Thanks!

So, in Airport Utility, I go to "Wireless" and then "Option", and I get a dialog box with following options:
Name of 5Ghz network, Country, radio Mode (802.11a/n - 802.11b/g/n (automatic)
and Finally Canal 2,4 GHz : Automatic
and Canal 5GHz : Automatic
Do I have to change these values ?
And after that, do I have to change something to my network preferences ?

Similar Messages

  • File getting locked in RDC when saving it to redirected drive (from remoteapp).

    Hello,
    when exporting excel file from our RemoteApp to my local C disk (\\tslcient\c) the file is getting locked and can not be used until I close the RemoteApp. If for example I try to delete file before closing RemoteApp,
    I get the error that file is being used by Remote Desktop Client.
    If during export I choose to save the file on remoteApp server, or on mapped network drive, it is not getting locked and can be used right away.
    Is there a way to save it to my redirected C drive and be able to use it without closing remoteApp ?

    Hi,
    Thank you for posting in Windows Server Forum.
    Initially see that you have client mapped drive is enabled. You can enable the setting under collection properties client settings-Drive Redirection Option. In addition, we can also check the GPO setting “Do not allow drive redirection” under below
    mention path.
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Device and Resource Redirection
    Also can generate some script that would add shortcut and points to the shared drive. After this the shortcut would be added to the default location you see when you do the save file from your application.    
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Client drive is redirecting without problem and it is accessible, we can browse it, copy and save files there.
    The problem is that when we save file from RemoteApp to redirected client drive, the file is locked by remote desktop connection process and can not be accessed until RemoteApp is closed.

  • Can not copy files from locked CD

    I have some old CDs from around 2002 that are locked and I am unable to copy files off the discs to my Mac and when I check permissions on the discs it will not let me change it from read only.
    What do I do?
    Thanks.

    CDs are read only always (assuming commercial CDs or burned CDRs).
    So how it is you are trying to copy the files off of the CD? What happens when you do whatever you do? Does nothing happen or do you get an error message of some sort?
    Patrick

  • Suddenly can't edit in LR4 -- can DNG files get locked?

    I suddenly can't edit in "Develop" mode.  I can click on Lens Correction, but I can't seem to use the Basic adustments, Detail, or any others.   It's like I locked the DNG file from any more editing.  Any ideas?*

    Hi Ron,
    Can  you open the basic panel?
    ...just a weird idea... maybe you have set your develop panels to solo mode? So only one will be open at a time? <ctrl>1 should help, as this opens the basic panel.
    To answer your general question: it is not the DNG files that get locked - they are *locked* all the time.
    LR writes a record pointing to a DNG inside its catalog=database.
    That can not get locked.
    What exactly do you see when trying to do a basic adjustment?
    Could it be a performance problem - LR just being too slow for you to notice anything?
    What system are you using, which LR-version exactly?
    Cornelia

  • Xcode 4 - last build phase "copy files" gets build stuck

    I really like the new XCode, but I'm having one really annoying issue. When I try to add new build phase "Copy Files" after every other build phases, which copies the final product component to some directory, the build just gets stuck.
    This is what I mean, try it yourself:
    1. Create a new project - choose System Plug-In - Audio Unit effect. Name it as, let's say "Doo"
    2. Open project target named as "Doo".
    3. Add new build phase - Add Copy Files to the end of the list.
    4. Press + and add Doo.component from the Products to the list.
    5. Select "Absolute path" as a destination (in this case I'd like to have the component in Library/Audio/Plug-Ins/Components-directory).
    6. Build.
    -> build gets stuck
    Build goes successful, if Doo.component is removed from the list.
    This was working in XCode 3.x. And regarding to documents this is meant to be like "make install" phase in the end of the build, and should work.
    Or, am I doing something wrong?

    There is a separate ongoing forum for Xcode 4 discussions:
    https://devforums.apple.com/community/xcode4 **Join the party!**
    Topics
    • iOS Development
    Installation, Provisioning, Simulator, iPhone SDK 4
    • Source Editing
    Assistant, Code completion, Fix-it, Settings, Keyboard Shortcuts
    • Interface Builder
    Xcode integration, Code connections, Library, Inspectors
    • Project Editing and Workspaces
    Schemes, Configuration, Build settings, Complex projects
    • Source Code Management
    Version editor, Git, Subversion, Branching and merging
    • Debugging
    LLDB, Stack compression, GCD and Threads, Watch lists
    • Instruments
    System Trace, Time Profile, OpenGl, Allocations and Heap
    • LLVM Compiler
    Clang, LLVM-GCC, C++, STL and Boost, Optimization

  • Excel File gets Locked using OLE2

    Dear all ,
    We are working with 10g forms
    We are trying to load data from Excel file into a form using OLE2 . We are able to load the data from Excel File .
    Here we try to read the first row of the excel file and verify for a title to be present
    if not present we close the file . we have used the OLE2.Release_OBJ
    declare
    application ole2.obj_type;
    workbooks ole2.obj_type;
    workbook ole2.obj_type;
    worksheet ole2.obj_type;
    cell ole2.obj_type;
    args ole2.list_type;
    Check_file text_io.file_type;
    no_file exception;
    PRAGMA exception_INIT (no_file, -302000);
    cell_value varchar2(2000);
    begin
    Lv_F_File_Type := Text_Io.Fopen(:Cb_Input.Ti_v_File_name,'R');
    application:= ole2.create_obj('Excel.Application');
    workbooks := ole2.get_obj_property(application, 'Workbooks');
    args:= ole2.create_arglist;
    ole2.add_arg(args, :Cb_Input.Ti_v_File_name);
    workbook := ole2.invoke_obj(workbooks, 'Open', args);
    ole2.destroy_arglist(args);
    --Open worksheet Sheet1 of that Workbook
    args:= ole2.create_arglist;
    ole2.add_arg(args, 'Sheet1');
    worksheet := ole2.get_obj_property(workbook, 'Worksheets', args);
    ole2.destroy_arglist(args);
    args:= ole2.create_arglist;
    ole2.add_arg(args, Lv_n_rows);-- lv_n_rows value is 1
    ole2.add_arg(args, 1);
    cell:= ole2.get_obj_property(worksheet, 'Cells', args);
    ole2.destroy_arglist(args);
    cell_value :=ole2.get_char_property(cell, 'Value');
    Lv_v_Title:=cell_value;
    if Upper(Lv_v_Title) <> Upper(Lpk_Var.Lv_v_File_Name_Parameter) then
    Lpk_Alert.Lp_Show('File Title Should be '||Lpk_Var.Lv_v_File_Name_Parameter);
    OLE2.RELEASE_OBJ(cell);
    OLE2.INVOKE(workbook ,'Close');
    OLE2.RELEASE_OBJ(worksheet);
    OLE2.RELEASE_OBJ(workbook);
    OLE2.RELEASE_OBJ(workbooks);
    OLE2.INVOKE(application, 'Quit');
    OLE2.RELEASE_OBJ(application);*/
    end if;
    After this we open the excel , and modify and try to save , it just waits ...
    we are forced to close the form. and then only the excel file gets saved...
    we need to modify the file , when the form is running and then upload the data..
    since the objects are closed , we are unable to understand why the excel file is locked till the session
    Can any one help us
    SSR

    Hi,
    Running on Business Object Enterprise XI 3.1 FP1.5.

  • HT4527 Copying ratings via home sharing

    Hi,
    is it possible to get the ratings across as well when importing via home sharing? I use smart playlists so I'd like to be able to transfer the ratings of the songs as well. Many thanks. I'm assuming that's in the XML. Note I don't want to import the whole library, rather, selected albums from time to time
    Cheers
    Not this is using macs. For some reason I can only pick iTunes via windows in the drop down list

    Home Sharing Support page - http://www.apple.com/support/homesharing/
    Troubleshooting Home Sharing - http://support.apple.com/kb/TS2972

  • Copied Files Automatically Locked

    I copied a big batch of files from a CD a client gave me (mostly JPG and Word Docs) to my hard drive. When I try to modify any of the folder names or modify the files themselves, they're all coming up as locked. I can unlock each file manually, using the info interface, which requires I retype my password in each instance, but we're talking about at least 200 files. The "Unlock" Automator scripts I've run to unlock the lot all at once aren't working.
    Does anyone have any suggestions?

    - or -
    1. Using Finder, the top level folder of those files that you want to unlock. Switch to List View mode (cmd-2).
    2. You should now see a finder pane containing only those files and folders that you want to unlock.
    3. Cmd-a to Select All.
    4. Open all the sub-folders. With all selected, opt-command-right arrow to open up alllll the children.
    5. Cmd-A to select all
    6. Opt-Cmd-I to bring up the single pane inspect
    7. Unlock

  • Files being locked by LR - V1 WinXP

    I've had a couple of instances where image files get locked after being processed in LR.
    I imported approx. 53 images into LR using the downloader and processed them. I then noticed that I'd got them in the wrong folder structure. This was set to make folders for Year, Month and Day but what I really wanted was a single folder for Y-M-D. So, I used LR to create a new folder e.g 2007-03-18 and then went to move the images to the new folder.
    The move started Ok but after about 50% of the images were moved a warning popped up along the lines of one file couldn't be moved. Strangely enough when I went to move all the other files but this one - they moved ok. Just one file with a problem. Number 5 in the sequence FWIW.
    I quit LR and tried again - same problem. I restarted XP - same problem. I did a Power off/on cycle - same problem.
    I then used Windows Explorer to take a look at the file. It's not set to Read Only but even in Windows Explorer I cannot move, rename or delete it. The message indicates that a process may have locked it but what that process is I have no idea.
    This is not the first time its happened but because I was using a Beta version with just 'play' images it never concerned me. Now I'd like to find out what's happening.
    Anyone else seeing this?
    Colin

    I'm definitely seeing this issue that files cannot be renamed or moved ... LR & Windows XP SP2.
    Does anyone have a solution? As Colin did, I've checked file and folder attributes ... all look ok. The error indication from attempting to rename in Windows Explorer after LR can't is "Cannot rename filename. It is being used by another person or program." Of course, that is not the case.
    This issue is a definite roadblock in my attempt to incorporate LR into my workflow.
    Don

  • PIDIRUSER & PIRWBUSER Keep Getting Locked

    After a recent XI system copy my PIDIRUSER and PIRWBUSER keep getting locked by the kernel.  I did not change the passwords from the system I copied yet this problem only occurs in the new copy.  In SM21 it shows that SAPJSF locks it with repeated invalid login/passwords.  It seems to occur every 20 minutes on the nose but I can't find any jobs that correspond to this timeframe. 
    I have been through the enchange profile a number of times and validated everywhere I can think of but I can't find anywhere in ABAP or JAVA where these users are embeded with the wrong password.  I have also restarted multiple times during the system copy process and once just to try to stop this occuring.  I've refreshed the caches, I've sync'ed with the SLD, I'm at a loss.
    Anyone have any ideas where to procede?
    Thanks
    Phil

    Thanks Moorthy,
    I have gone through and changed my passwords for these two users per note 721548.  Still the same issue is happening.  I am somewhat puzzled since I have no jobs running under either user (at least none that should cause 3 failed logins in 20 minutes).  Also, this is a relatively unused system with no developers logging on to use either the directory or the runtime workbench.  So I really have no clue what is causing these failures.  It is pretty clearly failing from Java trying to connect to ABAP but why?
    Thanks for your help, I'll keep this open in case anyone wants a good mystery.
    Phil

  • When I try to copy files from my computer (just pics) to my iPhone's media folder via Finder under 10.7, I get this error...

    I'm using MacFuse to connect via Finder. It worked before, even on 10.7. But since I cannected th eiPhone to my Windows 7 dual boot partition, now it won't work! Maybe it was just a coincidence, not sure. Just returns this error:
    "The operation can’t be completed because an unexpected error occurred (error code -8003)."
    I get this one when I try to copy files OFF of the iPhone:
    "The operation can’t be completed because an unexpected error occurred (error code -8072)."
    Sounds like a permissions error to me. So I fixed permissions on my Mac with disc utility, but same problem. Then chmod with terminal the media folder. Did nothing. So I can't change permissions, and they're not broken. What could've happened? I'm like, locked out of my device!

    Repair Apple Application Support.
    START/CONTROL PANEL/PROGRAMS N FEATURES/highlight APPLE APPLICATION SUPPORT, then click the REPAIR button

  • My mac will not copy more than one file at a time and gets locked up if the file is too large, my mac will not copy more than one file at a time and gets locked up if the file is too large

    my mac will not copy more than one file at a time and gets locked up if the file is too large, my mac will not copy more than one file at a time and gets locked up if the file is too large

    So now that you have repeated the same thing three times that doesn't make things any clearer at all.
    You are copying files from where to where?
    How are you attempting to copy files, software or click and drag?
    Any other detail would be helpful.
    Allan

  • Having trouble dragging/dropping files from my MacAir to a shared drive window, when I try to drag/drop gets bounced out. Can anyone help with advice on how to drag/drop or otherwise copy files to a shared drive? thanks in advance

    I am having trouble dragging/dropping or otherwise copying files from my MacAir to a window for a shared drive.
    When I try to drag/drop, files get bounced out.
    Anyone know how to drag/drop in such a case, or otherwise copy files from MacAir to a shared drive (which I do  not believe is on a Mac, not sure if that matters).
    Any help much appreciated, thanks in advance
    J.

    I am having trouble dragging/dropping or otherwise copying files from my MacAir to a window for a shared drive.
    When I try to drag/drop, files get bounced out.
    Anyone know how to drag/drop in such a case, or otherwise copy files from MacAir to a shared drive (which I do  not believe is on a Mac, not sure if that matters).
    Any help much appreciated, thanks in advance
    J.

  • When trying to 'Consolidate Files' via iTunes I get the message "Copying files failed. The name was invalid or too long."

    I am trying to copy my entire iTunes library and everything in it from my PC Desktop to my PC Laptop using the "External Drive" method as shown on the Apple website. On Part 1 (5) I am told to consolidate files. When attempting to do this I get the message "Copying files failed. The file name was invalid or too long."
    How do I resolve this?

    I have just been having this problem and it has been driving me mad.   The error message doesn't tell you which file is causing the problem so you can't fix it and it leaves your libray in a state of limbo with some files copied into the new location and some in the old location.  After many hours I found a surprisingly quick and simple solution.
    1) in iTune create a smart play list that includes everything that was added before tomorrows date.  This will include everything.
    2) Right click this playlist and export it as a text file to produce a tab delimited file.
    3) Import this into a spread sheet, or just view it in a text editor with line wrap turned off.  What you are interested in is the last column (or end of the line in a text editor).  This gives you the path of the file associated with each entry in the library. 
    The path of the files that have already been copied successfully will start with the new location for your media files you specified.  Scroll thru the rows until you get a blank path.  If you start getting paths starting with the old Media file location then you went to far and start scrolling back.
    The row with the blank path was the file that failed.  Move back to the start of the row to find out more about it.  In my case it was a podcast with a very long name. I just deleted that podcast from iTunes.
    4) Restart the consolidation by choosing File, Library as you did before and the process starts again where it left off.
    5) If it fails again on another file just repeat the process

  • Best way to copy files to server via UNIX?

    Hi there!
    I need to write a script for my clients to copy files to a server. What is the best method to copy a lot files to a server? I want this all handled through a UNIX tunnel.
    Thank you!

    spraguga wrote:
    Sorry about all this as I am very unfamiliar with ssh keys. I was trying to do this in the terminal maybe I should be doing it via ARD. Currently all Clients have ARD access and SSH access active in System Preferences/Sharing. Evey client machine is authenticated with the same admin account that I use with ARD.
    So should I be doing the following:
    Run this on every Client machines via ARD UNIX command to create the key:
    ssh-keygen -t dsa -f ~/.ssh/id_dsa -N ''
    And then run this on every Client machines via ARD UNIX command to update the servers authorized_key file:
    cat ~/.ssh/id_dsa.pub | ssh user@host 'cat - >> ~/.ssh/authorized_keys'
    Is that it, am I missing anything?
    I'm not familiar with ARD so I can't comment on that part. I can tell you that there is no need to create the keys on the clients. You can create all the keys for all the clients on a single machine - your machine. Instead of naming them "id_dsa", use something like "~/Documents/client_ssh_keys/client1". Write a script to go through and build them all in one swell foop. Then you can copy them all to the server's authorized_keys file.
    You will have to copy the client1 and client1.pub files into .ssh/id_dsa and .ssh/id_dsa.pub on each client machine. It would also be a good idea to update the .ssh/known_hosts file on each client machine with the entry for the server. You can get this from your own known_hosts file. As long as you are on the client, copy your own public key into authorized_keys.
    At this point, you can log in to every client machine and do so in a script, without a password. Each client can log in to the server without a password and run scripts.
    Also what if the machine is logged in by another Client. Then this will not work, correct? Can I set it up so anyone who is logged into any Client machine can ssh in to the server. Would I just change the id_dsa location to root or top level of the server and client startup volumes?
    SSH is an independent communication channel. No one needs to be logged in on any machine.
    You can use the "-i" option on SSH to use a specific set of keys for communicating with a server. Sharing keys like that would be a significant security hole. You would definitely want to use a passphrase in that case.

Maybe you are looking for