Does Lightroom save settings into a xmp file?

With Camera Raw, a xmp file is saved in the same folder with the same name of the image once we making any changes or settings to a image.
Does Lightroom save settings into a xmp file? If it does, why can't I find the xmp file in the image folder?

raw (cr2, etc.) - keywords, captions, and develop settings are written to a sidecar
dng, jpeg, tiff - keywords, captions, and develop settings are written to the file
All of these things are written to the LR catalog automatically. "Save metadata to file" saves them to the files themselves, in the above fashion. Develop settings are only written to files if you have that option checked. Automatic writing to files can also be activated.

Similar Messages

  • Truly dumb question. How do I get PS to actually complete a command, eg straighten an horizon, and finalise the change. Even doing a "save as" with a new file name and reloading brings the image back, straightened, but with the skewed back ground frame st

    Truly dumb question. How do I get PS to actually complete a command, eg straighten an horizon, and finalise the change. Even doing a "save as" with a new file name and reloading brings the image back, straightened, but with the skewed back ground frame still there. Is there a "apply change" or similiar command that I simply cannot see.

    brings the image back, straightened, but with the skewed back ground frame
    PSE did what you told it to do. Choose the Straighten and crop edges or fill edges options when you use the straighten tool if you want it to do more than just straighten the contents of the image. Many people prefer the plain straighten because they'd rather crop themselves than let PSE do it.

  • Mac does not save settings.

    Hi, I'm new here (I haven't got my mac for a long time either), so please bear with me!
    I have a problem with many programs, namely my mac does not save the settings.
    Word: The change of default Czech language into Polish is not permanent. Czech comes back after the restart.
    Ableton: The authorisation of the program is withdrawn when I switch the laptop. I have to authorise it again after every restart.
    Cubase: It changes audio input and audio output back to internal speakers and microphone after the restart.
    Additionally, for example, I have changed the preferences of video files. I have changed the default player from QuickTime to VLC. Restart undoes the changes.
    Has anyone have a similar problem?
    Thank you in advance for your reply.

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line on this page to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password. Nothing will be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • Read multiple files and save all into one output file(AGAIN)

    Hi, guys
    I need your help for reading data from multiple files and save the results into one output file. When files are selected from file chooser, my program read the data line by line , do some calculations and save the result into the output. I made an array to store input files and it seems to be working fine, but when it comes to SaveFile() function, issues NullPointException message.
    public class FileReduction1 extends JFrame implements ActionListener
       // GUI definition and layout
        /* ACTION PERFORMED */
        public void actionPerformed(ActionEvent event) {
            if (event.getActionCommand().equals("Open File")) getFileName();
        /* OPEN THE FILE */
        private void getFileName() {
            // Display file dialog so user can select file to open
         JFileChooser fileChooser = new JFileChooser();
         fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
            fileChooser.setMultiSelectionEnabled(true);
         int result = fileChooser.showOpenDialog(this);
         // If cancel button selected return
         if (result == JFileChooser.CANCEL_OPTION) return;
            if (result == JFileChooser.APPROVE_OPTION)
             files = fileChooser.getSelectedFiles();
                textArea.setText("");
                if(files.length>0)
                    filelist="";
                    System.out.println("files length"+files.length);
                    for(int i=0;i<files.length;i++)
                         System.out.println(files.getName());
    filelist+=files[i].getName()+" ,";
    if (checkFileName(files[i]) )
    openButton.setEnabled(true);
    readButton.setEnabled(true);
    textArea.append("file "+files[i].getName()+"is a proper file"+"\n");
    readFile(files[i]);
    textfield.setText(filelist);
    else{JOptionPane.showMessageDialog(this,"Please select file(s)",
                    "Error 5: ",JOptionPane.ERROR_MESSAGE); }
         // Obtain selected file
    /* READ FILE */
    private void readFile(File fileName_in) {
    // Disable read button
    readButton.setEnabled(false);
    // Dimension data structure
         getNumberOfLines(fileName_in);
         data = new String[numLines][4];
         // Read file
         readTheFile(fileName_in);
         // Rnable open button
         openButton.setEnabled(true);
    /* GET NUMBER OF LINES */
    /* Get number of lines in file and prepare data structure. */
    private void getNumberOfLines(File fileName_in) {
    int counter = 0;
         // Open the file
         openFile(fileName_in);
         // Loop through file incrementing counter
         try {
         String line = fileInput.readLine();
         while (line != null) {
         counter++;
              System.out.println("(" + counter + ") " + line);
    line = fileInput.readLine();
         numLines = counter;
    closeFile(fileName_in);
         catch(IOException ioException) {
         JOptionPane.showMessageDialog(this,"Error reading File",
                   "Error 5: ",JOptionPane.ERROR_MESSAGE);
         closeFile(fileName_in);
         System.exit(1);
    /* READ FILE */
    private void readTheFile(File fileName_in)
    // Open the file
    //int row=0;
    int col=0;
    openFile(fileName_in);
    System.out.println("Read the file");
    // Loop through file incrementing counter
    try
    String line = fileInput.readLine();
    while (line != null)
    boolean containsDoubles = false;
    double temp;
    String[] lineParts = line.split("\t");
    try
    for (col=0;col<lineParts.length;col++)
    temp=Double.parseDouble(lineParts[col]);
    data[row][col] = lineParts[col];
    containsDoubles = true;
    System.out.print("data["+row+"]["+col+"]="+lineParts[col]+" ");
    } catch (Exception e) {row=0; col=0; temp=0.0;}
    if (containsDoubles){ row++;}
    System.out.println();
    line = fileInput.readLine();
    catch(IOException ioException)
    JOptionPane.showMessageDialog(this,"Error reading File", "Error 5: ",JOptionPane.ERROR_MESSAGE);
    closeFile(fileName_in);
    System.exit(1);
    //System.out.println("length"+data.length);
    closeFile(fileName_in);
    process(fileName_in);
    /* CHECK FILE NAME */
    /* Return flase if selected file is a directory, access is denied or is
    not a file name. */
    private boolean checkFileName(File fileName_in) {
         if (fileName_in.exists()) {
         if (fileName_in.canRead()) {
              if (fileName_in.isFile()) return(true);
              else JOptionPane.showMessageDialog(null,
                        "ERROR 3: File is a directory");
         else JOptionPane.showMessageDialog(null,
                        "ERROR 2: Access denied");
         else JOptionPane.showMessageDialog(null,
                        "ERROR 1: No such file!");
         // Return
         return(false);
    /* OPEN FILE */
    private void openFile(File fileName_in) {
         try {
         // Open file
         FileReader file = new FileReader(fileName_in);
         fileInput = new BufferedReader(file);
         catch(IOException ioException) {
         JOptionPane.showMessageDialog(this,"Error Opening File",
                   "Error 4: ",JOptionPane.ERROR_MESSAGE);
         textArea.append("OPEN FILE\n---------\n");
         textArea.append(fileName_in.getPath());
         textArea.append("\n");
         //System.out.println("File opened successfully");
    /* CLOSE FILE */
    private void closeFile(File fileName_in) {
    if (fileInput != null) {
         try {
              fileInput.close();
         catch (IOException ioException) {
         JOptionPane.showMessageDialog(this,"Error Opening File",
                   "Error 4: ",JOptionPane.ERROR_MESSAGE);
    System.out.println("File closed");
    private void process(File fileName_in) {
    //getNumberOfLines();
         //data = new String[numLines][3];
         // Read file
    double temp,temp1;
         //readTheFile();
    //System.out.println("row:"+row);
    //int number=data.length;
    //System.out.println(number);
    for (int i=0; i<row; i++)
    temp=Double.parseDouble(data[i][1]);
    sumx+=temp;
    temp1=Double.parseDouble(data[i][3]);
    sumy+=temp1;
    multixy+=(temp*temp1);
    square_x_sum+=(temp*temp);
    square_y_sum+=(temp1*temp1);
    //System.out.println("Sum(x)="+sumx);
    double tempup=(row*multixy)-(sumx*sumy);
    double tempdown=(row*square_x_sum)-(sumx*sumx);
    slope=tempup/tempdown;
    double tempbup=sumy-(slope*sumx);
    intb=tempbup/row;
    double tempside=(row*square_y_sum)-(sumy*sumy);
    double cordown=Math.sqrt(tempdown*tempside);
    corr=tempup/cordown;
    r_sqrt=corr*corr;
         textArea.append("Data for file"+ fileName_in.getName()+" have been processed successfully.");
         textArea.append("\n");
         textArea.append("Please enter output file name including extension.");
    System.out.println("number"+row);
    System.out.println("slope(m)="+slope);
    System.out.println("intecept b="+intb);
    System.out.println("correlation="+corr);
    System.out.println("correlation="+r_sqrt);
    saveFile();
    private void saveFile()
    textArea.append("SAVE FILE\n---------\n");
    if (openFile1())
         try {
              outputToFile();
    catch (IOException ioException) {
              JOptionPane.showMessageDialog(this,"Error Writing to File",
                   "Error",JOptionPane.ERROR_MESSAGE);
    private boolean openFile1 ()
         // search for the file path
    StringBuffer stringpath;
    title=textfield1.getText().trim();
    int temp=fileName_in.getName().length();
    int temp_path=fileName_in.getPath().length();
    int startd=(temp_path-temp);
    stringpath=new StringBuffer(fileName_in.getPath());
    stringpath.delete(startd, temp_path+1);
    //System.out.println("file-path="+temp_path);
    //System.out.println("length-file="+temp);
    path=stringpath.toString();
    fileName_out = new File(path, title);
    //System.out.println(file_out.getName());
    if (fileName_out==null || fileName_out.getName().equals(""))
         JOptionPane.showMessageDialog(this,"Invalid File name",
                   "Invalid File name",JOptionPane.ERROR_MESSAGE);
         return(false);
         else
    try
    boolean created = fileName_out.createNewFile();
    if(created)
    fileOutput = new PrintWriter(new FileWriter(fileName_out));
    fileOutput.println("File Name"+"\t"+"Slope(m)"+"\t"+"y-intercept(b)"+"\t"+"Coefficient(r)"+"\t"+"Correlation(R-Squared)");
    return(true);
    else
    fileOutput = new PrintWriter(new FileWriter(fileName_out,true));
    return(true);
    catch (IOException exc)
    JOptionPane.showMessageDialog(this,"Please enter the file name","Error",JOptionPane.ERROR_MESSAGE);
    return(false);
    private void outputToFile() throws IOException
    // Initial output
         textArea.append("File name = " + fileName_out + "\n");
         // Test if data exists
         if (data != null)
         fileOutput.println(fileName_in.getName() +"\t"+ slope+"\t"+intb+"\t"+corr+"\t"+r_sqrt);
    textArea.append("File output complete\n\n");
         else
    textArea.append("No data\n\n");
         // End by closing file
    initialcomp();
         fileOutput.close();
    private void initialcomp()
    slope=0.0;
    intb=0.0;
    corr=0.0;
    r_sqrt=0.0;
    sumx=0.0; sumy=0.0; multixy=0.0; square_x_sum=0.0; square_y_sum=0.0;
    for(int i=0;i<data.length;i++)
    for(int j=0;j<data[i].length;j++)
    data[i][j]=null;
    /* MAIN METHOD */
    public static void main(String[] args) throws IOException
         // Create instance of class FileChooser
         FileReduction1 newFile = new FileReduction1("File Reduction Program");
         // Make window vissible
         newFile.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         newFile.setSize(500,400);
    newFile.setVisible(true);
    Sorry about the long lines.
    As you can see, all input files saved in array called files, however when OpenFile1() function is called, it take input (fileName_in) as a single file not an array. I'm assuming this causes the exception.
    When there's muptiple inputs, program should take each file from getFileName() to outputToFile() sequentially.
    Does anybody have an idea to solve this?
    Thanks a lot!!

    you naming convention is confussing. you should follows Java naming convention..you have a getXXX but decalred the return type as "void"...get usully means to return something...
    your code is doing too much..and hard to follows..
    1. get the selected files
    for each selected file
    process the file and return the result
    write out the result.
    /** close the precious resource */
    public void closeResource(Reader in){
        if (in != null){
            try{ in.close(); }
            catch (Exception e){}
    /** get the total number of line in a file */
    public int getLineCount(File file) throws IOException{
        BufferedReader in = null;
        int lineCount = 0;
        try{
            in = new BufferedReader(new FileReader(file));
            while ((in.readLine() != null)
                lineCount++;
            return lineCount;
        finally{ closeResource (in);  }
    /** read the file */
    public void processFile(File inFile, File outFile) throws IOException{
        BufferedReader in = null;
        StringBuffer result = new StringBuffer();
        try{
            in = new BufferedReader(new FileReader(inFile));
            String line = null;
            while ((in.readLine() != null){
                .. do something with the line
                result.append(....);
            writeToFile(outFile, result.toString());
        finally{ closeResource (in);  }
    public void writeToFile(File outFile, String result) throws IOException{
        PrintWriter out = null;
        try{
            out = new PrintWriter(new FileWriter(outFile, true));  // true for appending to the end of the file
            out.println(result);
        finally{  if (out != null){ try{ out.close(); } catch (Exception e){} }  }
    }

  • Is there a way (or a plugin) to export develop settings into a readable file format?

    For online educational/sharing purposes, I'd like to be able to export my LR develop settings into a readable text format so that if I share a before/after picture I can also include the LR develop settings that went into creating the after picture.  I've looked for 2 days and I can't find a plug-in that will do this. 

    The List View plugin can export develop settings as a CSV file for Excel or HTML for a browser.
    If you're technically minded and comfortable with scripting, it's straightforward to write a script that reads the settings from the XMP metadata stored in the .xmp sidecars (for raws) or in the XMP metadata section of JPEGs and TIFFs.   Open a .xmp sidecar in your favorite text editor to get a flavor of how the develop settings are stored there.

  • Where does Lightroom save color correction info?

    I'm having a problem with Lightroom in the way it saves the color correction information attached to a raw file.
    I'm using raw files off of an external hard drive, color correcting them and then saving that whole folder to my internal hard drive.
    The problem is that after I disconnect the external hard drive and import the folder from my internal hard drive, none of the file conversions I just made are showing. This is extreamly frustrating and time consuming as I'm adjusting about 1000 files at a time.
    Why is this?
    The external drive is my client's so I have to find a way to get the color corrected raw files on both drives.
    Thanks to anyone that can help

    Here is my work flow:
    Working on 1 computer in 1 version of Lightroom that is set up to save the Catalog on my internal hard drive.
    I attach client's external drive and use the Lightroom Import dialog to add files to catalog without moving (they stay on the external and I edit them there).
    Working in Lightroom I make the adjustments to the CR2 files that have stayed on the external drive.
    "At the end select all the images and save metadata to file."  I believe I have missed this step. I though Lightroom did this automaticly.
    Is this my problem?
    After making the adjustments I selected all of the files from the external and copied them to my internal drive, however I did this outside of Lightroom.
    This may have been a problem also.
    If my catalog has been stored on my internal drive the whole time why did the developing information not get saved to it?
    "You can also do this by exporting a catalog file from the  source machine to the external disk and then importing
    this  catalog into the target machine."
    Using this technique in the future could I do all of this?
    1. edit the files directly on the external drive
    2. save the metadata to the files
    3. export the files (though lightroom) onto my internal hard drive
    4. have the raw files on my internal hard drive with the saved development made to them and be able to open them in lightroom and see them adjusted
    5. have the raw files on my client's external hard drive with the saved development  made to them and be able to open them in lightroom on another computer and see them adjusted
    Thanks again for all of your help!
    C

  • How to save data into an excel file ?

    I am working on using computer to corol HP8510 Network Analyzer System. Firstlly, I save my data into a notepad.Now I want to save them directly into an excel file. Is there anybody can give me any clue?
    Thanks
    Attachments:
    S.vi ‏165 KB

    The attached zip file contains several VI's to read and write directly to Excel using ActiveX. There are several example VI showing how to use everything. This set is saved in LabVIEW 6.0.2.
    I suggest you unzip these to your user.lib directory so you'll be able to easily access them from the functions palette.
    I have not actually used these, but others that have say they have worked well for them.
    Good Luck
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
    Attachments:
    excel_lv6i.zip ‏898 KB

  • How do you save data into an excel file while myRIO is acquiring data? I tried saving it using "Write to file" but it doesn't work for some reason.

    I am acquiring cosine wave and a pulse wave as input and I want to store their peak to peak values into an excel file. "Write to File" is not working for it. Is there any other vi which can be used for data logging?
    Thank you for your help.

    Hi Ssheoran,
    Can you provide more detail when you say that the Write to File VI doesn't work? Is there an error given? Or can you just not find the file on your computer? Keep in mind using this file in a Real-Time VI on the myRIO will save files on the myRIO. You will then have to transfer to your PC. Please view the following video as a guide for saving files and transferring them to your computer: (http://www.youtube.com/watch?v=BuREWnD6Eno). Hope this helps.
    Best Regards,
    Roel F.
    Applications Engineer
    National Instruments

  • How does LR3 handle virtual copies and xmp files?

    Hi,
    I see only 1 xmp file and yet I have several virtual copies of that same photograph... where are the corresponding xmp files? I am using exiftool to place some info in the CR2 files and then need to update the corresponding xmp file...
    Thanks,
    Juan

    Hi Juan,
    Virtual copies are only stored in the LR catalog, never in the XMP sidecars. If you update the XMP using exiftool and update the metadata in LR, both the original and the virtual copy will be updated with the XMP data.
    Marc

  • Edits to a JPG Smart Object  in a layered TIFF file:  DOES NOT Save to the originally placed file?

    When placing a JPG as a Smart Object (and even multiples) into a layered TIFF file:  If I open each layered Smart Object JPG, make changes as a JPG and SAVE the file, I expect the ORIGINAL SOURCE JPG file that was placed to also be saved- I thought that is the file I was editing!
    This SUCKS!  To capture my edits to the original individual files:  I now have to open each layed TIF file, Edit each smart object JPG and SAVE AS to overwrite the original and capture my changes?  Is this the way its always been- I don't think it has.  How can I edit a Smart Object file in a layered document and ALSO update the SOURCE file?

    You should edit the original jpg, and then replace the smart object. There is a utility that makes this easier, if you do many of these. Looks liek this
    link_update.zip

  • Does Elements save settings in a way that is visible to us?

    When I change a setting in PSE, such as adjusting Hue to, for example, +20, or when I add, for example, a blue photo filter, it appears that PS E does not display the change after applying it.
    It appears this way to me because, when I go back into Hue after applying a +20, PS E will have Hue set to 0 again. Likewise, I don't see any indication that I added a filter, other than looking at the picture itself.
    Does PS E store these changes any place that is visible to the user? Thanks.

    Lance....
    The settings are not kept if you make the adjustment directly on the layer that you are working with but the changes do take affect as you are making the change.
    If you are not seeing the changes it could be that you are making the change on a layer that has nothing on it.
    If you want to keep adjustments for later tweaking or just to know, then it's best to use an adjustment layer.
    If you need more help on layers, please come back.
    Colin

  • How does ACR save edited JPEG and TIFF files?

    When a JPEG or TIFF file is edited in ACR, are the edits destructive when you click the "Done" button, permanently changing the file? Or is the edit info saved in sidecar files like with edited RAW files, not affecting the original file?
    If I reopen a previously edited JPEG file in ACR, will the adjustment settings be the same as where I left off, allowing me to change those edits, like a crop or HSL adjustment? Thanks.

    First: There is a Camera RAW Forum.
    http://forums.adobe.com/community/cameraraw
    Second: It should be fairly simple to test your hypotheses.
    And on my station at least it appears the data is stored in the file and not as a sidecar-file.

  • Tabs won't appear, extremely slow, does not save settings.

    For the past few months I've been experiencing a host of difficulties with Firefox. When I open a new window, the appearance is totally different from what the original window was, with the "Open a new tab" button on the left instead of the right, and the current tab that opens is not visible in the bar. When I try to change this in the settings, it just doesn't seem to take. This same problem is true for any window, secondary or otherwise. If I close everything, open a new session, change the settings to how I like them (which I have to do every time) and then close that window, nothing stays the way I set it.
    Also, the browser runs extremely slow. And when I say extreme, I mean it can take 20 minutes to open a new session. And once I start using it, it likes to periodically speed up to a normal pace for a few minutes, hours, days - it's not predictable - and then come to a crashing halt again.
    The final problem is less irritating, but equally perplexing. I have a few folders in my bookmarks toolbar that contain anywhere from 10-50 websites each, and they like to spontaneously auto-scroll to the top of the list, despite my attempts to scroll down. This problem just goes on and on until it suddenly stops for unknown reasons.
    I would really, REALLY appreciate some help clearing up these problems. Thanks!

    I see such issues my self.<br />
    It usually helps to close and restore that tab (History > Recently Closed Tabs; Cmd+Shift+T) to make the others appear.

  • Save Blob into structure of file

    Hi,
    I need to overturn the content of a field blob to a structure of file in memory, that is to say, I do not want to keep nothing in the disc.
    Since I can do it?

    Hi,
    my English, where is it? ;-)
    I have a class with an attribute file, then I want to recover within the attribute file the content of the Blob field.
    I am familiarized with Blob, but I do not give with the way to do.
    I try this but the FileNotFoudException takes place
              BLOB blob = ((OracleResultSet)resultSet).getBLOB(i++);
              File manual = new File( "" ); // simply I want to have the file in memory, nothing but
              if (blob!=null) {
                InputStream blobStream = blob.getBinaryStream();
                FileOutputStream fileOutStream = new FileOutputStream( manual );
                byte[] buffer = new byte[10];
                int nbytes = 0;
                while ( ( nbytes = blobStream.read( buffer ) ) != -1 )
                  fileOutStream.write( buffer, 0, nbytes );
                fileOutStream.flush();
                fileOutStream.close();
                blobStream.close();
              }

  • Nokia Maps 3 does not save settings

    Just popped out the official version and the problem, back from bet labs days, is still there:
    - you change map orientation
    - you change 2D/3D mode
    - you change other settings.
    - you exit Maps
    Once you launch again the program, all settings are back to defaults.
    Do you believe a dev team did not test this? How possible?

    http://europe.nokia.com/support/product-support/maps-support/compatibility-and-download?intc=ncomsup...
    If you want to thank someone, just click on the blue star at the bottom of their post

Maybe you are looking for

  • How many vlan can be created on single port of HWIC-2FE

    Hi Guys, I have a router 1921 with a HWIC-2FE. How many VLAN can I create in each port of HWIC-2FE.   Thank you Salvo

  • Ipod showing no songs on pod...

    I have a new 60Gig Video/Picture Ipod. It is 2 months old. Just today, I was updating songs and videos from iTunes onto my Ipod. I disconnected it perfectly fine and right. When i went to look for songs and videos on my Ipod, they were not found. All

  • Oracle using 99% of processor, ORA-00020

    We have an Oracle database serving data to a php application at a customer location running under Apache. Apache and php are on one MSW2k box, Oracle on a second. All is behind a firewall, also MSW2k. Every now and then (one to three months), the sit

  • How does the DSC toolkit modify LV menu's?

    I have noticed that many of the NI toolkits modify the LV menu's. Could anyone explain how this is accomplished and if it is possible to gain access to this mechanism.

  • I can not import my movie to imovie

    Hello, unfortunatly and after several trial of support video, I am still unable to import my movie from my camera into iMovie, which is very frustrating. Any hints? Thank you Bianca