Error message: "Unable to open the physical file" when trying to attach AdventureWorks database

I have searched the internet and this forum and have not found an answer...
I am trying to install the AdventureWorks database into my single instance of MS SQL Server Express 2005.  I am logged into my machine as an administrator and logged into SQL Server 2005 express 'sa'.  I attempt to run the following script:
exec sp_attach_db @dbname = N'AdventureWorks',
@filename1 = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Data.mdf',
@filename2 = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_log.ldf'
The error message I get back is:
Msg 5120, Level 16, State 101, Line 1
Unable to open the physical file "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Data.mdf". Operating system error 5: "5(Access is denied.)".
The folder "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data" and all the files in it are read-write.  I am 100.0000% certain the files "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Data.mdf" and "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Log.ldf" exist!  They are the result of running the installation program AdventureWorksDB.msi, which I downloaded from: http://www.codeplex.com/MSFTDBProdSamples/Release/ProjectReleases.aspx?ReleaseId=4004.
What do I have to do to install the AdventureWorkds database????

Hello,
To try to help you, please, could you give some more informations ?
- the operating system (XP/Vista), the edition ( Pro/Home...) and the service pack
- usually, the installer installs the both files in C:\Program Files\Microsoft Sql Server\Samples. Is there any change in the location or have you moved the both files ?
- could you check with the files explorer , that the 2 files are read-write and not read only( find one file, right-click on it, properties and in the 1st tabpage, you should see a checkbox read-only ( if checked , unchecke it ) ?
- have you Sql Server Management Studio Express Edition ( at least SP1 ) ?
If no, download it and use it to attach
in the object explorer,
click on your instance to expand it
right click on databases
in the contextual menu, click on attach
in the new form,click on add
you arrive on a second form : find your file , click on it, and OK
it's the simplest way to attach ( the sp_-attach_db is complicated to type )
the error messages are sometimes more clear in SSMSEE than in Sqlcmd
Try also to attach ( thru SSMSEE or Sqlcmd but in using the windows authentification )
NB: i hope that you are not trying to attach AdventureWorks on a remote instance and on a remote computer ( it would explain access denied )
We are waiting for your feedback to try to help you more efficiently
Have a nice day

Similar Messages

  • Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    hi,
    am running the below command for moving sql serevr mdf and ldf files  from one  drive to another : c  drive to d drive:
    but am getting the below error
    SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".
    use master
    DECLARE @DBName nvarchar(50)
    SET @DBName = 'CMP_143'
    DECLARE @RC int
    EXEC @RC = sp_detach_db @DBName
    DECLARE @NewPath nvarchar(1000)
    --SET @NewPath = 'E:\Data\Microsoft SQL Server\Data\';
    SET @NewPath = 'D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\';
    DECLARE @OldPath nvarchar(1000)
    SET @OldPath = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\';
    DECLARE @DBFileName nvarchar(100)
    SET @DBFileName = @DBName + '.mdf';
    DECLARE @LogFileName nvarchar(100)
    SET @LogFileName = @DBName + '_log.ldf';
    DECLARE @SRCData nvarchar(1000)
    SET @SRCData = @OldPath + @DBFileName;
    DECLARE @SRCLog nvarchar(1000)
    SET @SRCLog = @OldPath + @LogFileName;
    DECLARE @DESTData nvarchar(1000)
    SET @DESTData = @NewPath + @DBFileName;
    DECLARE @DESTLog nvarchar(1000)
    SET @DESTLog = @NewPath + @LogFileName;
    DECLARE @FILEPATH nvarchar(1000);
    DECLARE @LOGPATH nvarchar(1000);
    SET @FILEPATH = N'xcopy /Y "' + @SRCData + N'" "' + @NewPath + '"';
    SET @LOGPATH = N'xcopy /Y "' + @SRCLog + N'" "' + @NewPath + '"';
    exec xp_cmdshell @FILEPATH;
    exec xp_cmdshell @LOGPATH;
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    go
    can anyone pls help how to set the db offline. currently  i  stopped the sql server services from services.msc and started the  sql server agent.
    should i stop both services for moving from one drive to another?
    note: I tried teh below solution but this didint work:
    ALTER DATABASE <DBName> SET OFFLINE WITH ROLLBACK IMMEDIATE
    Update:
    now am getting the message :
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    (3 row(s) affected)
    (3 row(s) affected)
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    First you should have checked the database mdf/ldf name and location by using the command
    Use CMP_143
    Go
    Sp_helpfile
    Looks like your database CMP_143 was successfully detached but mdf/ldf location or name was different that is why it did not get copied to target location.
    Database is already detached that’s why db offline failed
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    Attached step is failing as there is no mdf file
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)"
    Solution:
    Search for the physical files(mdf/ldf) in the OS and copy to target location and the re-run sp_attach_db with right location and name of mdf/ldf.

  • Since upgrading to FF 4, I have constant crashes (updating graphics drivers did not help). now all my bookmarks are gone. When I try to restore them, I get error message: "Unable to process the backup file".

    Since I "upgraded" to FF 4, I have constant crashes (I tried updating my graphics drivers--it did not help) and now all of my bookmarks have disappeared. When I try to restore them, I get this error message "Unable to process the backup file". I have lost years of bookmarks...please help.
    I am using Windows XP, SP 3 if that matters.

    I am also unable to restore any of the backups of the bookmarks, both automatic backups and two backups that I created manually. Since I was able to restore backups before, and since no changes have occurred to these backup files, the problem must be with Firefox.
    Right before my bookmarks disappeared, FF crashed and I accidentally started FF 3.5. When I saw what I did, I ended the Firefox process and started FF 4. That's when all my bookmarks were gone and I discovered I couldn't retrieve any backups. I did note that an add-on was updated when I restarted FF. Maybe that's the problem. Does FF have a Safe mode?

  • Problem with importing saved .json backup file in fresh installed firefox 3.6.8? Message "unable to process the backup file", when i choosed option "Restore" from menu "organize your bookmarks" !?

    Hello,
    my problem is with importing saved .json backup file in fresh installed firefox 3.6.8? Message "unable to process the backup file", when i choosed option "Restore" from menu "organize your bookmarks" !?
    Normally that i followed all instructions from your support site, and that i tried many things, but nothing helped :( !?
    my .json file isn't corrupted cause it was saved on another partition before formatting my OS.
    Please don't tell me that my bookmarks are lost :( cause i had many important things in that bookmarks, on 100.s pages :( ....
    Thanks in advance!
    Sincerely,
    hoho33

    "
    Can you restore that JSON backup in a new profile?
    Did you make sure that it is really a JSON backup and that there is no missing or hidden other file extension?
    A JSON backup starts with: {"title":"","id":1,"dateAdded"
    A HTML backup starts with: <!DOCTYPE NETSCAPE-Bookmark-file-1>
    You can try if you can restore that JSON backup in a new profile.
    Create a new profile as a test to check if your current profile is causing the problems
    See Basic Troubleshooting: Make a new profile
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    Please for administration of this support site, make possibility to quote someone's answer, on this way is dificult to answer somebody who wrote some suggestion!
    No, i can't restore JSON backup in new profile, even on fresh installed OS XP SP3, with fresh installation of latest version of firefox!
    MAN I TOLD YOU 10X IT'S 200 % JSON BACKUP FILE!!! I'M NOT IN IT FROM YESTERDAY, I WORK IN IT 12 YEARS!!!
    I tried restoring json backup in new profile, but nothing, i couldn't restore, cause that stupid error from screen shot which i posted again appears !
    Man i'm not totally noob i repeat 2nd time here, and normally that i know to create new profile, and that i tried that, but that didn't help!
    I can't believe that FIREFOX has not good support team, and doesn't care for yours users, this will not give me more reason to use in future firefox
    like borwser, if i don't have good support, and when i have problem like this, to loose all my very important bookmarks and passwords on them, and
    firefox support won't to help me to solve my problem!
    If somebody from firefox support team read this, i can give you Remote desktop access to my computer to try solve this problem, like other serious company
    like HP, Dell , etc. give remote desktop support to their users!
    Corel are you from firefox support team? Please don't write same suggestions, cause i know to read, and i understand well if you write once some suggestion!
    Greetzz

  • When I try to update I get an U44M1I210 error message, "Unable to extract the downloaded files" - help please, applies to latest Indesign, Illustrator and Photoshop CC

    When I try to do a CC update I get an U44M1I210 error message, "Update failed - Unable to extract the downloaded files. Press retry to download again. (U44M1I210)" - help please - re-downloading makes no difference, applies to latest Indesign, Illustrator and Photoshop CC, others seemed to update without problems. I can see the disk image files in AAMUpdater folder but they will not open and come up with "couldn't be opened - resource busy" message.

    Yes Jeff, I did all those several times to no avail.
    I've included a small error snippet from two installs here. In Creative Cloud when updating the Apps, all 3 get to 50%, then the failure occurs. Retrying starts at 50% and fails the same way each time.
    This first one is a segment from the Indesign updater - I have always had the all hard drive folders with read and write privileges allowed and I checked again, this is still the case so I do not know why this particular error message is arising. The second snippet if from the Illustrator update.
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Installer Operation: PayloadUninstaller
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Session {CB2632B8-D44B-11E3-88A6-77388C8F654B} modify request for AdobeCode: CommonUninstall
    08/21/14 09:27:20:527 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Effective AdobeCode for: CommonUninstall is CommonUninstall
    08/21/14 09:27:20:528 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Payload  8.0.0.15 CommonUninstall: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | INSTALLDIR property not found in database
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | UninstallSeq property not found in database
    08/21/14 09:27:20:531 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 1)
    08/21/14 09:27:20:531 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 1)
    08/21/14 09:27:20:531 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 2)
    08/21/14 09:27:20:531 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 3)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 3)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 4)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 4)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0". Check and correct folder & parent directory permissions and then try again.(Seq 5)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 5)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 6)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 6)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 7)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 7)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 8)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 8)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP/extensions". Check and correct folder & parent directory permissions and then try again.(Seq 9)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 9)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP". Check and correct folder & parent directory permissions and then try again.(Seq 10)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 10)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 11)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 11)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 12)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 12)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 13)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 13)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 14)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 14)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 15)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 15)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 16)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 16)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 17)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 17)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 18)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 18)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 19)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 19)
    08/21/14 09:27:20:533 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    08/21/14 09:27:20:533 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Physical payload uninstall result:0
    08/21/14 09:27:20:623 | [INFO] |  | OOBE | DE |  |  |  | 24018 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    08/21/14 09:27:20:623 | [INFO] |  | OOBE | DE |  |  |  | 24018 | :: END TIMER :: [Payload Operation :CommonUninstall] took 101 milliseconds (0.101 seconds) DTR = 79.2079 KBPS (0.0773515 MBPS)
    08/21/14 09:27:20:624 | [INFO] |  | OOBE | DE |  |  |  | 24018 | User specified overrideFile:
    08/21/14 09:27:20:625 | [INFO] |  | OOBE | DE |  |  |  | 24018 | The csu inventory was not updated for payload  8.0.0.15 CommonUninstall, value of local var is -1
    08/21/14 09:27:20:625 | [INFO] |  | OOBE | DE |  |  |  | 24018 | Calling the ROLLBACK custom action code for pre-remove for payload  8.0.0.15 CommonUninstall
    08/21/14 09:27:20:698 | [INFO] |  | OOBE | DE |  |  |  | 24018 | No operation.  We're done:
    0/22/14 11:18:46:937 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    10/22/14 11:18:46:938 | [INFO] |  | OOBE | DE |  |  |  | 77654 | UninstallSeq property not found in database
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Users/MikeTessersComputer/Library/Preferences/Adobe/dynamiclinkmediaserver". Check and correct folder & parent directory permissions and then try again.(Seq 1)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 1)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Users/MikeTessersComputer/Library/Preferences/Adobe InDesign". Check and correct folder & parent directory permissions and then try again.(Seq 2)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 3)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 3)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Startup Scripts CC/Adobe Photoshop". Check and correct folder & parent directory permissions and then try again.(Seq 4)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 4)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0/en_US/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 5)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 5)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0/en_US". Check and correct folder & parent directory permissions and then try again.(Seq 6)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 6)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0". Check and correct folder & parent directory permissions and then try again.(Seq 7)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 7)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 8)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 8)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 9)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 9)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0". Check and correct folder & parent directory permissions and then try again.(Seq 10)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 10)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign". Check and correct folder & parent directory permissions and then try again.(Seq 11)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 11)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/ro_RO". Check and correct folder & parent directory permissions and then try again.(Seq 12)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 12)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 13)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 13)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/el_GR". Check and correct folder & parent directory permissions and then try again.(Seq 14)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 14)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 15)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 15)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 16)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 16)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP/extensions". Check and correct folder & parent directory permissions and then try again.(Seq 17)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 17)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP". Check and correct folder & parent directory permissions and then try again.(Seq 18)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 18)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 19)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 19)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 20)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 20)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Photoshop CC 2014/Plug-ins". Check and correct folder & parent directory permissions and then try again.(Seq 21)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 21)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Photoshop CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 22)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 22)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 23)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 23)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 24)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 24)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 25)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 25)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 26)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 26)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 27)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 27)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 28)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 28)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 29)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 29)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 30)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 30)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 31)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 31)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 32)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 32)
    10/22/14 11:18:46:942 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 33)
    10/22/14 11:18:46:942 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 33)
    10/22/14 11:18:46:942 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    10/22/14 11:18:46:942 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Physical payload uninstall result:0
    10/22/14 11:18:47:030 | [INFO] |  | OOBE | DE |  |  |  | 77365 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0

  • Error message: "Unable to prepare the selected file for editing"

    There is another similar post. <br /><br />I have imported a bunch of Nikon NEF raw files into Lightroom. I can work them without any problem, but when I right-click the image to edit it further in Photoshop CS3. I get this message:<br /><br />i "Lightroom was unable to prepare the selected file <filename.NEF> for editing. It will not be opened."<br /><br />Photoshop has no trouble opening these NEF files by itself, but Lightroom can't hand it them off. Anyone know why this is? Nothing I can find in the help file or elsewhere here.<br /><br />Stan

    Sean, if they are off-line, would any of this Xmp stuff make any difference? Don't they need to be brought On-lie to edit? And where would the Xmp's go with them off-line?
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core, Pentax *ist D
    http://donricklin.blogspot.com/

  • When I click a backup date to restore bookmarks from backup, get error message "unable to process the backup file". unable to successfully copy bookmarks from default profile to new profile, nor access the backup function successfully. any suggestions?

    I had trouble with WiseStamp and was advised to create a new profile. I did and the WiseStamp issue was resolved. However, I now have no bookmarks on the new profile. I copied the places. file from the old profile to the new one, but with no success. The bookmarks do exist on the old profile. I like having WiseStamp working, but need those multitude of bookmarks more! Any advice greatly appreciated. :)

    Did you try to restore from another JSON backup?
    You can try to move places.sqlite to another location and only leave that backup file in the bookmarkbackups folder.
    See:
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Locked_or_damaged_places.sqlite

  • I keep getting an error message that tells me the document i am trying to attach to an email is currently in use, that i need to close it, and retry.  i can't find where it is in use, and i am unable to attach it to the email.  what do i do?

    I am trying to attach a document that was created on the same computer to an email.  i continue to get an error message that indicates the document is in use, that i must close it, and retry.  i can't find where it is in use.  i have closed "word" which is the application it was created using.  i have restarted the computer multiple times, no luck.  what do i do, to reconcile this issue?

    I responded to you here >  https://discussions.apple.com/message/22264383#22264383
    Please do not start duplicate topics. Thank you 

  • I receive error message "Unable to connect to iTunes store" when trying to download updates to my iPhone4. No problems buying new apps.

    I have just started receiving the message "Cannot connect to iTunes store" when I attempt to download upgrades to previously purchased apps. However, I have no problem buying new apps from the iTunes store. No issues with wifi or connectivity.  Does anyone have any ideas or fixes? Thanks.

    1st. Turn off your phone and back on.
    if that does not work, do a reset by holding the on/off button and the home button until the Apple logo comes on.

  • Numbers error msg: "Unable to open ' .' Unknown file type."

    I last updated this doc 4 days ago, saving it every time I update it. I use it to track my children's school hours throughout the year. I have since restarted my Mac. I went to open this file today, and am getting the error message, "Unable to open ' (name of file)' Unknown file type.
    When I search for the doc under the spotlight, the name of it appears & it is listed as a Numbers doc, but I can't open it.
    Any ideas for a work around? I haven't backed it up in several weeks, so I'll be very sad if I can't retrieve it at all!
    Thanks for your help.

    Have a look here http://www.dmxzone.com/go/16740/clearing-dreamweaver-s-cache
    PS: Error 2 u 2

  • N79 (Error message :Unable to open .File type not ...

    Dear nokia service manager,,
    Iam sivakumar using the nokia N79 handset.Iam getting the message like this (Error message :Unable to open .File type not supported)when i was trying to open the video file shooted by some other camera.I have tried changing the format of the file..but no use ..i dont get ant suitable software converter in the internet.So kindly look into this matter as i need this very uregently...
    hope its a mandatory feature as laptop and mobile interface are simple task nowadays in mobile...
    pls reply me..its very urgent...thanku..

    You could try Videora (http://www.videora.com/) - the downside here is that they have specific versions for specific phones, and sometimes it will makea file that plays perfectly in the desired phone but can't be shared to other models. The don't show a version for the N79, but try the N96 one because the N96 is the most similar OS to yours that they offer.

  • When ever I try to export to Perfect Effects 8 a DNG Photo this is the Error message "Unable to complete the export. One or more files could not be found" Any one know how to fix this?

    When ever I try to export to Perfect Effects 8 a DNG Photo this is the Error message "Unable to complete the export. One or more files could not be found" Any one know how to fix this?@

    Adobe web chat come up with a solution.
    Open the PP project.
    Export your sequence or project as a Final Cut Pro XML file.
    Set up a new PP project.
    Import the Final Cut Pro XML file.
    This will get you back up an running.
    Since getting back to editing this project I have found that some things will be lost or change in using XML:
    You will lose position key framing, black video clips, dissolve fx, audio levels, audio dynamic fx, the ability to open a multi camera clip and change the camera view.
    You will keep cut points, crop fx.
    Not perfect but only took a couple of hours to save 3 days work.

  • Sending of message failed. Unable to open the temporary file C:\Users\Admin\AppData\Local\Temp\nsemail.eml. Check your 'Temporary Directory' setting.

    after opening an email I knew to be a phishing attempt, I forwarded it to my bank's spam/phishing email address. I did NOT click any link in the suspicious email. only forwarded it.
    now when I try to send an email I get the following error message:
    Sending of message failed.
    Unable to open the temporary file C:\Users\Admin\AppData\Local\Temp\nsemail.eml. Check your 'Temporary Directory' setting.
    I can't find a temp directory. where is this and how do I fix it?

    Try to start *Windows* in safe mode with networking enabled.
    - Win8 http://windows.microsoft.com/en-US/windows-8/windows-startup-settings-including-safe-mode
    - Win7 http://windows.microsoft.com/en-US/windows7/Start-your-computer-in-safe-mode
    - XP http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx
    Still in Windows safe mode, start Thunderbird in safe mode.
    - https://support.mozilla.org/en-US/kb/safe-mode
    Does the problem go away?

  • I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file

    I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file me be open in another application."Please help I really need to get this file open.

    Since you've shown us the folder contents it's a good bet it isn't in use (no lock file). And it doesn't look like the file is mis-named as there doesn't seem to be anything else there that would be the .indd file (but just in case, open it in TextEdit and paste the first few lines here so we can see what the file header says), so the most likely case is the file is damaged. Is that on a removable device of some sort?
    You can try the tool at Repair corrupt InDesign Adobe files on Mac OS X  or send me a link to the file by private message and I'll try the recovery tool I have for Windows.

  • PDF SCANS ERROR MESSAGE: CAN'T "OPEN THE DEFAULT APP FOR THIS FILE TYPE" EG. PDF

    OFFICEJET PRO 8600 PLUS , WIN 7, SCAN TO COMPUTER AS A PDF FILE.  ERROR MESSAGE: "
     CAN'T "OPEN THE DEFAULT APP FOR THIS FILE TYPE" EG. PDF

    Hi @reddog2,
    I would contact HP Cloud Services for assistance. Call 1-855-785-2777.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

Maybe you are looking for

  • Accounting document number in Po

    Hi when ever  completing goods receipt accounting document created, Is this possible to configure accounting document number show in purchase order history me53n t.code, showing like that goods receipt and invoice number,plz suggest Regards Sam

  • Drive Failure and Replacement

    Hi - My 5th Gen 80gb hard drive gave in after around 20 months of use. Out of warranty, so purchased a replacement from ebay. Popped it inside and the iPod came back to life. On trying to sync my music etc it seemed to take much longer than usual - 1

  • Failure in retrieving quotas: cDOT 8.2 , NFSv4 and Centos 7.1

    Hi everyone,I would like to get some help on a tedious quota issue I am facing while using NFSv4 on cDOT 8.2.1 and linux centos 7 (kernel vsersion: 3.10.0-229.el7.x86_64 ).  Basically I get an "operation not permitted" eveytime I try to get quotas fr

  • Person is not updating in Org. Stru.

    Hi, I uploaded initial master through LSMW program.Its uploaded sucessfully.But I cheched in org. structure,its not updating person.I checked Integration also everything is fine.Please sugest me. Thanks KB

  • Advanced Audit Policy in Windows 2008R2

    Hi, This is in regards to Advanced Audit Policy configurations in Windows 2008R2. 1. What is the correct way to configure the Audit policies if we have to audit mix of settings from both Legacy & Advanced policies..? For example I would like to audit