Where in Photoshop directory do I unzip the following file

Hi,
I found some royalty free frames on the internet that I used before, but I reinstalled my Adobe Photoshop CS due to computer problems, and can't remember where I extract the file to. The link is as follows:
http://gimei.deviantart.com/art/15-illustration-frames-61296653
It's the 15 ornate frames downloaded in a .zip file. I have Win 7. Please help. Thanks in advance.

It's a psd file with frames on different layers, so it doesn't install in any specific place for photoshop.
Just unzip the file in the place of your choosing, open the psd in photoshop and drag a frame over to
the photo you want to use it on.
MTSTUNER

Similar Messages

  • Problem in unzipping the zip files

    Hi,
    I have created a program to unzip the zip files. But when i try to zip it is creating the zipped files outside the folder where it is to be zipped.
    what is wrong with my code.
    if the zip file is migration.zip
    if the path inside the zip file shows
    and the path inside says this
    /codebase/scripts/
    it would create migration folder and create codebase folder outside the migration folder
    what is wrong with my code
    //Unzip the zip files to the folder with their name
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.FilenameFilter;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.Enumeration;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipFile;
    // Getting the path to find the type of files
    public class zipper implements FilenameFilter{
              String ext;
              public zipper(String ext)
                   this.ext="." + ext;
              public boolean accept(File dir,String name)
                   return name.endsWith(ext);
    public static void main(String args[]) throws IOException
              try
                        String dir = "D:/a/";
                        File f2 = new File(dir);
                        FilenameFilter fn= new zipper("zip");
                        String ss[]=f2.list(fn);
                   for ( int j = 0; j < ss.length; j++)
                        System.out.println(" Extracting ...." + ss[j]) ;
                        String zipFile = dir + ss[j];
                        ZipFile zf = new ZipFile(zipFile);
                        Enumeration entries = zf.entries();
                        String directoryName = zf.getName();
                        directoryName = directoryName.substring(0, (directoryName.indexOf(":" + File.separator) + 2));
                             String folderName = zf.getName();
                             folderName = folderName.substring(0, folderName.lastIndexOf("."));
                             File file1 = new File(folderName);
                             //File file1 = new File(entries.getName());
                             file1.mkdir();
                   while (entries.hasMoreElements())
                             ZipEntry ze = (ZipEntry) entries.nextElement();
                             String path = directoryName + ze.getName() ;
                             String path1 = folderName + ze.getName();
                             //System.out.println(" : " + path);
                             if (ze.getName().endsWith("/"))
                                       File file = new File(path);
                                       file.mkdir();
                                       continue;
                                       //break;
                        BufferedReader bReader = new BufferedReader(new InputStreamReader(zf.getInputStream(ze)));
         StringBuffer fileBuffer = new StringBuffer(" ");
         String line ;
                        while ((line = bReader.readLine()) != null)
                                  fileBuffer.append(line);
                                  fileBuffer.append("\r\n");
                                  //line = line + "\r\n";
                                  //byte[] b = new byte[line.length()];
                                  //b =line.getBytes();
                                  //out.write();
                        String fileData = fileBuffer.toString();
         File f1 = new File(path);
                        f1.createNewFile();
                        //FileOutputStream out = new FileOutputStream(folderName + "/" + ze.getName());
                        FileOutputStream out = new FileOutputStream(path);
                        long size = ze.getSize();
                        byte[] data1 = new byte[fileData.length()];
                        for (int i = 0; i < fileData.length(); i++)
                                  data1[i] = (byte) fileData.charAt(i);
         out.write(data1);
         out.close();
                        bReader.close();                         
                   } catch (Exception e)
                             e.printStackTrace();
    Thanks in Advance
    Avinash

    String path = directoryName + ze.getName();
    String path1 = folderName + File.separator+ ze.getName();
    File f1 = new File(path); // pass path1 instead of path
    f1.createNewFile();
    FileOutputStream out = new FileOutputStream(path); // pass path1 instead of path

  • Problem in Unzipping the zip file

    Hi
    I have created a program to unzip the zip files in the folder named after the zip file
    it is working well well when u try to zip zip files put in a directory
    i.e u create a folder name contents and put files into that and then zip it
    but when u directly create a zip file , without putting in a folder
    it creates the folder and zip the files outside the folder
    Another problem is that with the path
    for e.g. suppose the zip file name is contents and path should show
    contents/filename.txt but there are some other files whose path shows
    res/file.txt. In this case it creates a folder of res and put it outside the
    folder with the name of zip file
    I have pasted my code :
    //Unzip the zip files to the folder with their name
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.FilenameFilter;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.Enumeration;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipFile;
    // Getting the path to find the type of files
    public class zipper implements FilenameFilter{
              String ext;
              public zipper(String ext)
                   this.ext="." + ext;
              public boolean accept(File dir,String name)
                   return name.endsWith(ext);
    public static void main(String args[]) throws IOException
              try
                        String dir = "D:/";
                        File f2 = new File(dir);
                        FilenameFilter fn= new zipper("zip");
                        String ss[]=f2.list(fn);
                   for ( int j = 0; j < ss.length; j++)
                        System.out.println(" Extracting ...." + ss[j]) ;
                        String zipFile = dir + ss[j];
                        ZipFile zf = new ZipFile(zipFile);
                        Enumeration entries = zf.entries();
                        String directoryName = zf.getName();
                        directoryName = directoryName.substring(0, (directoryName.indexOf(":" + File.separator) + 2));
                             String folderName = zf.getName();
                             folderName = folderName.substring(0, folderName.lastIndexOf("."));
                             File file1 = new File(folderName);
                             //File file1 = new File(entries.getName());
                             file1.mkdir();
                   while (entries.hasMoreElements())
                             ZipEntry ze = (ZipEntry) entries.nextElement();
                             String path = directoryName + ze.getName() ;
                             String path1 = folderName + ze.getName();
                             //System.out.println(" : " + path);
                             if (ze.getName().endsWith("/"))
                                       File file = new File(path);
                                       file.mkdir();
                                       continue;
                                       //break;
                        BufferedReader bReader = new BufferedReader(new InputStreamReader(zf.getInputStream(ze)));
         StringBuffer fileBuffer = new StringBuffer(" ");
         String line ;
                        while ((line = bReader.readLine()) != null)
                                  fileBuffer.append(line);
                                  fileBuffer.append("\r\n");
                                  //line = line + "\r\n";
                                  //byte[] b = new byte[line.length()];
                                  //b =line.getBytes();
                                  //out.write();
                        String fileData = fileBuffer.toString();
         File f1 = new File(path);
                        f1.createNewFile();
                        //FileOutputStream out = new FileOutputStream(folderName + "/" + ze.getName());
                        FileOutputStream out = new FileOutputStream(path);
                        long size = ze.getSize();
                        byte[] data1 = new byte[fileData.length()];
                        for (int i = 0; i < fileData.length(); i++)
                                  data1[i] = (byte) fileData.charAt(i);
         out.write(data1);
         out.close();
                        bReader.close();                         
                   } catch (Exception e)
                             e.printStackTrace();
    Thanks in Advance
    Avinash

    String path = directoryName + ze.getName();
    String path1 = folderName + File.separator+ ze.getName();
    File f1 = new File(path); // pass path1 instead of path
    f1.createNewFile();
    FileOutputStream out = new FileOutputStream(path); // pass path1 instead of path

  • If I'm in Lightroom 5, and try to Edit in Photoshop CS6, I always get the following message: "This version of Lightroom may require the Photoshop Camera Raw plug-in version 8.6 for full compatibility." But I have updated to 8.6 and have no remaining updat

    If I'm in LIghtroom 5, and try to Edit in Photoshop CS6, I always get the following message: "This version of Lightroom may require the Photoshop Camera Raw plug-in version 8.6 for full compatibility." But I have updated to 8.6 and have no remaining updates. How can I fix this?
    If I click "Open Anyway" or "Render using Lightroom", I get the following message:
    "Adobe Photoshop CS6 cannot be opened because of a problem.
    Check with the developer to make sure Adobe Photoshop CS6 works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X."
    Please tell me what to do so I can edit from Lightroom to Photoshop.

    In Photoshop, if you choose Help - About Plug-in... - Camera Raw, does it say 8.6?
    Seems to me there was some hiccup they found in the update process, which prompted this:
    Camera Raw updates cannot be applied
    I honestly don't know if the problem could apply to 8.6 as well, which is why I asked you to check to make very sure you really got it.
    -Noel

  • After re-installing Win 7 64 on my computer, and attempting to install my copy of Adobe Photoshop Elements, I now get the following message: "This version of Photoshop Elements requires MS Internet Explorer 4.0 or higher to be installed". Does anyone have

    After re-installing Win 7 64 on my computer, and attempting to install my copy of Adobe Photoshop Elements, I now get the following message: "This version of Photoshop Elements requires MS Internet Explorer 4.0 or higher to be installed". Does anyone have an idea of what the problem is? It has always worked in the past.

    I have found a temporary solution, allowing the previous version of iTunes (v. 11.1.3 (x64) in my case) to be re-installed.  It will allow you to re-establish use of iTunes until the Apple software engineers fix the most recent disasterous upgrade (v. 11.1.4).  Please see and follow the procedure in the following article:http://smallbusiness.chron.com/reverting-previous-version-itunes-32590.html   The previous version works beautifully.

  • I created an image in Photoshop and saved it as the PSD file. Now when I try and open it it says it is not compatible with my version. How could this be when I created it in this version?

    I created an image in Photoshop and saved it as the PSD file. Now when I try and open it it says it is not compatible with my version. How could this be when I created it in this version?

    That depends on why it won't open.  Most of the time it means the file is corrupted and unlikely to be recovered. If you saved it right after adding or copying a LOT of layers - then it might just be the layer limit and we can attempt to recover it.

  • I just bought lightroom 5. I had lightroom 3. Now when I export my photos from lightroom 5 and upload them into my photoshop elements program to edit the photo files are at 100% zoom percentage. When I upload photos from my old lightroom 3 program they co

    I just bought lightroom 5. I had lightroom 3. Now when I export my photos from lightroom 5 and upload them into my photoshop elements program to edit the photo files are at 100% zoom percentage. When I upload photos from my old lightroom 3 program they come into photoshop at 14% zoom percentage which is what I want them to come in at so I can zoom them in to detail the skin. What might have changed settings wise between the 2 programs, I cannot figure it out.

    I just bought lightroom 5. I had lightroom 3. Now when I export my photos from lightroom 5 and upload them into my photoshop elements program to edit the photo files are at 100% zoom percentage. When I upload photos from my old lightroom 3 program they come into photoshop at 14% zoom percentage which is what I want them to come in at so I can zoom them in to detail the skin. What might have changed settings wise between the 2 programs, I cannot figure it out.

  • Script Alert: "Sorry I could not process the following files" (Error Message using Image Processor)

    I'm a seasoned Photoshop/Bridge CS5 user who recently upgraded to CS6.  In Bridge I just ran my first Image Processor batch, trying to convert a set of RAW .NEF files to .PSD files with a basic editing action I created applied to them.  Photoshop CS6 opens the files from Bridge and applies the actions, but then I get the "Script alert" error message "Sorry I could not process the following files" and a list of all of the files in the batch I was trying to run the script on.  The files all remain open and are saved on my hard drive in a folder created by the Image Processor script, but do not close unless I manually close them.  I never had this problem in CS5 where the image processor would apply the desired actions to the batch of photos one at a time, then save and close.  Thoughts on how I can fix this bug?

    Hey Jeff--
    No specific action steps to make the image safe - no flattening, etc. Had problems narrowing down the specific action step causing the problem. So I ran the Image Processor script in the ExtendScript ToolKit and debugged in. (I'm using the version that shipped with CS4.)
    Turns out what was happening is that the app.activeDocument.close() command on line 1490 was never getting called, because the this.SaveFile() above it was throwing an exception. More debugging got me to the problem - SaveFile() tries to restore the history state after making a doc safe for saving as a JPEG. This causes an exception. So I commented out line 1571:
    // app.activeDocument.ativeHistoryState = historyState;
    The script runs just fine after this. I commented out the close to see what history states got added to the doc, but no new states are recorded, so commenting out the restore line should not cause any problems.
    Of course, my solution does not solve the problem and I may need to comment out all the saveFile() lines that does this. Not sure why some actions have this problem and others don't. The actions I am running have about 25 steps. Perhaps PS is not catching up quick enough. I added a $.sleep(2500) after the restore history but that didn't help.
    So, not sure where this gets us. I will check about posting an action set with just one of the actions that cause the problem. But I may also have our customer comment out that line of the Image Processor script.
    Hope this helps. May post more next week.

  • The Following Files could not be imported

    I was on vacation and was emptying my digital camera into my G4 laptop into iPhoto 5 (same OS 10.3.9 as i have on my imac G5). Now, that I'm home, I'm trying to import those photos into my iPhoto on my G5. I copied all the folder/files over to my desktop with no problem and filed them properly into the iPhoto Library directory. But, when I try to drag the photo files into iPhoto, it starts to import and then i get this error: "The following files could not be imported (they may be an unrecognized file type or the files may not contain valid data).
    I get this same error if I go the Add to Library (apple + O) option as well.
    I haven't changed the file types at all--they're still .jpg
    I dont' get what the problem is. I've dragged .psd files into iPhoto before and it's been fine.
    I was trying to find a way to sync the two iPhoto's up together, but that doesn't seem to be an option.
    Anyhelp would be great. Thanks.

    Hi upscene,
    If you dragged the files/folders directly into the iPhoto Library folder in the Finder, that is your problem. Photos have to be imported. when they are imported, iPhoto copies them into the library.
    close iPhoto
    What you need to do is drag out ONLY the folders you dragged into the library folder in the finder. Drag them to the desktop, and now open iPhoto
    Drag the folders from the desktop into an open iPhoto viewing window to import them.
    Here is more info for you:
    --First thing to know and remember is this...Do not drag any images, folder of images into the iPhoto Library in the Finder. Images have to be imported into iPhoto within the application. Do not scan images and save them into the iPhoto Library folder in the Finder. Save them to another location such as the Pictures folder or even the desktop. You can then import them into iPhoto.
    If you have already put files/folders in the iPhoto Library folder in the Finder then you will also find out that if you try to import them into iPhoto you will get an error message. No worry, just drag them to the desktop and import from there.
    --All images that you import are shown in the library view. You can choose how you want to view, by rolls, by date, by rating, etc. When you put images in an Album, slideshow, book, etc, you are actually just putting pointers to those images in the library. You are not adding more images. If you delete an image from the Album it will still be in the library. If you delete an image from the library it is deleted from iPhoto's database and your hard drive (unless you have it backed up somewhere else)
    --You have a folder of images on your hard drive and want to import them into iPhoto. Drag the folder of images into an open iPhoto Library window and the folder of photos will be copied into the library, resulting in a new roll with the name of the folder. You now have two copies of those photos, the ones in iPhoto's database and the ones on your desktop. You can keep the ones on your desktop that you just imported as backup or you can delete that folder.
    -- you scan a picture/pictures and save it in a folder. You cannot scan directly into iPhoto or the iPhoto Library folder in the Finder.
    You want all your photos in iPhoto so you import them into iPhoto.
    Now you have two copies of that picture/pictures, so you can delete the originals that were in the scanned folder and keep the one/ones that were imported into iPhoto.
    -- You download pictures from your camera into iPhoto.
    There is now one copy of each of the pictures. (DO NOT HAVE IPHOTO DELETE THE IMAGES FROM YOUR CAMERA! DELETE THEM MANUALLY WITH THE CAMERA-if something goes wrong with the import and they are never imported and then they are deleted from the camera you might end up losing those images)
    You want to change something about a picture you imported, such as
    cropping it or changing the size, or changing the orientation.
    Once you do that to a picture, you now have two copies of the picture
    in iPhoto, the original and the edited one. The edited one will be in the library organize view. The original is packed away in an Original folder in your iPhoto Library folder under the date of the roll. You can always revert to the original by control clicking on the photo and choose "revert to orginal" You will not have this choice if you used iPhoto Diet to get rid of the Originals.
    (a quick note on cropping within iPhoto...when you are in edit mode, you automatically will be in the crop mode with cross hairs to highlight the crop area. To finish cropping you must click the crop button and then go back to library view and your cropped picture will be there.
    3.You want to use Photoshop or another graphic program to edit a picture in your iPhoto library.
    You can open up prefs for iPhoto and choose "when double clicking on
    photo ..do" choose "other" and select Photoshop. Now you can edit all
    pictures in your iPhoto library in PhotoShop by double clicking. If you save the photo with the same name and as a flattened file it will be saved right into iPhoto and you will see the changes. If you don't want to save it into iPhoto then do a "save as" and save to the desktop. You will then have the original photo still in iPhoto and your new edited photo on the desktop.
    Or, with iPhoto open, you can drag a picture from the library window
    to your desktop (you see a + sign on the pic you are dragging). You now
    have two of the same picture, one in the iPhoto library and one on your desktop. You can open up the one on your desktop in any graphic program and work on it. The one in iPhoto stays the same. You can also share/export the picture/pictures to your desktop or folder to work on them or do batch processing, etc. You will still have the originals in your iPhoto Library.
    Or, you can open up the ~/Pictures/iPhoto Library/folders and option drag any
    picture out of the folder to your desktop. Notice that you will see a plus sign while dragging the photo. This is copying the file to your desktop
    I would advise anyone not to do this as they might forget to use the option key and drag the photo out. Next time you open iPhoto the photo will be missing.
    Two Apple kbs for you to read
    Don't tamper with files in the iPhoto library folder
    About the iPhoto Library folder
    Don't forget that in Library view you can Control click on any picture and get a contextual menu with many options. One is to revert to original.
    As far as the syncing, there is really no way to sync two working libraries.
    I have an iMac and an iBook. I use the iMac for all my iPhoto editing, organizing etc. I import all photos to the iMac.
    Every couple of weeks i copy the iPhoto Library folder from the iMac to my iBook Pictures folder, thus replacing the old library with the newer one from the iMac. Since I have the same username on both computers this worked out great for me.
    When on vacation I use the iBook to download my photos to, but I use Image Capture and put them in dated folders. When I get home I just copy the dated folders to the iMac and import them into iPhoto there.

  • Help - "Unreadable files:.... The following files could not be imported..."

    Tried to add five .jpg photos to an existing iPhoto album and it raised this error:
    *Unreadable Files: 5*
    *The following files could not be imported (they may be an unrecognized file type or the files may not contain valid data).*
    I tried to open them with Photoshop and re-save them, different size - no go.
    iPhoto is set up to managed the photos in the library, when I look in the iPhoto library > originals > 2009 > directory, I see the photos there. They open with other apps just fine (preview.app, photoshop, browsers, quick look, etc.)
    How do I get these to show up in iPhoto? What did I do wrong? Or, how do I tell what's wrong with these files, as they appear to be just fine.
    Thanks for the help!!!

    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?
    If the new Library works correctly then it suggests that the other library is damaged:
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

  • AutoConfig could not successfully instantiate the following files

    Dear Gurus,
    We have just migrated to Autoconfig on DB tier and after running the autoconfig on DB tier we are getting the following error:
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [INSTANTIATE PHASE]
    AutoConfig could not successfully instantiate the following files:
    Directory: /volora/oracle9/app/oracle/product/9i/appsutil/install/MSBEP004_dcpsr006osm
    adcrobj.sh INSTE8_APPLY
    addbprf.sh INSTE8
    adsvdb.sh INSTE8
    adsvdcnv.sh INSTE8
    adsvdlsn.sh INSTE8
    afdbprf.sh INSTE8_PRF
    afmkinit.sh INSTE8_SETUP
    Directory: /volora/oracle9/app/oracle/product/9i/appsutil/install
    adlnkoh.sh INSTE8
    Directory: /volora/oracle9/app/oracle/product/9i/appsutil/scripts/MSBEP004_dcpsr006osm
    adautocfg.sh INSTE8
    addbctl.sh INSTE8
    addlnctl.sh INSTE8
    adlsnodes.sh INSTE8
    adpreclone.pl INSTE8
    Directory: /volora/oracle9/app/oracle/product/9i/rdbms/lib
    config.s INSTE8
    AutoConfig is exiting with status 14
    Please suggest what could be the problem
    Thanks in Advance
    Regards
    Kiran Rana

    hi guru
    The logfile given bellow error
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adpreclone.pl missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adsvdb.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adsvdlsn.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adsvdcnv.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/addbprf.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/afdbprf.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/addbctl.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/addlnctl.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adlsnodes_ux.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adlnkoh.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adautocfg_ux.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/adcrobj.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    File /volora/oracle9/app/oracle/product/9i/dbs/initMSBEP004.ora of type INSTALL already exists, this file will not be instantiated.
    File /volora/oracle9/app/oracle/product/9i/network/admin/MSBEP004_dcpsr006osm/listener.ora of type INSTALL already exists, this file will not be instantiated.
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/afmkinit.sh missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AC-00423: Template file: /volora/oracle9/app/oracle/product/9i/appsutil/template/config_aix_64.s missing from file system.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AutoConfig Setup Phase
    Running Setup Process 2 of 2 for AppsUtil
    AC-50400: Script file /volora/oracle9/app/oracle/product/9i/appsutil/install/MSBEP004_dcpsr006osm/afmkinit.sh missing.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AutoConfig Profile Phase
    Running Profile Process 1 of 1 for AppsUtil
    AC-50400: Script file /volora/oracle9/app/oracle/product/9i/appsutil/install/MSBEP004_dcpsr006osm/afdbprf.sh missing.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile
    AutoConfig Services Phase
    Running Service Process 1 of 1 for AppsUtil
    AC-50400: Script file /volora/oracle9/app/oracle/product/9i/appsutil/install/MSBEP004_dcpsr006osm/adcrobj.sh missing.
    Raised by oracle.apps.ad.autoconfig.InstantiateFile

  • Starting in 2015 I get the following error when I try to import my photos. "The following files were not imported because they could not be read"  -DSC8416.NEF  I've been importing the same type of photos with no errors then 2015 came along and now I can

    Starting in 2015 I get the following error when I try to import my photos. "The following files were not imported because they could not be read"  -DSC8416.NEF  I've been importing the same type of photos with no errors then 2015 came along and now I can no longer import.

    The error message is misleading, the problem is that you need WRITE privileges added to the destination directory tree.
    Assuming you are using the "date" structure that LR defaults to, find the directory that contains the 2014 folder (the one that works) and add WRITE rights to the parent of "2014".
    While you are there, if you want, add "2015" folder to beside "2014" and add READ and WRITE rights to that new directory.

  • Mount-DiskImage in a remote session exeception- Cannot process Cmdlet Definition XML for the following file:

    Hi everybody,
    I have a strange problem with Mount-DiskImage command.
    Environment: Windows server 2012 without any updates.
    All scripts signed as it was in Hanselman's blogpost
    http://www.hanselman.com/blog/SigningPowerShellScripts.aspx
    First script(script1) executing on one machine (server1), then copy another script(script2) to the remote server(server2) and run script2 in a PS-Session. Both are signed. Certificates are located on both servers.
    In a script I tried to
     Import-Module Storage
     $mountVolume = Mount-DiskImage -ImagePath $ImageSourcePath -PassThru
    where ImageSourcePath is a networkpath to iso image.
    But getting exception.
    Exception Text:
    Cannot process Cmdlet Definition XML for the following file:
    C:\Windows\system32\WindowsPowerShell\v1.0\Modules\Storage\Disk.cdxml. At line:138 char:17
    +                 $__cmdletization_objectModelWrapper = Microsoft.PowerShell.Utili ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Executable script code found in signature block.
    At line:139 char:17
    +                 $__cmdletization_objectModelWrapper.Initialize($PSCmdlet, $scrip ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Executable script code found in signature block.
    At line:143 char:21
    When I look into the C:\Windows\system32\WindowsPowerShell\v1.0\Modules\Storage\Disk.cdxml I didn't get what's happend, because in line 138- was xml comment.
    Any ideas?

    Hi,
    I suggest referring to the following links:
    http://blogs.msdn.com/b/san/archive/2012/09/21/iso-mounting-scenarios.aspx
    http://blogs.technet.com/b/heyscriptingguy/archive/2012/10/15/oct-15-blog.aspx
    Best Regards,
    Vincent Wu
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • The following files could not be found??

    All,
    Over Christmas I backed up my entire system to an external HD and then performed an erase and install of Tiger just to clean everything out. The transition has gone well until tonight . . . I went to open an older iDVD project I was working on and a box immediately came up that said "The following files could not be found . . ." It listed about 500 files including pics, audio, etc.
    It seems that when I reinstalled Tiger, my home directory and shortname is a little different this time than with the old OS. In essence, the only thing that needs to be changes is the username on all the files, but iDVD seems to be having trouble understanding this and finding the files. Does this make sense to anyone?
    For example, the path listed is Users/joebiedlingmaier/movies . . . etc.
    The new path on my current system is Users/jbiedlin/movies . . . etc.
    iDVD seems to have trouble recognizing that the file is in the name place, just with a different home directory name. Any ideas of how to get everything back in order? Even when it performs the search when I point iDVD to certain folders, it doesn't seem to recognize what it's looking for.
    -JB

    It won't help you now, but in the future do a File>Archive Project in iDVD to save all your assets in an archive. Since it includes copies of the actual files, instead of just links to those files, an archive file can be quite large.

  • Version wise for the following files

    Hi All
    I need to know what versions for the following files,Can any one suggest me how to get the versions,and where do they belong to, whats there functionality.
    - POXWPA1B.pls
    - POXWPA4B.pls
    - POXWPA5B.pls
    - POXWPA6B.pls
    - POXWPA7B.pls
    - poxwfpoa.wft
    - poxwfrqa.wft
    Thanks,
    Praneeth
    Message was edited by:
    user590499

    Login as applmgr user and issue one of the following:
    $ cd $PO_TOP/patch/115/sql/
    $ strings -a <file name> | grep Header
    Or ..
    $ cd $PO_TOP/patch/115/sql/
    $ adident Header <file name>
    For more details, refer to Note: 125922.1 - How To Find Oracle Application File Versions
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=125922.1

Maybe you are looking for