Can't find networksource "//FILESERVER/Mijn afbeeldingen/"

I have bought an external hard disk, and with the hard disk connected, iTunes worked properly. Now I have solds that hard disk and when I wan't to open iTunes I get the error. Can't find the networksource ...
I wanted to remove iTunes, same error. So I removed all the registry items, all the Program files, ...
Now I want to begin a new installation of iTunes and same error, every time again. Does somebody know what I have to do to get iTunes properly installed?
Thanks!

hmmmm. with that one, it might be worth checking through the following document:
Error 1606. Could Not Access Network Location

Similar Messages

  • Can't find class because of try catch block ?!

    Hello,
    I'm using the JNI to use a java library from my c++ code.
    JNI can't find the "Comverse10" class below, but when i put the try catch block in createMessage in comment, FindClass succeeds ?!
    Unfortunatly i need the code inside the try block ;-)
    I tried a few things, but none of them worked:
    - let createMessage throw the exception (public void createMessage throws ElementAlreadyExistsException ), so there isn't a try catch block in createMessage => result: the same
    - make a "wrapper" class Comverse that has a Comverse10 object as attribute and just calls the corresponding Comverse10.function. Result: Comvers could be found, but not constructed (NewObject failed).
    Can someone tell me what is going on ?!
    Thank you,
    Pieter.
    //Comverse10 class
    public class Comverse10 {
    MultimediaMessage message;
    /** Creates a new instance of Comverse10 */
    public Comverse10() {
    public void createMessage() {
    TextMediaElement text1 = new TextMediaElement("Pieter");
    text1.setColor(Color.blue);
    SimpleSlide slide1 = new SimpleSlide();
    //if i put this try catch block in comment, it works ?!
    try{
    slide1.add(text1);
    catch(com.comverse.mms.mmspade.api.ElementAlreadyExistsException e){}
    MessageContent content = new MessageContent();
    content.addSlide(slide1);
    this.message = new MultimediaMessage();
    message.setContent(content);
    message.setSubject("Mijn subjectje");
    for those of you who are intersted: here's my C++ code:
    //creation of JVM
    HRESULT Java::CreateJavaVMdll()
         HRESULT HRv = S_OK;
    char classpath[1024];
         jint res;
         if(blog)     this->oDebugLog->Printf("CreateJavaVMdll()");
         strcpy(classpath,"-Djava.class.path="); /*This tells jvm that it is getting the class path*/
         strcat(classpath,getenv("PATH"));
         strcat(classpath,";D:\\Projects\\RingRing\\MMSComposer;C:\\Progra~1\\j2sdk1~1.1_0\\lib");     //;C:\\Comverse\\MMS_SDK\\SDK\\lib\\mail.jar;C:\\Comverse\\MMS_SDK\\SDK\\lib\\activation.jar;C:\\Comverse\\MMS_SDK\\SDK\\lib\\mmspade.jar
         //------Set Options for virtual machine
         options[0].optionString = "-Djava.compiler=NONE"; //JIT compiler
         options[1].optionString = classpath;                                        //CLASSPATH
         //------Set argument structure components
         vm_args.options = options;
         vm_args.nOptions = 2;
         vm_args.ignoreUnrecognized = JNI_TRUE;
         vm_args.version = JNI_VERSION_1_4;
         /* Win32 version */
         HINSTANCE hVM = LoadLibrary("C:\\Program Files\\j2sdk1.4.1_01\\jre\\bin\\client\\jvm.dll");
         if (hVM == NULL){
              if(blog) oDebugLog->Printf("Can't load jvm.dll");
              return E_FAIL;
         if(blog) oDebugLog->Printf("jvm.dll loaded\n");
         LPFNDLLFUNC1 func = (LPFNDLLFUNC1)GetProcAddress(hVM, "JNI_CreateJavaVM");
         if(!func){
              if(blog)     oDebugLog->Printf("Can't get ProcAddress of JNI_CreateJavaVM");
              FreeLibrary(hVM);     hVM = NULL;
              return E_FAIL;
         if(blog)     oDebugLog->Printf("ProcAddress found");
         res = func(&jvm,(void**)&env,&vm_args);
         if (res < 0) {
    if(blog)     oDebugLog->Printf("Can't create JVM with JNI_CreateJavaVM %d\n",res);
    return E_FAIL;
         if(blog)     oDebugLog->Printf("JVM created");
         return HRv;
    //finding Comverse10 class:
    HRESULT CALLAS MMSComposer::InitializeJNI(void)
         HRESULT HRv=E_FAIL;
         DWORD T=0;
         try
              if(blog)     oDebugLog->Printf("\nInitializeJNI()");
              bJVM = FALSE;
              jni = new Java(oDebugLog);
              if(jni->CreateJavaVMdll()!=S_OK){
                   if(blog)     oDebugLog->Printf("CreateJavaVMdll() failed");     
                   return HRv;
              jclass jcls = jni->env->FindClass("Comverse10");
              if (jcls == 0) {
    if(blog)     oDebugLog->Printf("Can't find Comverse10 class");
                   jclass jcls2 = jni->env->FindClass("test");
                   if (jcls2 == 0) {
                        if(blog)     oDebugLog->Printf("Can't find test class");
                        return HRv;
                   if(blog)     oDebugLog->Printf("test class found %08x",jcls2);
    return HRv;
              if(blog)     oDebugLog->Printf("Comverse10 class found %08x",jcls);
              jmethodID mid = jni->env->GetMethodID(jcls , "<init>", "()V");
              if (mid == 0) {
                   if(blog)     oDebugLog->Printf("Can't find Comverse10() constructor");
    return HRv;
              if(blog)     oDebugLog->Printf("Comverse10() constructor found");
              jobject jobj = jni->env->NewObject(jcls,mid);
              if(jobj==0)
                   if(blog)     oDebugLog->Printf("Can't construct a Comverse10 object");
    return HRv;
              if(blog)     oDebugLog->Printf("Comverse10 object constucted");
              //Create Global reference, so java garbage collector won't delete it
              jni->jobj_comv = jni->env->NewGlobalRef(jobj);
              if(jni->jobj_comv==0)
                   if(blog)     oDebugLog->Printf("Can't create global reference to Comverse10 object");
    return HRv;
              if(blog)     oDebugLog->Printf("global reference to Comverse10 object %08x created",jni->jobj_comv);
              bJVM=TRUE;
              HRv=S_OK;
         }     catch( IDB * bgError ) { throw bgError->ErrorTrace("InitializeJNI::~InitializeJNI",HRv, 0, T); }
              catch(...) { throw IDB::NewErrorTrace("InitializeJNI::~InitializeJNI",HRv, 0, T ); }
              return HRv;

    >
    I would guess that the real problem is that that the
    exception you are catching is not in the class path
    that you are defining.Thanks jschell, that was indeed the case.
    I don't have the docs, but I would guess that
    FindClass() only returns null if an exception is
    thrown. And you are not checking for the exception.
    Which would tell you the problem.Ok, i'll remember that. But what with exceptions thrown in my java code, the documents say
    // jthrowable ExceptionOccurred(JNIEnv *env);
    // Determines if an exception is being thrown. The exception stays being thrown until either the native code calls ExceptionClear(), or the Java code handles the exception
    so, what if the java code throws an exception and catches it, will i be able to see that in my c++ code with ExceptionOccurred ?
    or
    should the java method be declared to throw the exception (and not catch it inside the method)
    Again, thank you for your help, it's greatly appreciated !

  • Where can I find the plugins folder when I have opened PSE13? I miss it in this version! If so why did Adobe removed it? Then this version has no use to me.

    I just purchased PSE13 and after installing I noticed that I can't find my plugins  while I could easily open it in my PSE11. Why did Adobe removed it???  If so I think I will install PSE11 again.
    Kind-a weird that this version doesn't have a plugin-use anymore.
    Oftwel: waar heeft PSE13 de plugins gelaten? In mijn vorige versie PSE11 wanneer ik met een foto bezig was kon ik mijn plugins bereiken, stonden ze er netjes bij maar bij deze versie kan ik ze nergens vinden. Mocht het zo zijn dat Adobe deze heeft verwijderd {wat erg dom is, naar mijn mening!} zit er niets anders voor me op om terug te gaan naar PSE11....

    I have Windows 7 Professional X86 and I also noticed that PSE13 was installed in my  'normal' program files folder instead of the X86 program files folder. PSE11 used the X86 programfiles folder. I dunno why though!

  • Can't find the map Digital Editions

    I installed Adobe Digital Editions on mijn computer but I can't use it.
    When I open the program it says "Can't find the map Digital Editions".
    Can someone help me? I need this program for my epubs and my e-reader.

    Moving this discussion to the Adobe Digital Editions forum.

  • When I try to open my project, where can I find the requested file 00000.mts2?

    When I try to open my project, I am asked where to find file 00000.mts2?
    I see almost all scenes in my project in color red  with the text 'media off-line'. But it is impossible to find this requested file 00000.mts2 on my computer. What can I do to solve this problem?
    Thank you for your answer.
    Hans

    Thank you. I have done what you told me. It was a long search, but at the end I was succesful. Again: thank you for your useful answer.
    Greetings,
    Hans
    Verstuurd vanaf mijn iPad
    Op 26 feb. 2015 om 00:29 heeft Peru Bob <[email protected]> het volgende geschreven:
    When I try to open my project, where can I find the requested file 00000.mts2?
    created by Peru Bob in Photoshop Elements - View the full discussion
    This is the Photoshop Elements forum.  Are you using Premiere Elements? If so, ask here:
    Premiere Elements
    By the way, if you moved your media files or they are on an external drive, you will have to relink them.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7230757#7230757 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7230757#7230757
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Photoshop Elements by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Where can I find the forum premiere elements? and how to find my own questions asked return?

    waar vind ik het premiere elements forum en hoe vind ik mijn eigen gestelde vragen terug?
    where can I find the forum premiere elements? and how to find my own questions asked return?

    arkitsa wrote:
    thank you 99jon, but still difficult to find your own questions back.
    Click on this:
    then this:
    and finally this:
    And your posts will be listed.

  • I have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    i have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    Maybe it is in the Purchased category of iTunes,
    Try going there

  • Podcasts downloaded to "wrong" folder, then ITunes can't find it anymore

    Hi
    When I subscribe to a podcast or download the newest podcast, it will be saved not to the folder of itunesmusic/podcasts/name of podcast, but to /itunesmusic/downloads/podcasts/name of podcast, apparently as tmp-folder. Synchronising just then with my IPOD works, but when I exit ITunes and restart it, the podcast is not found anymore and I get the exclamation mark. When I search for it I can't find the podcast then anymore.
    I have ITunes 7.0.2.16 and running Windows XP.
    Any one has an idea how to solve this?
    Also is there a way to downgrade ITunes to version 6 or so? Because there it worked without problems.
    Appreciate any feedback.

    Too my a bit to work out *** was going on, but it was driving me insane with podcasts vanishing on me.
    To clarify, this is a full description of the issue:
    I have a problem with iTunes losing podcasts. They'd download, seem to play, but when I exited and reloaded iTunes a load of them would be lost and give me the exclamation icon. I've managed to work out why iTunes is losing my podcasts, but have no idea how to fix it.
    I've got a folder specified which I want iTunes to use to store my stuff in (E:\Media\itunes).
    When I subscribe to a new podcast it downloads to a file called E:\Media\itunes\Downloads\Podcasts\File on 4_ Phone tap evidence - 21 N.tmp\download.mp3 and creates a folder called E:\Media\itunes\Podcasts\File on
    I think it's supposed to save it to the first location and then copy it across to the second folder when it's finished. Except it doesn't. iTunes can run the podcast now, but from the temp folder.
    When you restart itunes, it nukes everything in the E:\Media\itunes\Downloads\Podcasts folder - I assume as it thinks I have no downloads outstanding and anything in here is just junk.
    Apart from manually copying, renaming and point itunes to this file - how do I get around this problem. It's only started since I went to iTunes7 and a complete uninstall/registry/config cleanse followed by a reinstall doesn't fix the problem.

  • Aio remote can't find printer

    I have a HP Envy 4507. My AiO Remote app can't find it. This is not a compatibility issue as I have been selling 4507's which I demonstrate by connecting to them. I originally was able to connect on the one at home but not lately. I keep on seeing the one from work. HP ePrint sees the home one fine. I have reinstalled AiO Remote and now it cannot see any printers, no matter how I try to connect. Tried ip address, direct (which was working before) and through wireless router which worked when I first set it up.

    Hi,
    Thinsg to quickly check would that there has been no recent  wifi password changes - if there has been any, they password would need to be re-entered into both the mobile device and printer.
    Another quick thing to try is restarting the mobile device - this sometimes helps re-establish the  connection.
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • I received the error (in iCal on my iMac): "The server responded with an error". The error message is very large, and if there is a way to acknowledge and close it I can't find it. Because this error message is open, I can't do anything in iCal. Any sugge

    I received the error (in iCal on my iMac): "The server responded with an error". The error message is very large, and if there is a way to acknowledge and close it I can't find it. Because this error message is open, I can't do anything in iCal. Any suggestions on how I could kill this error message? Thanks.
    iMac, Mac OS X (10.7.2)
    Basically i tried to enter too much information into my calendar and it has crashed  now i can not get rid of the error message or use the calendar  can anyone help please

    did you find ou how to get rid of it i can't

  • Macbook pro can´t find/connect to my hotspot

    Dear experts!
    I recently moved to a new place and got myself a T-Mobile HomeNet Router. Everything works fine (WiFi and Ethernet) with all devices (iPhone, iPad, iMac, Linux-machine...) EXCEPT my MacBook Pro (specs below in the product section) :-(
    Ever since I moved the Macbook can´t find or connect to my home hotspot. Settings on the router are as follows:
    - 802.1 b/g (it IS capable of b/g/n but I found a thread somewhere pointing out that this could be an issue)
    - channel 13 (deactived auto-channel because my neighbours had overlapping channel settings...this was the only one that worked)
    - rate auto
    - frequency 2.4 GHz
    - 30% signal strength (same reason as above)
    - QoS activated
    - SSID hidden (tried broadcasting it, made no difference)
    - WPA2-PSK
    - AES (TKIP and TKIP+AES available as well...but neither made any difference)
    I can connect via ethernet, however that´s not the intended purpose of neither my notebook nor the router :-/ Someone suggested it might be an encryption issue but even without  ANY encryption the hotspot won´t show up in the list. Password contains special characters but even my old iMac doesn´t seem to have problems with it. I tried connecting manually via &quot;other network&quot; without success. Also via Controlpanel -> Network -> Assist me ...
    I´m sitting right next to my router so the signal strength can´t be the cause either (besides all other devices work just fine anywhere in my appartement). Restarted all devices, each one is up to date. Last thing I tried was making the changes in Firefox cause someone suggested it might be a bug in the router software, still no success.....I´m out of ideas.
    Posted this in another Mac forum already but no one could help me :-( You guys are my last hope ... does anyone know this issue and how to solve it??
    any ideas would be greatly appreciated!
    many thanks in advance
    tchintchie

    nevermind...here´s what solved it for me:
    https://discussions.apple.com/docs/DOC-3411

  • HT201269 When I updated my wife's iphone 4s the last time to IOS 7 she lost all her contacts. I logged onto icloud because I thought they would have been save there but I can't find them.  My daughter and wife use the same Apple ID

    About 2 weeks ago I plugged my wife's iphone 4S to our pc to update  it to IOS 7and backup her iphone info to icloud. When I was done my wife's iphone had my daughter's ipod info on it and I can't find my wife's info on icloud anywhere. My wife has about 6 years of business contacts on her iphone so she is rather upset. Is there a way to recover her contacts?

    You don't have to wipe anything, but when you get a chance make sure you backed up to icloud.
    What that means is your contacts inside of the phone either physically or liquid damaged. To check
    which, you can look inside and if you see a little pink, that would give you a water damage. If you don't
    see pink it means that you to many times plugged in that charger the other way or tried to. May be
    used some other things to plug in. If you flash the light in you may be able to see those contacts.
    If I were you, i would not believe me, good luck!

  • Microsoft Office can't find your license for this application - multiple copies of Office 2013 x32 failing to start, Software Protection Service timing out

    We're experiencing a growing problem with our users in several different domains running in to Microsoft Office 2013 x32 'activation' issues.  We use KMS for licensing, which works properly, but some of the machines (~20-30 out of 1000+) sporadically
    throw the following error:
    'Microsoft Office can't find your license for this application.  Microsoft Office will now exit.'
    We know it's not an issue with the licenses per se, since they work on and off and we can force KMS activation correctly / talk to the KMS servers.
    It appears to be an issue with the Software Protection service not starting properly.  In Event Viewer, we see the following:
    'Software protection service failed to start due to the following error- the service did not respond in a timely fashion.
    Event 7000'
    This is occurring on a variety of machines in a variety of environments, all fully patched with the latest Office updates.  It's inconsistent, and the 'manually restart the Software Protection Service' solution is not viable as it's occurring on many
    different workstations.  Office repairs have also been unsuccessful.  
    Has anyone else come across this? Or have any idea why the Software Protection Service might be sporadically failing?  Maybe an Office update in the last 2-3 months?
    Thanks for any info.

    We're experiencing a growing problem with our users in several different domains running in to Microsoft Office 2013 x32 'activation' issues.  We use KMS for licensing, which works properly, but some of the machines (~20-30 out of 1000+) sporadically
    throw the following error:
    'Microsoft Office can't find your license for this application.  Microsoft Office will now exit.'
    We know it's not an issue with the licenses per se, since they work on and off and we can force KMS activation correctly / talk to the KMS servers.
    It appears to be an issue with the Software Protection service not starting properly.  In Event Viewer, we see the following:
    'Software protection service failed to start due to the following error- the service did not respond in a timely fashion.
    Event 7000'
    This is occurring on a variety of machines in a variety of environments, all fully patched with the latest Office updates.  It's inconsistent, and the 'manually restart the Software Protection Service' solution is not viable as it's occurring on many
    different workstations.  Office repairs have also been unsuccessful.  
    Has anyone else come across this? Or have any idea why the Software Protection Service might be sporadically failing?  Maybe an Office update in the last 2-3 months?
    Thanks for any info.

  • At a Genius Bar appointment yesterday, we determined that I needed to go to Mountain Lion from Lion.  I purchased Mountain Lion at the Bar, and paused the install so that I could resume from home.  Now I can't find it to resume. Not in Downloads. ?????

    When I upgraded to Lion, my Parallels stopped working and I got a Bootcamp error message.  It had worked fine for the prior year.  I upgraded to Parallels 7.  No luck. At the Genius Bar, the Genius uninstalled Bootcamp.  No luck.  I still get "The Boot Camp partition /dev/diskOs4 used by Hard Drive 1 is missing."
    Another Genius suggested upgrading to Mountain Lion.  While at the Bar, I purchased Mountain Lion and then we paused the install so that I could resume it at home.  Once I got home, I can't find the Mountain Lion installer to resume.  It's not in the Downloads file.  Any clue?
    My business programs all run on Windows, so I have to get it operating.  The Genius Bar isn't much help.  Does anyone know how to get Mountain Lion installed?  How to get Parallels working?

    The "Geniuses" (and I use that word in sarcasm) at the Bar are lying to you. Upgrading from Lion to Mt Lion will not fix whatever problems you are having. In fact it will most likely make them worse.
    If you want to try installing Mt Lion to fix the problems you are having you will need to open the Mac App Store link in your Dock, Login to your Apple ID account for the MAS and go to your Purchases area. Mt Lion should be in there and you will be able to do a proper download. Once you either set your Mac into sleep or shut down and then left the internet connection at the Bar all record of that download was lost. So you will need to restart it again from the beginning, like described above.
    Good Luck

  • "Can't find dependent libraries" Query

    I created a sample.dll using VC++ which inturn uses java libraries. I
    was getting 'file.obj : error LNK2001: unresolved external symbol
    __imp__JAWT_GetAWT@8' link error while creating sample.dll even after
    providing jawt.dll path. So used jre/lib/jawt.lib to create the
    sample.dll. I am using this sample.dll to run a java program. While
    running the java program, I am getting the error 'Exception in thread
    "main" ava.lang.UnsatisfiedLinkError: sample.dll: Can't find dependent
    libraries'. If I don't use jawt.lib (by commenting relevant code) to
    create sample.dll, my java program runs fine.
    But I need to use the code relevant to jawt.lib. Any idea how to over
    come Can't find dependent libraries error?

    You need to link against "jawt.lib"
    E.g.
    In VC++ goto
    Projects -> Settings ->Link Tab
    Add jawt.lib to the Object/Library modules and Project Options.

Maybe you are looking for