How do I fix this error: DF024: Unable to preserve original file at ... Error 32 The process cannot access the file because it is being used by another process.(Seq 1352).  ?

I am installing creative the cloud Illustrator desktop app on a machine with windows 7 64 bit running in a domain environment.  The download starts and takes about runs for a bout 10 minutes and then stops with the error: DF024: Unable to preserve original file at "C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 1352)
I am logged in as a network administrator and there are no other apps except a web browser (Chrome) running.  There are no other users logged into the machine.
How can I see what other process is using the needed file so that I can fix it?
Thanks

MelissaB34 it looks like you already are reviewing your installation log files but you can find more information at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  From the error you have posted it appears that your current User account is either unable to update C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll or does not have sufficient file permissions to do so.  Since you mentioned you are on a domain please ensure that you are working with your I.T. department and have correct access to this directory.
You may want to also consider logging in under a local administrator account to see if you face the same difficulties.  This would help you determine if you are facing a file corruption issue or file permission issue.

Similar Messages

  • I'm receiving this error code every time I try to download Illustrator from iCloud.ERROR: DF024: Unable to preserve original file at "/Library/ColorSync/Profiles/Recommended" (Seq 22)

    ERROR: DF024: Unable to preserve original file at "/Library/ColorSync/Profiles/Recommended" (Seq 22)

    Lalahart please see Error DF024 installing Creative Cloud products | Mac which discusses this error.

  • Unable to install any adobe products ERROR DF024 unable to preserve original file

    Hi,
    I was unable to install anything of adobe. When I install creative suit and update Photoshop I got this error.
    I tried everything. Nothing worked. So I did a cleansweep of Adobe and restart. I tried installing a try version of Adobe Photo shop, but that will also not install....
    How can I solve this? Thanks
    Here is the error
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR: DF024 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 5 error(s)
    ----------- Payload: AdobeColorCommonSetCMYK CC 5.0.0.0 {C4196275-B11A-40A1-8727-3C145C8F7D95} -----------
    ERROR: DF024: Unable to preserve original file at "/Library/ColorSync/Profiles/Profiles" (Seq 21)
    ----------- Payload: AdobeColorCommonSetRGB CC 5.0.0.0 {C8DEBB29-3EB0-4B97-B652-4DE482B111BC} -----------
    ERROR: DF024: Unable to preserve original file at "/Library/ColorSync/Profiles/Profiles" (Seq 11)
    ----------- Payload: AdobeColorPhotoshop CC 5.0.0.0 {5C5D62C9-91C6-415E-857E-9130C0F52C66} -----------
    ERROR: DF024: Unable to preserve original file at "/Library/ColorSync/Profiles/Profiles" (Seq 3)
    ----------- Payload: AdobeColorVideoProfilesCS CC 5.0.0.0 {CE9B1B00-0421-4701-9698-1C14646D6D94} -----------
    ERROR: DF024: Unable to preserve original file at "/Library/ColorSync/Profiles/Profiles" (Seq 5)
    ----------- Payload: Adobe Photoshop CC 2014 Core 15.0.0.0 {7C25E7A0-A0A1-4B87-BB30-BF0FBDC37878} -----------
    ERROR: DF024: Unable to preserve original file at "/Library/ColorSync/Profiles/Profiles" (Seq 6617)

    I tried most of that, it is not a rights issue. The log is clear about the reason for failure, but adobe has no support on these...
    The strange thing is that
    This folder or file does not exist.  /Library/ColorSync/Profiles/Profiles
    So could that be the issue?
    Here the failed installs....
    DW050:  - Adobe Photoshop CC 2014 Dutch Language Pack_AdobePhotoshop15-nl_NL: Install failed
    03/26/15 16:58:04:017 | [WARN] |  | OOBE | DE |  |  |  | 13900 | DW050:  - AdobeColorPhotoshop CC: Install failed
    03/26/15 16:58:04:017 | [WARN] |  | OOBE | DE |  |  |  | 13900 | DW050:  - Adobe Photoshop CC 2014 Core: Failed due to Language Pack installation failure
    03/26/15 16:58:04:017 | [WARN] |  | OOBE | DE |  |  |  | 13900 | DW050:  - AdobeColorCommonSetCMYK CC: Install failed
    03/26/15 16:58:04:017 | [WARN] |  | OOBE | DE |  |  |  | 13900 | DW050:  - AdobeColorCommonSetRGB CC: Install failed
    03/26/15 16:58:04:017 | [WARN] |  | OOBE | DE |  |  |  | 13900 | DW050:  - AdobeColorVideoProfilesCS CC: Install failed

  • I cant figure out what is wrong i keep getting this an OIEception that says "{"The process cannot access the file because it is being used by another process."}

    I am trying to move a file from a folder to another folder.
    here is my code:
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Test Pictures");
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Test Test";
    File.Move(folderContentNames[1], destinationFile);
    updateListBoxFileName();
    updateImageBox();
    each time I hit the bolded underlined part I get that error message.
    if you need anything else just ask.
    Thanks in advance,
    Thor Orb

    Hi Thor,
    If you want to move a file from a folder to another folder, I think you could get the sourcePath and TargetPath. The code below shows a simple demo:
    string[] folders = Directory.GetFiles(@"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test");
    string desFile =Path.Combine( @"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test - Copy\"+Path.GetFileName(folders[1]));
    File.Move(folders[1], desFile);
    In addition, the link below might be useful to you:
    # How to: Copy, Delete, and Move Files and Folders (C# Programming Guide)
    >> The process cannot access the file because it is being used by another process
    The message seemed that the file was opened in other process. Did you operate the file with other code?
    I think you could check if the files and the folders were opened, and review your codes if they were used in other places.
    If you have any further questions, please feel free to post in this forum.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.
    Ya, Thanks I figured about the path and destation. yes I am using the file in another area, the file is an image jpg and I am displaying it in a picture box. Now I have been doing a little research I see a command called Dispose() and this is suppose to
    release the handle on the image, but I can seem to figure out have to use it correctly.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Collections;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    namespace Scanned_Picture_Ogranizer
    public partial class Form1 : Form
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Scan Project Testing\Test Pictures", "*.jpg");
    //List<string> folderContentList = folderContentNames.ToList();
    private List<string> folderContentList = new List<string>();
    Bitmap currentImage;
    Bitmap placeHolder;
    public Form1()
    InitializeComponent();
    convertingArrayToList();
    startUpData();
    string sourceFile = @"C:\Users\Jonah\OneDrive\My Programming Projects\Scanned Picture Organizer Project\Test Pictures";
    string destinationFile = "";
    private void moveButton_Click(object sender, EventArgs e)
    private void startUpData()
    //placeHolder = new Bitmap(folderContentList[0]);
    //currentImage = (Bitmap)placeHolder.Clone();
    // Image loadImage = new Bitmap(pictureClones[0]);
    // currentFilePictureBox.Image = loadImage;
    int numberOfFilesLeft = folderContentNames.Length;
    foreach (string name in folderContentNames)
    fileNamesListBox.Items.Add(name);
    fileNameTextBox.Text = folderContentNames[0];
    numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    ///loadImage.Dispose();
    //FileStream currentImage = new FileStream(folderContentList[0], FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    private void convertingArrayToList()
    foreach (string listName in folderContentNames)
    folderContentList.Add(listName);
    private void selectingImageFromListBox()
    private void updateImageBox()
    Bitmap currentImage = new Bitmap(folderContentList[0]);
    currentFilePictureBox.Image = currentImage;
    currentImage.Dispose();
    private void updateListBoxFileName()
    fileNamesListBox.Items.RemoveAt(0);
    fileNameTextBox.Text = folderContentList[0];
    // numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Scan Project Testing\Test Test\";
    File.Move(folderContentList[0], destinationFile + System.IO.Path.GetFileName(folderContentList[0]));
    folderContentList.RemoveAt(0);
    updateImageBox();
    updateListBoxFileName();
    when I first start the program the first picture displays, but when I trigger historyPictureBox_Click(), it does that error again. Another things is that I already looked at that link and it didn't help.
    I just super confused, I would like your help on this.
    Thanks,
    Thor Orb

  • Action to Convert Word doc to pdf, error: the process cannot access the file because it is being used by another process

    I am simply running an action that converts all Word 2010 docs within a directory into pdfs in another directory. The Word doc is closed.
    This is performed within Adobe Pro X.  The directory to look in has been set.  The directory to save in has been set, and is different.
    The error message pops up after I run the action.  If I click the OK button, the 'save pdf file as' box pops up, with Adobe printer's default save directory
    (not the same as the above two) selected.
    If I click Save, accepting the meaningless file name (ADPD5A5.pdf in this case) the problem goes away.  If I chose cancel, the problem also goes away.
    I don't want to save this pdf as anything other than what is set up in the action.  How do I stop this from happening?
    I've unchecked 'prompt for Adobe pdf file name' within the Word Adobe preferences, but to no success.
    I will ultimately be converting scores of docs into pdfs, and cannot have to interfere with each one.
    This worked fine on my XP machine, but now in Windows 7 64 bit (new machine, new Adobe install) it is causing this problem.

    A bit of a confusion on my part;
    Now we have created these REPORTS using Basic Crystal Report 10.5, which comes bundled with Visual Studio 2008 and .Net Framework 3.0. Now on our machines, we have never experienced any issues.
    Going by the above, you should have references to CR assemblies of version 10.5.3700 only. No other references.
    Now, looking at this paragraph:
    BUT on the DEV server (web server) which has .net Framework 3.0 and in its GAC its has CRYSTAL DLLs version 11.5 (required to create an Object of ReportClass and its related functions) ; sometimes we get the following error while exporting crystal report to pdf:
    I wonder what runtime was deployed to the server. E.g.; if you are using CR 10.5, your assemblies will be 10.5.3700 and you should be deploying the following runtime (depending on 32 bit / 64 bit, etc.):
    CRRedist2008_ia64.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100006255262008E/CRRedist2008_ia64.zip
    CRRedist2008_x64.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100006255272008E/CRRedist2008_x64.zip
    CRRedist2008_x86.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100009351342008E/CRBasicVS2008_redist_x86.zip
    One way to check on what is actually loading is to use the [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] utility.
    - Ludek

  • ERROR: DF024: Unable to preserve original file at "/Applications/Adobe/AdobePatchFiles/

    Anybody know how to resolve this  update fail error message
    Have  tried uninstalling  and reinstalling photoshop cc 2014, but same error?
    Thanks

    Ok resolved this by renaming the files and trying the update again, which seems to have succeeded.

  • ERROR: DF024: Unable to preserve original file at "/Library/Fonts/MyriadWebPro-Bold.ttf" (Seq 8681)

    Anyone else have this problem and can help me out?

    Hi scrwildcat,
    This may be due to corrupt/incorrect permissions to the alias "/Library/Fonts/MyriadWebpro-Bold.ttf".
    Give 'Read & Write' permission to the 'Profiles' alias "/Library/Fonts" and retry installation.
    Regards,
    Rave

  • Error on load: System.IO.IOException: The process cannot access the file : error in event viewer when users want to view documents from this third party deployed scan solution

    Error on load: System.IO.IOException: The process cannot access the file
    '\\server1\SCANSHARED\.pdf' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.File.WriteAllBytes(String path, Byte[] bytes)
       at abc.Scan.Layouts.ICC.Scan.View.Page_Load(Object sender, EventArgs e)
    I faced this  error in event viewer  when users want to view documents from this third party deployed scan solution
    here I have two WFS servers  and they configured with load balancing in F5 .
    when I enable both servers in F5 I receive this error messages in 2nd server,
    when users want to view documents
    adil

    Do you have antiVirus installed on the sharepoint servers?
    These folders may have to be excluded from antivirus scanning when you use file-level antivirus software in SharePoint. If these folders are not excluded, you may see unexpected behavior. For example, you may receive "access denied" error messages when files
    are uploaded.
    Please follow this KB and exclude the folders from Scanning.
    http://support.microsoft.com/kb/952167
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Error occurs during reseed - the EDB file is being used by another process

    Greetings,
    We were notified today that one of our databases in an Exchange 2013 cluster is currently in a failed state. We have three servers - two at the primary site and one in the DR site. The database has a mounted and healthy copy on its preferred server, but
    the secondary copy is now failed with a pretty high CopyQueueLength.
    I've done plenty of reseeds with Exchange 2010, and I understand that Exchange 2013 will do an automatic reseed in the event of a failure. However the auto-reseed is generating the following message:
    Automatic Reseed Manager failed to execute repair workflow 'FailedSuspendedCopyAutoReseed' for database 'DB05'. Error: The Automatic Reseed Manager encountered an error: The automatic repair operation for database copy 'DB05\mb02' will not be run because
    one of the prerequisite checks failed. Error: There are no Exchange volumes mounted under root path 'C:\ExchangeVolumes', which are required for the Automatic Reseed component.
    WorkflowLaunchReason: The seeding operation failed. Error: An error occurred while performing the seed operation. Error: The process cannot access the file 'M:\DB05\DB05.EDB' because it is being used by another process.
    During the course of my investigation, I tried to rename the .edb file to .old and was told that the file is in use by Microsoft.exchange.store.worker.exe. There doesn't seem to be a way to kill this process, as every time I've tried I've been told that
    access is denied. I'm not even sure it's wise to kill the process anyway (I'm only trying to kill the one with the PID that matches the database).
    Attempting to manually reseed the database generates a similar error to the one above. I've failed all the databases over to the other server and restarted the Information Store service as well as the Host Controller service, but so far I can't seem to get
    this file unlocked. One article I found did mention making sure that Exchange Servers is listed and given Read access to the folder. I did manually set this but I still see no change. I also verified that Symantec Endpoint Protection is set to exclude .edb
    files, and the automatic Exchange exclusions are preventing it from scanning the Exchange install locations.
    I'm curious if anyone has any suggestions that I might have missed so far. This is confusing the daylights out of me and I'd like to be able to get this reseeded. I suspect that even a full server restart won't clear this up, so any help would be great.
    We're just starting to transition users over from Exchange 2007 to 2013, and I'd prefer to have a method of avoiding this in the future before we're in full production.

    Thanks for your response, Ed! I really appreciate you taking the time to do so.
    The ultimate fix for this was a reboot of the server and I was finally able to kick off a reseed. For the sake of thoroughness, here's the last two things we tried before rebooting.
    I did try stopping the Symantec Endpoint Protection service on the server, but the job still failed in the same way. I'd also been given the recommendation to try stopping the Information Store service and try a reseed like that. Still no love. I've been
    using ProcessExplorer, too, to try and isolate the lock, but didn't have much luck there, beyond what I already knew regarding the store.worker.exe locking the file.
    I don't much care for the notion that I needed to reboot the server to remove that lock, I was really hoping for something less intrusive. But at least we've got it working and can move on with our day!
    Again, thanks for your response, Ed!

  • While deleting the virtual machine .vhd folder -- error msg : the process cannot access the file beacuse it is being used by another process

    When i am trying to delete the Virtual Machine folder/directory i get the below error. Virtual machine is turned off
    V:\>rmdir ME-EXCAS01 /s
    ME-EXCAS01, Are you sure (Y/N)? y
    ME-EXCAS01\ME-EXCAS01\Virtual Machines\1B1FD14E-B3F0-4232-9F96-2A871E879CD6.xml
    - The process cannot access the file because it is being used by another process
    How to delete the whole folder ?
    Thanks

    Also, if your VM has snapshots and you delete it, you must wait for the snapshots to finish merging - the VHD files will be locked until then.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Recurrent error in Win32 install logs (The process cannot access the file..

    hi forum !
    I'm already on my third installation of Hyperion Essbase and still getting the same error within the logs :
    (Jan 31, 2008 1:48:29 PM), essbaseServer7_0_0Suite, com.installshield.wizard.platform.win32.WindowsSharedFiles, err, ServiceException: (error code = -30016; message = "The process cannot access the file because it is being used by another process.
    (32)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -30016; message = "The process cannot access the file because it is being used by another process.
    (32)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32FileServiceImpl.win32SetFileModified(Native Method)
         at com.installshield.wizard.platform.win32.Win32FileServiceImpl.setFileModified(Win32FileServiceImpl.java:115)
         at sun.reflect.GeneratedMethodAccessor272.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.service.file.GenericFileService.setFileModified(GenericFileService.java:185)
         at com.installshield.product.actions.Files.setFileTimes(Files.java:1608)
         at com.installshield.product.actions.Files.install(Files.java:460)
         at com.installshield.wizard.platform.win32.WindowsSharedFiles.install(WindowsSharedFiles.java:87)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(PureJavaProductServiceImpl.java:1916)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(PureJavaProductServiceImpl.java:5195)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(InstallableObjectVisitor.java:369)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(InstallableObjectVisitor.java:333)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(InstallableObjectVisitor.java:133)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(PureJavaProductServiceImpl.java:4563)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(PureJavaProductServiceImpl.java:3758)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
         at java.lang.Thread.run(Unknown Source)
    can use the products but this shouldn't be fine... do I have to stop a service or grant some permission ? any help is appreciated.
    thanks & regards,

    not having any JAVA_HOME env var. Did some checkings and :
    - one machine was having Java libraries because of DB2
    - the other machine was a fresh Win2003SP1 with SQL Server 2005
    guess can set JAVA_HOME to C:\Hyperion\common\JRE\Sun\1.5.0 before installing Essbase, but also guess it's a documented/automatic step... wonder what I'm missing ?
    doing the most basic-mode installations (defaults, automatic deployments), once I get them clean will perform more sophisticated ones. Searched the 9.3.1 doc PDFs without useful findings.

  • HELLO! How do I fix this? When I click on imovie "add titles" it closes. I uninstalled the application, to date I have reinstalled, the problem persists, the problem

    HELLO! How do I fix this? When I click on imovie "add titles" it closes.
    I uninstalled the application, to date I have reinstalled, the problem persists, the problem

    Thank you for having responded to me!
    Unfortunately I did already the case "delete preferences" but nothing!
    Also, when crashes do not give me any reports!
    Started in safe mode, with another administrator, the problem becomes even: your video card is not compatible with Quartz Extreme!
    My card is a g-force framework 4000 FOR MAC!!
    STRANGE TRUE!
    If you know something more to this riquardo please answer!
    Thanks Comunity!!

  • I have smurf village on my ipod and just downloaded new smurf village to my ipad, but it has reset my game on the ipod.  how to l fix this and can l get my original game position back.

    i have smurf village on my ipod and just downloaded new smurf village to my ipad, but it has reset my game on the ipod.  how to l fix this and can l get my original game position back.

    If it is the same app for the iPod and the iPad (universal or iPod/iPhone app) and not a iPad only app, the only way is to restore the iPad from the backup of the iPod.  That will wipe out all the app data currently on the iPad though.
    If the iPad is an iPad only app, then there is no way.

  • [HTML]SignTool Error: The file is being used by another process.

    Hello,
    I receive this error from building a JavaScript app on a build server:
    SignTool Error: The file is being used by another process.
    This reproduced when building on local machine, and goes away after building again. However, our company uses gated builds so the first failure will stop an entire 2.1 hour build and I can't ship the product.
    The instruction to launch SignTool is located in external files so I can't disable it, run it twice, or run it in a while loop until succeeds, ignoring failures. I have to get it to work right the first time. I looked on MSDN, and there are other people
    who had this problem and never solved it.
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/5871d64c-e178-4f5c-85cd-a603fe56d6c7/signtask-signtool-error-the-file-is-being-used-by-another-process?forum=msbuild
    http://www.codeproject.com/Questions/275454/Can-anyone-help-me-with-Signtool-Setup-Deployment
    http://qualapps.blogspot.in/2006/12/code-signing.html
    The only clue I have is our solution having build configurations that aren't called "Debug" and "Release", which have been cloned from Debug/Release and have WinRT apps building. If the build script for WinRT depends on anything being
    called "Debug" and "Release" it wouldn't work correctly.
    In any case, there is no documentation for SignTool that mentions this error - how do I fix it?

    Hi TripleRectified,
    >> If the build script for WinRT depends on anything being called "Debug" and "Release" it wouldn't work correctly
    What's you version of Visual Studio, on my side, in the Visual Studio 2013 Update 4, I created a new configuration(Copy Settings from "Debug") to build a WINJS project, but I can't see the exception you mentioned.
    >>This reproduced when building on local machine, and goes away after building again
    Does it happen on all local machines? We need to exclude environment facts first, for example: Tool, OS etc.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error message: File can't be opened right now because it's being used by another task, such as moving or copying an item or emptying the Trash. Try again when the current task is complete.

    I recently transferred some data from my external hard drive to my desktop, but there was an error transferring some of the files and it couldn't respond, and eventually i simply removed the external hard drive. However, the folder/files are still on my desktop, and when i try to move them or delete them, this error message appears:
    “-folder/file name-” can’t be opened right now because it’s being used by another task, such as moving or copying an item or emptying the Trash. Try again when the current task is complete.
    Since I removed the external hard drive before the files were finished transferring, there is no way for the current task to be completed. How can I resolve this and delete the folders/files from my desktop?

    I just managed to resolve this by going to the apple sign in the top left, choosing force quit (or you could do option+command+esc), then i chose finder, and i clicked relaunch. After relaunching finder, the error message doesn't appear anymore, and I could move these files/folders, and delete them just fine.
    Hope this will help other people who encounter similar problems in the future!

Maybe you are looking for

  • Is a SATA 6Gbp/s SSD compatible with my 2007 MB

    Hello, I was wandering whether a 6Gbp/s SATA 3 SSD is compatible with my 2007 Black MacBook. I know the MacBook is limited to 1.5Gbp/s but I need the speed improvements. Just wandering if the cables are the same and all that. Thanks in Advance

  • CV04N takes long time to process select query on DRAT table

    Hello Team, While using CV04N to display DIR's, it takes long time to process select query on DRAT table. This query includes all the key fields. Any idea as to how to analyse this? Thanks and best regards, Bobby Moderator message: please read the st

  • Capturing the login screen

    Hello, I am using a MacBook, OS 10.5.7. I would like to capture the login screen for a handout that I am preparing for our users. However, the key combinations: cmdshift4 and cmdshift3 don't seem to function at the login screen phase. Does anyone kno

  • Customer opening hours not pulling...

    Hi All, Created purchase order & then delivery. But when I go in the delivery header-shipment tab - Ship to party and over there I can see Delivery date but not the opening hours. Its showing  00:00 - 00:00 and 00:00 - 00:00 I looked into the PRD exa

  • Issues with setting up Exchange Server 2013

    Hi All  Not sure what im doing wrong yet i am having issues with exchange server 2013. Currently I have got general SMTP Mail flow working. as long as i log onto the local servers OWA (https://10.x.x.x/owa) i can log into a users mailbox. i have test