Gettin error message?

I uninstalled itunes than installed it again. It all seems to go fine, but once its installed and i click on it to open it it gives me an error message , "the Itunes application could not be opened, unknown error occured [-50] Anyone have any clue why it would do this??

There are well know problems with the Vaio and the iTunes Library, although not specifically this.
Try this as a test.
Hold down the shift key and launch iTunes. Keep holding the the shift key until you are prompted to create or choose a library (or itunes crashes).
Select "create" and create a library somewhere away from you music folder. This will be empty and the only purpose is to check if there is a library or content file issue with your original iTunes.
You can go back by using the shift key start again then choose the old library.
If that's not it, try starting Quicktime, iTunes will not work if Quicktime does not an it has to be fixed first.
If Quicktime is OK use this trouble shooting article.
XP
http://support.apple.com/kb/TS1421
Vista version
http://support.apple.com/kb/TS1717

Similar Messages

  • Verizon email - I keep gettin error message when I try to get in

    When Verizon says they're going to send me a confirmation message, I think it's going to my Verizon email, which I never use.  Now that I'm trying to get into my verizon email, I keep getting an error message: "Sorry, your account is being reactivated. Please try again later."  What does this mean and what should I do?

    That's unfortunate to hear about email problems. We can help out with that. I have sent you a private message to get more information.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Im trying to download new itunes...gettin error message "the feature you are tryin to use is on a resource thats unavailable" HELP

    when tryin to download new itunes, i get error meaages...i try to unistall i cant, keep sayin cant find itunes64.msi HELP

    Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.

  • I'm trying to re instal iTunes but keep gettin error messages

    error r6034
    and "apple mobile devise failed to start."

    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

  • Error message after creative cloud desktop app update

    Everytime updates fails and i am gettin error message: Creative desktop cloud could not be installed. tryed to uninstalled, failted too. reinstallation aswell!
    Helps help!

    Without system information and otehr details nobody can advise specifically. as a start run the cleaner tool and try again:
    http://www.adobe.com/support/contact/cscleanertool.html
    Mylenium

  • I'm gettin an error message when I try to play a movie a rented using Apple TV 2nd generation. How do I solve this?

    i'm gettin an error message when I try to play a movie a rented using Apple TV 2nd generation. How do I solve this?

    I don't believe I've seen a solution to that error code. There's a new version of iTunes out, have you installed it yet, it might be worth trying. You might also try restarting your Apple TV and router.

  • I am gettin an error message when trying to open a contact: "There was a temporary problem accessing your address book. Please try again in 10 minutes."

    I am using an Yahoo Email and I can open a list of contacts but getting an error message when trying to open any of them. My OS is Windows Vista Service Pack 2 installed on a desktop.

    Does this issue occur on another browser? If this issue does occur on another browser then I would like to say that it is a Yahoo issue and not a Firefox issue.

  • Am gettinI g an error message of apple sync notifer that the entry point sqlite3_3_checkpoint could not be located in the dynamic link library SQLite2.dll/ This message comes up every  time I re boot.

    getting error message when I boot up of the apple sync notifer that the entry point sqlite3_3 checkpoint could not be located in the dynamic link library SQlite2,dll this message comes up every time I login and I dont know what it means or how to fix and stop the message appearing every time I log in. what does this mean and how do I fic this issue

    With that one, perhaps first try uninstalling and reinstalling your MobileMe control panel. Does that clear up the error?

  • I keep gettin this error message when i try to compile can't fix

    MY CODE
    import java.text.DecimalFormat;
    public class MotelBase{
    private int nite;
    private int numadult;
    private int numchild;
    final double ADULT_RATE = 25.0;
    final double CHILD_RATE = 8.0;
    public MotelBase (int inNite, int inNumAdult, int inNumChild){
         nite = inNite;
         numadult = inNumAdult;
         numchild = inNumChild;}
    public int getNumAdult(){return numadult;}
    public int getNumChild(){return numchild;}
    public int getNite(){return nite;}
    public double getAchg(){return numadult * nite * ADULT_RATE;}
    public double getCchg(){return numchild * nite * CHILD_RATE;}
    public double getBase;{return (getAchg + getCchg);}
    public double getTax;{return (getBase) * .10;}
    public double getTotal;{return (getTax) + (getBase);}
    public void setNite(int inNite){nite = inNite;}
    public void setNumAdult(int inNumAdult){numadult = inNumAdult;}
    public void setNumChild(int inNumChild){numchild = inNumChild;}
    public String toString(){return "Number of Adults: " + this.numadult + "\n" +
                                    "Number of Children: " + this.numchild + "\n" +
                                    "Number of Nights: " + this.nite + "\n" +
                                    "Base rate: " + this.getBase + "\n" ;}}
    **Here are the error messages when i compile**
    javac -d . -g -classpath . MotelBase.java
    MotelBase.java:17: return outside method
    public double getBase;{return (getAchg + getCchg);}
    ^
    MotelBase.java:18: return outside method
    public double getTax;{return (getBase) * .10;}
    ^
    MotelBase.java:19: return outside method
    public double getTotal;{return (getTax) + (getBase);}
    ^
    3 errors
    Can anyone help me

    so i removes the semi's and added ()'s
    public double getBase(){return (getAchg) + (getCchg);}
    public double getTax(){return (getBase) * .10;}
    public double getTotal(){return (getTax) + (getBase);}
    and this happened
    javac -d . -g -classpath . MotelBase.java
    MotelBase.java:17: cannot find symbol
    symbol : variable getAchg
    location: class MotelBase
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: illegal start of type
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: cannot find symbol
    symbol : variable getCchg
    location: class MotelBase
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: illegal start of type
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: incompatible types
    found : java.lang.String
    required: double
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:18: cannot find symbol
    symbol : variable getBase
    location: class MotelBase
    public double getTax(){return (getBase) * .10;}
    ^
    MotelBase.java:18: illegal start of type
    public double getTax(){return (getBase) * .10;}
    ^
    MotelBase.java:19: cannot find symbol
    symbol : variable getTax
    location: class MotelBase
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: illegal start of type
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: cannot find symbol
    symbol : variable getBase
    location: class MotelBase
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: illegal start of type
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: incompatible types
    found : java.lang.String
    required: double
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:26: cannot find symbol
    symbol : variable getBase
    location: class MotelBase
    "Base rate: " + this.getBase + "\n" ;}}
    ^
    13 errors
    it seem like everytime i fix something there is a virtual landrush of errors, i appreciate all of your help thank you for taking the time to answer my questions

  • Gettin error in msg monitoring --webservice to idoc

    Hi all,
    While sending the data from webservice to Idoc I am gettin error like this.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_INV_SND_SERV</SAP:Code>
      <SAP:P1>BS_Exten_Wrnty</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Unable to convert the sender service BS_Exten_Wrnty to an ALE logical system</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    checked with soap-its working fine .i think problem  with idoc.
    Please suggest
    Abhishek

    hi
    for this error
    Unable to convert the sender service BS_Exten_Wrnty to an ALE logical system,check blog
    The specified item was not found.                              
    regards
    kummari

  • Does anyone know why I keep getting an unknown error message when trying to export a pages file to a word doc?

    Does anyone know why I keep gettin an "unknow error" message in pages when I'm trying to export a file to a word doc?

    Do you have a backslash / or other Windows illegal character in the name for the file?
    Peter

  • Why am i getting an error message 13010

    Why can i not open my Itunes.  i keep gettin an error message #13010?

    You are getting an error message because there is an error.
    Knowing wht version of Pages you are using, what template you are attempting to open, and what error message Pages is sending you might help determine why you are getting that specific rror message. Without those, the first sentence above i pretty much all that can be said with any assurance.
    Regards,
    Barry

  • Error Message "No batch input data for screen SAPMF05A 0700" for FV60&FB60

    Dear All,
      I doing a BDC Upload program for Create Vendor Invoice and Park using FV60 ,But i can't upload successfully by Batch Input method and i am gettin the Error Message "No batch input data for screen SAPMF05A 0700'.I tried using FB60 and got the same error message. When i do in the direct method i can able to do it ,But can't park the document successfully and can do it untill sumilate only.
    How to overcome this issue and if you already encounter this kind of problem please advice me.
    Thanks in Advance.
    Deesanth

    Hi,
      Below is my recording.
        perform bdc_dynpro      using 'SAPMF05A'     '1100'.
        perform bdc_field       using 'INVFO-ACCNT'  gwa_inv_up-lifnr.
        perform bdc_field       using 'INVFO-BLDAT'  gwa_inv_up-bldat.
        perform bdc_field       using 'INVFO-XBLNR'  gwa_inv_up-xblnr.
        perform bdc_field       using 'INVFO-BUDAT'  gwa_inv_up-budat.
        perform bdc_field       using 'INVFO-MONAT'  '9'.
        perform bdc_field       using 'INVFO-BLART'  gwa_inv_up-blart.
        perform bdc_field       using 'INVFO-WRBTR'  gwa_inv_up-dmbtr.
        perform bdc_field       using 'INVFO-WAERS'  gwa_inv_up-waers.
        perform bdc_field       using 'INVFO-XMWST'  gwa_inv_up-xmwst.
        perform bdc_field       using 'INVFO-MWSKZ'  'P0'.
        perform bdc_field       using 'INVFO-SGTXT'  gwa_inv_up-sgtxt.
        perform bdc_dynpro      using 'SAPMF05A'     '1100'.
        perform bdc_field       using 'BDC_OKCODE'   '=PAYM'.
        perform bdc_field       using 'INVFO-GSBER'  gwa_inv_up-gsber.
        perform bdc_dynpro      using 'SAPMF05A'     '1100'.
        perform bdc_field       using 'BDC_OKCODE'   '=BS'.
        perform bdc_field       using 'INVFO-ZLSCH'  gwa_inv_up-zlsch.
        cnt = 1.
        cnt1 = 1.
        clear gwa_inv_line.
        loop at gt_inv_up  into gwa_inv_line  where indic = 'D'
                                       and count = gwa_inv_up-count.
          if cnt1 gt 1.
            concatenate 'ACGL_ITEM-MARKSP(' cnt ')' into fld.
            perform bdc_field using fld 'X'.
            perform bdc_dynpro using 'SAPMF05A' '1100'.
            perform bdc_field using 'BDC_OKCODE' '=0005'.
          endif.
          concatenate 'ACGL_ITEM-HKONT(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-lifnr.
          concatenate 'ACGL_ITEM-SHKZG(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-shkzg.
          concatenate 'ACGL_ITEM-WRBTR(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-dmbtr.
          concatenate 'ACGL_ITEM-MWSKZ(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-mwskz.
          concatenate 'ACGL_ITEM-SGTXT(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-sgtxt.
          concatenate 'ACGL_ITEM-GSBER(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-gsber.
          concatenate 'ACGL_ITEM-KOSTL(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-kostl.
          concatenate 'ACGL_ITEM-PROJK(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-posid.
          concatenate 'ACGL_ITEM-FISTL(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-fistl.
          concatenate 'ACGL_ITEM-FIPOS(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-fipos.
          concatenate 'ACGL_ITEM-GEBER(' cnt ')' into fld.
          perform bdc_field       using fld gwa_inv_line-geber.
          perform bdc_field       using 'BDC_CURSOR' fld.
          cnt1 = cnt1 + 1.
        endloop.
        perform bdc_dynpro using 'SAPMF05A' '1100'.
        perform bdc_field  using 'BDC_OKCODE' '=BS'.
        perform bdc_dynpro      using 'SAPMSSY0' '0120'.
        perform bdc_field       using 'BDC_OKCODE' '=BP'.
        call transaction 'FB60' using gt_bdcdata mode 'N' pdate 'S'
                                        messages into gt_bdc_messages.
    Thanks,
    Deesanth

  • Windows Vista: Ipod Error Message, no longer read by PCs

    Hello,
    I have a 5th generation black ipod video with 30GB of memory.
    The other day I hooked it up to my laptop (Toshiba, 4 months old) that it's been functioning on with no problems whatsoever. This weird error message flashed twice about it not being able to sync because of some software problem.
    Eversince then, the only thing I can charge my ipod on is the family treadmill in the basement (~_~) as no other computer in the house recognizes it. I can't even charge it through the wall sockets, either.
    I have changed the ipod cord, still no luck. I've also reset the device about 3 or 4 times and uninstalled, restarted the laptop then reinstalled itunes. I would like to reset it back to factory settings but that's impossible as computers/laptops don't pick it up. I live very far from a Mac store...
    What's a girl to do? I can't live without my Busta Rhymes and Wu-Tang Clan!
    Any advice would be greatly appreciated! Thanks!

    you have to update Vista go to this site and up-date http://windowsupdate.microsoft.com

  • Error message into a Variable.

    Dear users,
    I have a rather usual (unusual from the weekend beers for me though!!) query which I can't figure out a proper way to implement.
    My requirement is like this:
    I have a message class in which I want to define a text 'Employee number & not found'.
    I want to use this in the program, but not to raise this error. Instead, I want to move this error message with the Employee number into a Character(200) variable.
    So instead of using MESSAGE e0xx(messageclass) USING employee number, I would like to move the error text into a variable which looks like:
    lv_text = e0xx(messageclass) USING '1234'   which stores the text 'Employee number 1234 not found' in lv_text.
    How would I acheive it??
    Thanks, V!

    Try tis way
    message e999(00) with i_emp-empno into lv_text.
    press f1 in message will provide you more details

Maybe you are looking for

  • View for bookmarks

    can the view for bookmarks be changed or do you have to use cover flow

  • Has anyone had issues with the most recent Yosemite update

    I installed Yosemite October of 2014 mainly because I needed to update itunes to continue to help my daughter maintain her music files. Anyway the reason hardly matters. My computer and Yosemite did not get along. Posted up a file of my computer cond

  • Ipad mini cookies issues!!

    When I try to access the internet at my current location, I am promted to provide a user name and password through a web site. When i get to the point where the web site should come up, I get a message asking me to enable cookies. I have done so and

  • Play Video Games on iMac

    Does it work to use a HDMI-DVI cable and then a DVI-MINI DVI cable to plug a PlayStation 3 into my iMac and play it in HD on the iMac screen? If not, is there another way I can do this?

  • Can someone explain to me about the "Facebook" interfacing with mountain lion?

    I've been hearing about one of the new features of Mountain Lion can now interact with facebook?  If this is true how?