Windows 8 I have. The same error message not identifying I pod nano properly....I stuck, tried everything.

Windows 8 I have. The same error message not identifying I pod nano properly....I stuck, tried everything.

Hello btallai,
If you are having issues with a "not identified properly" error message when connecting your iPod nano to your Windows machine, you may find the troubleshooting steps outlined in the following article helpful:
iPod nano: Error message saying that iPod could not be identified properly - Apple Support
Sincerely,
- Brenden

Similar Messages

  • Still have the same error messages

    Hi Rajiv,
    Thanks a lot for your help. I tried to load the java package
    before I exported my images. The loading java worked sucessfully,
    however the same error messages came out when I exported images.
    Actually, I stored five JPEG images as ORDSYS.ORDImage in a table
    for a test. Below is my image-loading codes and the images are
    truely in the database since I proved it by running a
    check-properties script.
    -- This program will create a table called imgtable and import
    -- five .jpg files into it. Also the status of the images will
    -- be checked.
    connect imgdemo/imgdemo;
    set serveroutput on
    set echo on
    -- decomment for demo images
    drop table imgtable;
    create table imgtable (id number,
    Image ORDSYS.ORDImage);
    -- Insert a row with empty BLOB.
    insert into imgtable values(1,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(2,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(3,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(4,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(5,ORDSYS.ORDImage.init());
    --importimg.sql
    set serveroutput on
    set echo on
    -- Import the two files into the database.
    DECLARE
    obj ORDSYS.ORDIMAGE;
    ctx RAW(4000) := NULL;
    BEGIN
    -- This imports the image file img71.gif from the IMGDIR
    directory
    -- on a local file system (srcType=FILE) and sets the properties.
    select Image into obj from imgtable where id = 1 for update;
    obj.setSource('FILE','IMGDIR','1.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 1;
    commit;
    -- This imports the image file img50.gif from the IMGDIR
    directory
    -- on a local file system (srcType=FILE) and sets the properties.
    select Image into obj from imgtable where id = 2 for update;
    obj.setSource('FILE','IMGDIR','2.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 2;
    commit;
    select Image into obj from imgtable where id = 3 for update;
    obj.setSource('FILE','IMGDIR','3.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 3;
    commit;
    select Image into obj from imgtable where id = 4 for update;
    obj.setSource('FILE','IMGDIR','4.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 4;
    commit;
    select Image into obj from imgtable where id = 5 for update;
    obj.setSource('FILE','IMGDIR','5.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 5;
    commit;
    END;
    -- chkprop.sql
    set serveroutput on;
    --connect imgdemo/imgdemo
    --Query imgtable for ORDSYS.ORDImage.
    DECLARE
    image ORDSYS.ORDImage;
    idnum integer;
    properties_match BOOLEAN;
    BEGIN
    FOR I IN 1..5 LOOP
    SELECT id into idnum from imgtable where id=I;
    dbms_output.put_line('image id: '|| idnum);
    SELECT Image into image from imgtable where id=I;
    properties_match := image.checkProperties;
    IF properties_match THEN DBMS_OUTPUT.PUT_LINE('Check Properties
    Succeeded');
    END IF;
    dbms_output.put_line('image height: '|| image.getHeight);
    dbms_output.put_line('image width: '|| image.getWidth);
    dbms_output.put_line('image MIME type: '||
    image.getMimeType);
    dbms_output.put_line('image file format: '||
    image.getFileFormat);
    dbms_output.put_line('BLOB Length: '||
    TO_CHAR(image.getContentLength));
    dbms_output.put_line('-------------------------------------------');
    END loop;
    END;
    The program that I used to export images is as follows:
    -- retrive an image in the database and display it
    connect internal;
    CALL DBMS_JAVA.GRANT_PERMISSION (
    'IMGDEMO',
    'java.io.FilePermission',
    '/home/oracle/img/test.dat',
    'write');
    CONNECT imgdemo/imgdemo;
    SET SERVEROUTPUT ON
    SET ECHO ON
    create or replace directory imgdir
    as '/home/oracle/img';
    grant read on directory imgdir to public with grant option;
    (line 1) DECLARE
    src ORDSYS.ORDImage;
    ctx RAW(4000) := NULL;     
    BEGIN
    -- Select the desired photograph from the stockphotos table.
    SELECT Image INTO src FROM imgtable WHERE id = 1;
    ORDSYS.ORDIMAGE.export(src, ctx,'FILE','IMGDIR','test.dat');
    EXCEPTION
    WHEN OTHERS THEN
    RAISE;
    -- EXCEPTION
    --WHEN ORDSYS.ORDSourceExceptions.METHOD_NOT_SUPPORTED THEN
    -- DBMS_OUTPUT.put_line('Source METHOD_NOT_SUPPORTED caught');
    --WHEN ORDSYS.ORDSourceExceptions.SOURCE_PLUGIN_EXCEPTION THEN
    -- DBMS_OUTPUT.put_line('SOURCE PLUGIN EXCEPTION caught');
    --WHEN OTHERS THEN
    -- DBMS_OUTPUT.put_line('OTHER EXCEPTION caught');
    END;
    host ls -l ~/img/test.dat;
    The error message is as follows:
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORDSYS.ORDSOURCE", line 354
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at line 13
    I really tried everything to fix it and still doesn't work. I
    guess maybe the export method is not implemented for intermedia.
    Best regards,
    Kai

    Kai,
    You're almost there! I apologize for not providing a complete
    response previously. I thought the webiv note had sufficient
    details on java file permissions.
    For export to work, ORDSYS needs write permissions on the file
    as well.
    call DBMS_JAVA.GRANT_PERMISSION( 'ORDSYS',
                                     'java.io.FilePermission',
                                     '/home/oracle/img/test.dat',
                                     'write');The interMedia documentation doesn't correctly describe all the
    requirements for granting file write access using
    DBMS_JAVA.GRANT_PERMISSION. You must
    either grant write access to public, or to both a specific user
    and the ORDSYS user name. For example, you might grant write
    access to all files in all directories to ORDSYS and write access
    to all files in a specific directory to SCOTT.
    call DBMS_JAVA.GRANT_PERMISSION( 'ORDSYS',
                                     'java.io.FilePermission',
                                     '<<ALL FILES>>',
                                     'read,write');
    call DBMS_JAVA.GRANT_PERMISSION( 'SCOTT',
                                     'java.io.FilePermission',
                                     'D:\ordjava\test\data\*',
                                     'read,write');See the security and performance section in Oracle Java
    Developer's Guide and the java.io.FilePermission class in the
    Java API for more.
    Hope that helps,
    Rajiv

  • I am having a h**k of a time getting iTunes 10.5 for Windows.  I have the X86 error message , I am having a h**k of a time getting iTunes 10.5 for Windows.  I have the X86 error message

    I have an new iPhone4s and an iPad waiting to join the iCloud but I can't get iTunes downloaded to my PC.  I tried to remove all the traces of the iTunes and now I have no version of iTunes on my system.
    First error message refers to a window X86 not installing which then leads to Error 2 "Apple Application Support" not found.  I've been at this for 3+ days and no solution.
    Any sugggestions???

    Klaus,
    Thanks although you didn't know the answer somebody out there did and I cannot believe how simple the issue was - assign a name to the computer through System Preferences>Sharing
    excellent result, it's really nice to stop banging my head against that brick wall
    Stuart Mcf

  • TS4424 i have reinstalled both updates as advised above, but mail v4.6 still does not work and I still get the same error message on mail 4.5

    I have reinstalled both updates as advised above but mail v4.6 still does not work and mail v4.5 continues to have the same error message?

    Maybe some help here.
    http://support.apple.com/kb/TS4424

  • After installing the last version of iTunes, it failed to lunch and gave me 2 Error messages with Error 7 title , rebeat installation several times with the same Error message, what shall I do?

    Once I finish upgrading iTunes on my Windows PC, I had an Error as t shown on the image below which doesn't allow the iTunes App to lunch.
    Please advise what shall I do ?

    Uninstall your existing copy of iTunes. Delete any copies of the iTunesSetup.exe (or iTunes64Setup.exe) installer files from your downloads areas for your web browsers and download a fresh copy of the iTunes installer from the Apple website:
    http://www.apple.com/itunes/download/
    (The current build of the 11.1.4.62 installer was changed a few days ago, which fixed the bulk of the reports of MSVCR80.dll/R6034/APSDaemon.exe/Error-7/AMDS-could-not-start trouble ... but the build number on the installer was not changed. So we're trying to make sure you do the reinstall using a "new good" 11.1.4.62 installer instead of an "old bad".)
    Does the install with the new copy of the installer go through properly? If so, does that clear up the error message?
    If you still have the same error messages cropping up, then try the procedures from the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I can't Start, Uninstall or Install new iTunes. I'm getting the same error message: Window Installer Service could not be accessed.  No other programs have similar problem. Any suggestion what can be done?

    I can't Start, Uninstall of Install new iTunes. I'm getting the same error message: "Window Installer Service could not be accessed". No other programs having similar problem. Any suggestions how to fix it?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) (not for XP) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • HT1926 reinstalled itunes after unistalling it due to error message during update. after it was completly unistalled still has the same error message: service "apple mobile device" (apple mobile device) failed to start, verify you have sufficient priviled

    I was prompted to update itunes this evening. I did and in the process, it came up with the following error message: Service "apple mobile device" (apple mobile device) failed to start. Verify you have sufficient priviledges to start system services. I unistalled itunes completly and reinstalled but am still getting the same error message. If I click "ignore" the program will finish downloading but will not launch due to "not being installed correctly". Please help, I use this program alot with my first grade classroom and they're expecting their listening center in the morning.

    Hey I finally got an older vesion of itunes to work!!! 10.7  x64 for windows 7
    After uninstalling all apple products even  quicktime
    I had to delete everything from (program files, and program  files x64, program data,)
    And all downloads from apple, and I went in to search deleted  other stuff from apple, and itunes
    But definently not my itunes library and Playlist
    Down loaded 10.7 x64 for windows 7, but checked (do not start  when done)
    Then I emptied my recycling bin and restarted my  PC
    I ran geek tech tool box same as reg cure pro, also PC Tools  registry cleaner, and CC Cleaner
    Then I emptied my recycling bin and restarted my  PC
    And wallah... It finally works, and I Love the older version  anyways.
    Easier to download and transfer  music!!!!!

  • HT1725 In a download of an entire album, one song download was interrupted.  I have followed the instructions for resuming the download, but each time I attempt to resume the download the same error message appears saying the download was interrupted. Ans

    While downloading an album in from the Store, one song was interrupted.  I have followed the instructions from apple about resuming the download, but every time I do so the same error message appears saying the download was interrupted.  I am having no connection problems, have rebooted my computer, downloaded the lates version of iTunes, etc., yet nothing changes.  Has anyone else experienced this, and are there any workarounds.  Sadly the problem hit on one of the best songs of the album.

    I had the same problem so (assuming under the Purchased items in the Store you have a song stuck at 'Downloading'):
    I went to Music, then Artists.
    From there I chose the album.
    The song that failed to download had the cloud symbol next to it.
    I clicked the cloud symbol and the song completed the download for me.
    (Please note this was in iTunes for Windows - I expect it to be similar in iTunes for Apple)
    Message was edited by: UbergeekRFC - parenthetical note added
    Message was edited by: UbergeekRFC - added note about song stuck as downloading

  • I cannot run itunes, I keep getting this error message" Quick Time failed to initialized (error02096) Quick time is required to run please unistall itunes then install itunes again, I have done this three time and I keep getting the same error message.

    On my PC, I cannot run itunes, I keep getting this error message" Quick Time failed to initialized (error02096) Quick time is required to run please unistall itunes then install itunes again, I have done this three times and I keep getting the same error message. I have had itunes for years, but up until 2 months ago the quick time will not initialize to run it.

    Try using the Windows Installer Cleanup Utility and delete the iTunes installer. Then try installing iTunes again
    http://majorgeeks.com/Windows_Installer_CleanUp_Utility_d4459.html

  • TS1717 I can't open Itunes, I have an error that says says MSVCR80.dll is not found. I have tried twice to uninstall and reinstall but keep getting the same error message. Can anyone help?

    I can't open ITunes, I have an error message that says MSVCR80.dll is not found. Is anyone able to help solve this issue for me. I have tried to unistall and reinstall ITunes twice but continue to get the same error message.

    A msi file is short for microsoft installer.  It normally is for installation, removal, and maintenance for a program. So iTunes.msi would be used for the updating of the program.  For some reason it isnt finding this so we can't update, install, or remove it.
    From what I have seen windows installer cleanup utility solved related problems before. 
    I found this forum about removing and installing a new iTunes.  It was about someone who was trying to isntall iTunes, and was looking for msi file and asked for help.   Using this should allow you to be able to install iTunes.  It won't give you the msi file but will allow you to isntall iTunes over again.
    This was what was said.
    Another option in case you can't get an msi. (Or even if you can ... the msi's mentioned in the messages may be damaged rather than missing.)
    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Restart the PC, and try another iTunes install. Does it go through properly this time?

  • I am trying to load iTunes and keep getting a error 126 and reinstall program.  I have uninstalled and reinstalled twice and keep getting the same error message.  How can this be resolved.

    I am trying to load iTunes and keep getting a error 126 and reinstall program.  I have uninstalled and reinstalled twice and keep getting the same error message.  How can this be resolved?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • HT2292 the latest itunes update on my vista laptop brings up R6034 runtime error - after rebooting - uninstalling - reinstalling i have no itunes access. please correct in your updates. there are others with the same error message

    the latest itunes update on my vista laptop brings up R6034 runtime error - after rebooting - uninstalling - reinstalling i have NO itunes access. please correct in your updates. there are others with the same error message   thank you!!

    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • CS6 on Windows 7 - when I try and send my project to Adobe Link, then to Encore I repeatedly get the error message "Encore has stopped working, windows will close the program".  I get the same error message when I try and open Encore on its own.  Help wou

    Both when I open Encore as a standalone program, and when I try and export my work via Adobe Link to Send to Encore, I get the same error message - "Adobe Encore has stopped working.  Windows will close the program.  Help would really be appreciated.  Thanks.

    Now that is impressive Stan, thankyou!  So simple ...  I don't suppose you know why the "build" button is greyed out do you?  Don't worry if you don't have more "magic dust" at your fingertips, I'll re-check my settings again, and again ...  Thanks for your help.  Doreen.

  • My iTunes parent control keeps giving me the same error message. "Parent control preferences could not be unlocked. You may need to reinstall iTunes. "I have uninstalled ant reinstalled iTunes that 4 time now and I still can't get on. Can anyone help?

    My iTunes parent control keeps giving me the same error message. “Parent control preferences could not be unlocked. You may need to reinstall iTunes. “I have uninstalled ant reinstalled iTunes that 4 time now and I still can’t get on. Can anyone help?

    Experimental advice ... but, plausibly, the preference files containing the parental control setting may be damaged. If so, removing the iTunes preference files may help.
    For the basic technique, see the "Remove iTunes preference files" section from the "User-specific troubleshooting" section of the following document:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    To see those folders, you'll need to first set your PC to view hidden files and folders
    In your Start menu, open Computer.
    In your Organise menu, select Folder Options.
    In the View tab, make sure that "Show hidden files and folders" is selected, and Hide extensions for known file types is unchecked.
    Click OK.
    Prior to doing the preference file rebuilds: Best to make a note of any custom preferences you have set up for your iTunes. (Rebuilding pref files returns preferences to their defaults ... so you'll likely have to set some of those custom preferences up again from scratch.) Also make a note of any third-party plugins/add-ons you have installed. You may have to reinstall those after the rebuilds.
    Things to watch out for during the rebuilds
    Rebuilding the preference files in the \Local\ location causes the iTunes license agreement to run. So you'll need to agree to that again.
    Rebuilding the preference files in the \Roaming\ location causes the iTunes Setup Assistant to run. When prompted to do so, do not add files to your iTunes library. (Otherwise you'll end up with a library full of duplicates.)

  • I have downloaded several times now,but i get the same error message 'corrupt file ' how do i fix this?

    i have downloaded and uninstalled firefox several times now,but i get the same error message 'corrupt file' How do i fix this and i also go to the home page to download as well as others,i have also tried downloading to my laptop the same amount of times and i get the same error message :( very unhappy

    Set Windows Defender off and try download again from here:
    http://www.mozilla.org/en-US/firefox/all.html
    If this does not help see here:
    [https://support.mozilla.com/en-US/kb/Unable%20to%20download%20or%20save%20files Unable to download or save files]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

Maybe you are looking for

  • Getting Error ORA-01012: not logged on while connecting as sys

    We have just upgraded from Oracle 8.1.7 to Oracle 9.2.0.5. Currently we have 2 databases in oracle 9i - db2 and scen. scen has been newly upgraded to Oracle 9i. When I set the ORACLE_SID to scen (as per entry in oratab), and connect to sqlplus using

  • Exchange Server 2013 with RADIUS authentication

    Hello, I am a student and doing an internship. I have to test Microsoft Exchange Server 2013. I am using Windows Server 2012, I already installed Exchange Server 2013 on it and everything works as intended. But I couldn't find out how to configure my

  • I lost my LR cc when computer was crashed,

    got my PS back but now want the LR too. I pay for the CC already, $9.99/mo. How?

  • Query to insert a row in a table with same values except 1 field.

    Suppose I have a table with 100 columns(fields). I want to insert a row with 99 fileds being the same as previous ones except one fileld being different. The table doesn't have any constraints. Kindly suggest a query to solve the above purpose..

  • HTTPService URL from configuration file?

    Hello, I have a need/requirement to use some type of configuration file for my FLEX builds. Right now I manually build my FLEX app. It would be nice to configure the URL for all HTTPService objects in an XML file, but I am unsure where that file woul