My itunes will not! is giving me error7(windows error 126) and is stilling me MSVCR80.dll is missing and i tried downloading itunes like 6 times and is saying the same thing. Please help! i need to sync my kids ipads and ipods thank you!

my itunes will not open! is giving me error7(windows error 126) and is stilling me MSVCR80.dll is missing and i tried downloading itunes like 6 times and is saying the same thing. Please help! i need to sync my kids ipads and ipods
thank you!

Follow the instructions of tt2 given in https://discussions.apple.com/thread/5822086

Similar Messages

  • I cannot load the latest version of Itunes on my Toshiba PC with Windows 7 Home Premium. Tried to re-install. Dead in the water. Windows error 126. Cant start becasue MSVCR80.dll is missing from my computer

    I cannot load the latest version of Itunes on my Toshiba PC with Windows 7 Home Premium. Tried to re-install. Dead in the water. Windows error 126. Cant start becasue MSVCR80.dll is missing from my computer

    You may have to follow the slightly more detailed steps in whichever of these two applies to you.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    Rebooting into safe mode may be needed to delete any folder the instructions say you should remove. You may also find this Microsoft Fixit helps to remove stubborn components. It has taken some people several attempts to completely clean iTunes and supporting software before they have been able to successfully reinstall it.
    tt2
    Message was edited by: turingtest2

  • I let my iphone 4S die completely and after i put it on the charger it cuts on then cuts right back off and keeps doing so. i left it on the charger all night and when i woke up its still doing the same thing. please help

    i let my iphone 4S die completely and after i put it on the charger it cuts on then cuts right back off and keeps doing so. i left it on the charger all night and when i woke up its still doing the same thing. please help

    imanfromsweden wrote:
    Please apple support do you people have a convincing answer for us? Is there a solution? My phone is only 2 years old and was (2 hours ago), in top condition!!
    Please help....
    On belhalf of my fellow volunteers, the answer is, "We'll try our best." 
    My advice is to try not to treat this like it is a paid service provided by compensated professionals.  Ask nicely and one of the nice folks here might take some time out of their weekend to offer advice.

  • After iOS 8 update doesn't sign in my FaceTime and email account keeps saying incorrect password even after putting right password I tried reset option already still says the same incorrect Please Help

    After iOS 8 update doesn't sign in my FaceTime and icloud email account keeps saying incorrect password even after putting right password
    I have already tried reset option already still says the same incorrect Please Help

    Hi Go to settings Email Accounts Delete Email Account then Re add acount back again If you have more than one Email Account do this with each one. Cheers Brian

  • My iPad says "iPad is disabled connect to itunes", but when I go through the restoration process it fails and still says the same thing. Help me please!!!!

    I need some helpful instructions on how to get my iPad back to normal because it says iPad is disabled connect to itunes. I've gone through the restoration process many times and it does not work. The iPad just seems to fail when its almost done restoring. Much help is needed please!

    Hi LittleKritter13,
    Thanks for visiting Apple Support Communities.
    I recommend the steps in this article if your iPad does not complete the restore process:
    Resolve iOS update and restore errors in iTunes
    http://support.apple.com/kb/ts1275
    If the issue persists, the method in this article may also help:
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    Best,
    Jeremy

  • It's already the third time that i post the same question, please help me!

    I am writing a simple guestbook that is able to insert and fetch text and image from database and display them. There is a html that forms the parameters to this servlet, some text information such as "name", "address" and one picture. Insertion and fetching of text and images works sepearately, but when i combine them there is a conflict between "doGet" and "doPost". My text insertion only works with "doGet" (don't know why, but when i type "doPost" it does not work) while image insertion only works with "doPost" since i am using "Multipartrequest" to read the image.
    Since i write "doGet" in my code, the exception is following
    java.io.IOException: Posted content type isn't multipart/form-data
    SQLB.doGet(SQLB.java:42)Following are the codes , please give me a hand, many thanks!!
    the problem line that causes exception is marked with ////////////////////////////////// above in red color
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.awt.image.*;
    import com.oreilly.servlet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.oreilly.servlet.ServletUtils;
    import java.net.*;
    import java.sql.*;
    public class SQLB extends HttpServlet{
        Connection con;
        PreparedStatement pstmt=null;
        public void init(){
         //connection need url, username and password
         String url="jdbc:mysql://atlas.dsv.su.se/db_5974722";
         try{
             new com.mysql.jdbc.Driver();
             con = DriverManager.getConnection(url, "usr_5974722", "974722");
         }catch (Exception ex){}
        public void doGet(HttpServletRequest req,HttpServletResponse res)throws IOException, ServletException{
         //get the text fields information     
         String namn=req.getParameter("namn");
         String epost=req.getParameter("epost");
         String hemsida=req.getParameter("hemsida");
         String kommentSQLB.doGet(SQLB.java:42)ar=req.getParameter("kommentar");
         //get the pic as file
         MultipartRequest mreq=null;
         PreparedStatement pstmt1=null;
         PreparedStatement pstmt2=null;
         res.setContentType("text/html");
         String mime=null;
         File file=null;
         File dir = (File)getServletContext().getAttribute("javax.servlet.context.tempdir");
         mreq = new MultipartRequest(req, dir.getAbsolutePath(), 5000000);
         mime= mreq.getContentType("file");     
         file = mreq.getFile("file");
         Statement stmt=null;
         ResultSet rs=null;     
         //first save all the information to the database
         //then go through it and print out all the content
         //both tables have id as key
         try{
             new com.mysql.jdbc.Driver();
             //save the picture
             pstmt2 = con.prepareStatement("INSERT INTO picture(p,type) VALUES ( ?, ?)");
             FileInputStream fis = new FileInputStream(file);
             byte[] data=new byte[(int) file.length()];
             fis.read(data);
             fis.close();
             pstmt2.clearParameters();
             pstmt2.setBytes(1, data);
             //another way to insert blob
             //pstmt2.setBinaryStream(3,fis, (int)file.length());
             pstmt2.setString(2,mime);
             pstmt2.execute();
             //picture saving done
             //save other text information
             pstmt = con.prepareStatement("INSERT INTO guestbook (NAME,TIME,EPOST,HEMSIDA,KOMMENTAR) VALUES(?,?,?,?,?)");
             pstmt.clearParameters();
             pstmt.setString(1,namn);
             pstmt.setString(2,new java.util.Date().toString());
             pstmt.setString(3,epost);
             pstmt.setString(4,hemsida);
             pstmt.setString(5,kommentar);
             pstmt.execute();
             //text informatin saving done
             //pstmt1=con.prepareStatement("DELETE FROM picture");
             //pstmt1.execute();
             //print the guestbook information and invoke the SQLC servlet
             //to display picture
             String queryprint="SELECT * FROM guestbook";
             rs=pstmt.executeQuery(queryprint);
             PrintWriter out=res.getWriter();
             out.println("<HTML><HEAD><TITLE>guestbook</TITLE></HEAD>");
             out.println("<BODY>");
             while ( rs.next() ) {
              String name = rs.getString("id");
              out.println("TID:  "+ rs.getString("TIME"));
              out.println("<br>");
              out.println("FR�N: ");
              out.println("<a href=\"rs.getString(HEMSIDA)\">"+rs.getString("NAME")+"</a>");
              out.println("<br>");
              out.println("e-post");
              out.println("<a href=\"mailto:"+rs.getString("EPOST")+"\">"+rs.getString("EPOST")+"</a>");
              out.println("<br>");
              out.println("Kommentar:  "+rs.getString("KOMMENTAR"));
              out.println("<br><br><br>");
              out.println("<br>");
              out.println("<img src=\"http://localhost:8080/ip/servlet/SQLC?id=" + name+ "\">");
             out.println("</body>");
             out.println("</html>");
                rs.close();
             pstmt.close();
                con.close();
         catch (Exception e){
             e.printStackTrace();
    }

    do you send the mulitipart MIME type like this ?
    <FORM action="youraction"
           enctype="multipart/form-data"
           method="post">

  • My ipad mini is not connecting to the wifi network. I have the correct network and password chosen, but the message I get is that "unable to join". I have reset my ipad and it still says the same thing.  What can I do about this.

    My ipad mini is not connecting to the wifi network. I have the correct network and password chosen, but the message I get is that "unable to join". I have reset my ipad and it still says the same thing.  What can I do about this?

    Hey Dr kris,
    Thanks for the question, and welcome to Apple Support Communities.
    I understand that you are having issues connecting to Wi-Fi networks with your iPad mini. The following troubleshooting assistant may lead to a resolution:
    Apple - Support - iPhone - Join a network Assistant
    http://www.apple.com/support/iphone/assistant/wifi/
    For more in-depth troubleshooting, refer to the following article (refer to the "Unable to connect to a Wi-Fi network):
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    Thanks,
    Matt M.

  • My itunes will not open! is giving me error7(windows error 1114) RUNING TIME  ERROR, PROGRAM FILES\ITUNESHELPER.EXE R6034 An application has made an attempt to load the C runtime library incorrectly. I must contact the application support team for imforma

    my itunes will not open! is giving me error7(windows error 1114) RUNING TIME  ERROR, PROGRAM FILES\ITUNESHELPER.EXE R6034 An application has made an attempt to load the C runtime library incorrectly. I must contact the application support team for imformation and  i tried downloading itunes like 10 times and is saying the same thing. Please help! i need to sync my ipads and ipods thank you!

    Follow the instructions of tt2 given in https://discussions.apple.com/thread/5822086

  • Cannot open iTune (Please reinstall iTune error7(windows error 126)

    when I installing,there are error as cannot find something look like "Apple Mobile Device" then when I did script it and finished install. and when I open iTune, it doesn't work and pop up error as "Please reinstall iTune error7(windows error 126)
    anyway I used to use iTune before but since I tried to up date new version last week it cannot open.
    BR,

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99394)

  • My macbook pro 15inch running on maverick when i try to click on wi-fi says no hardware installed please help i need wifi and and under network staus wi-fi is fail and under network airport is not connected can anybody help the wifi icon has a x and does

    my macbook pro 15inch running on maverick when i try to click on wi-fi says no hardware installed please help i need wifi and and under network staus wi-fi is fail and under network airport is not connected can anybody help the wifi icon has a x and does not even let me turn it on

    Have you attempted to reset the SMC? That would be the first step. Hold the left control, option, shift key and the power button for about 5 seconds and release. Then try to reboot. Might as well reset the PRAM as well. Hold command, option, P, R on start up until the machine restarts. If that doesnt' have any affect we'll have to dig deeper into a potential hardware failure.
    If this method doesn't work, check the webcam that will tell the problem is on the iSight & WiFi cable. If your webcam is ok, then it'll be the WiFi card problem. Hope it can help ;-)
    - xia_us9

  • AirPlay not showing on iPad anywhere. I've tried ation and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    AirPlay not showing on iPad anywhere. I've tried all of the rebooting functions and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    To use AirPlay, you need the following:
    1. iPhone 4s (or later), iPad 2 (or later), iPad mini, or iPod touch (5th generation)
    2. Apple TV (2nd or 3rd generation)
    3. AirPort Express
    4. Wi-Fi (802.11a/g/n) network
    http://support.apple.com/kb/ht4437

  • Hi- I applied the iTunes up to my Windows 7 86bit PC last Wednesday and iTunes will not load due to a Runtime error r6034Access to C Runtime Library Incorrectly. Then I get an windows error code 1114. I have tried rollling back and reinstalling but no joy

    Hi- I applied the iTunes up to my Windows 7 86bit PC last Wednesday and iTunes will not load due to a Runtime error r6034Access to C Runtime Library Incorrectly. Then I get an windows error code 1114. I have tried rollling back and reinstalling but no joy

    Hi Keen itunes User,
    Thanks for using Apple Support Communities.  This article has steps you can take for the error you're seeing:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Ari

  • HT1349 itune will not install correctly on my PC  Error message reads "service 'apple mobile device' failed to start

    itune will not install correctly on my PC  Error message reads "service 'apple mobile device' failed to start

    Hello cynthialane,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/ts1567
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Best of luck,
    Mario

  • HT1926 iTunes will not install on my computer (Windows 8) and i tried everything in "Issues installing iTunes or QuickTime for Windows" but nothing worked. any help?

    iTunes will not install on my computer (Windows 8) and i tried everything in "Issues installing iTunes or QuickTime for Windows" but nothing worked. any help?

    Many thanks.
    Error 7 (Windows error 127)
    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I just put itunes upeate 11 on and now itunes will not run. I get an error that sys iTunes has stopped and windows is sutting it down. I reinstalled 10.7 and it will not run eather now.

    I just put itunes upeate 11 on and now itunes will not run. I get an error that sys iTunes has stopped and windows is sutting it down. I reinstalled 10.7 and it will not run eather now.

    C Mawle wrote:
    Thanks.  I have followed all the instructions as recommended and nothing has worked so it looks like the restore/update may have been interrupted - would loss of internet connection do this?
    Yes it would, possibly even brick it.
    Have successfully connected my ipod nano with iTunes so looks like the device driver is working.
    Can I use my ipod nano USB connector to check?
    It is not much help to you, since the device that you need still not recognized.
    Anyway looks like I may have to swallow the loss of data.  Have set-up a call for tomorrow with Apple support so will wait until after this before doing the factory restore!
    Good luck, but if you expect miracle from that call good luck again.

Maybe you are looking for