Error 213:11 problems with the license i need help

i have an adobe cc account and i installed some programs in my desktop, and when i intalled the same programs in my notebook appeared the error 213:11 pls help me sorry for my english bu i speak spanish

Hello,
Try these trouleshooting steps as mentioned in the document.
http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html
Should certainly take care of the problem.
Good Luck !!

Similar Messages

  • Re: Having some problems with the 8350i. Need Help Please!

    Everyone I talk to hears echo's. I also don't get text messenges until sometimes a full day after they're sent. I wonder if our geographic area dictates why this is happening..  if you search the forum for "echo" there's quite a few people with the same problem. I'm in Florida.

    How are you receiving the sms manually?
    If your device is new, proceed to change the device. 
    If I help you with any inquire, thank you for click kudos in my post.
    If your issue has been solved, please mark the post was solved.

  • Having some problems with the 8350i. Need Help Please!

    I just got the 8350i through Sprint/Nextel and already am having problems receiving text messages and when I finally do receive them (one day later or after turning set off then back on), I have to manually receive the message.
    Also, I have customers complaining about an echo on their side of the phone every time they call me.  Saw some others where having this problem as well.
    Is there anything I can do to fix this?  My phone is vital to my business and any help is greatly appreciated!!!
    Thnaks!!

    How are you receiving the sms manually?
    If your device is new, proceed to change the device. 
    If I help you with any inquire, thank you for click kudos in my post.
    If your issue has been solved, please mark the post was solved.

  • Downloaded AVG protection and it cleaned my computer, now whenever i try to start photoshop it says that there is a problem with the licensing of the product and gives me an error code 213:11

    Exactly as it says above. The computer was given to me as a gift, and the person who gave it to me had already bought photoshop and put it on for me. Photoshop was working perfectly before AVG did the computer scan, and now every time i try to use it a window comes up instead that says "A problem has occurred with the licensing of this product. Restart your computer and re-launch the product. If this problem still occurs after restarting, contact Customer Support for further assistance, and mention the error code shown at the bottom of this screen. Error: 213:11"

    Apparently it "cleaned" away needed files.
    Most likely you will have to reinstall Photoshop to get all the files back.

  • Error thread java : problem with the function "resume 0x***"  (forum sun)

    One problem with the function of jdb occured when I tried to use it to
    pilot the processor with differents threads. In fact, I use a simple example with 2 threads.
    I stop the two threads with two breakpoint, and I want to resume one or the other (with the function "resume 0x****"), the one wich I resumed stop again on the breackpoint and I decide again to resume one or the other. All of that to obtain a tree of execution.
    I give you the code of the class and the code of jdb.
    CLASS: (it's just a object Room with a variable degre that I increment and decrement with two threads increase and decrease)
    public class Test{
         public static void main(String[] args){
              Room r = new Room();
              decrease de = new decrease(r);
              increase in = new increase(r);
              de.start();
              in.start();
    class Room {
         private volatile int degre=20;
         public void more(){
         degre += 4;
         public void less(){      
         degre -= 3;
    class decrease extends Thread{
    private Room room;
    public decrease(Room r){
              room =r;
    public void run(){
    try{ 
         while (!interrupted()){ 
              room.less();
    catch(InterruptedException e) {}
    class increase extends Thread{
    private Room room;
    public increase(Room r){
         room =r;
    public void run(){ 
         try{ 
              while (!interrupted()){
                   room.more();
    catch(InterruptedException e) {}
    JDB:
    Initializing jdb ...
    stop at Test:7Deferring breakpoint Test:7.
    It will be set after the class is loaded.
    runrun Test
    Set uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    >
    VM Started: Set deferred breakpoint Test:7
    Breakpoint hit: "thread=main", Test.main(), line=7 bci=30
    7 in.start();
    main[1] stop at room:16
    Set breakpoint room:16
    main[1] stop at room:20
    Set breakpoint room:20
    main[1] resume
    All threads resumed.
    >
    Breakpoint hit: "thread=Thread-0", room.less(), line=20 bci=0
    20 degre -= 3;
    Thread-0[1] threads
    Group system:
    (java.lang.ref.Reference$ReferenceHandler)0x10d Reference Handler cond. waiting
    (java.lang.ref.Finalizer$FinalizerThread)0x10c Finalizer cond. waiting
    (java.lang.Thread)0x10b Signal Dispatcher running
    Group main:
    (decrease)0x146 Thread-0 running (at breakpoint)
    (increase)0x147 Thread-1 running (at breakpoint)
    (java.lang.Thread)0x148 DestroyJavaVM running
    Thread-0[1] resume 0x147
    Thread-0[1]
    Breakpoint hit: "thread=Thread-1", room.more(), line=16 bci=0
    16 degre += 4;
    Thread-1[1] resume 0x147
    Thread-1[1]
    Breakpoint hit: "thread=Thread-1", room.more(), line=16 bci=0
    16 degre += 4;
    Thread-1[1] print degre
    degre = 24
    Thread-1[1] resume 0x146 //It's here the problem, thread 0x146 have to stop on the //next breakpoint of decrease but nothing happen
    Thread-1[1] resume 0x147
    Thread-1[1]
    Breakpoint hit: "thread=Thread-1", room.more(), line=16 bci=0
    16 degre += 4;
    Thread-1[1] clear
    Breakpoints set:
    breakpoint Test:7
    breakpoint room:16
    breakpoint room:20
    PS: I tried many other examples with other class and other kind of breakpoints, but, in any cases, on thread doesn't manage to resume. When I try with general resume (no specification of the thread), It works but it isn't interresting for me because I want to decide wich thread continue his execution.

    Hi,
    I have read the FAQ of the JMF.
    The problem was the jar files of the JMF were not in the JRE\BIN\EXT
    folder of the Java runtime!
    now it works!
    thanks
    Reg

  • Problems with the Proxy Programme--Please help

    Hi All,
    I have written a simple proxy server in the form of a servlet. I changed the proxy config of my browser to connect to this servlet hosted on the default context(http://localhost:8080) of the Tomcat 5.0.25 . Well , this servlet internally connects to the proxy of the corporate LAN . The logic that I have applied is as follows. The servlet gets the request from the client (ie the browser in this case) , extracts the headers and contents from the request, sets them to a new request that it forms and finally send this new request to the proxy. When the proxy responds, the servlet collects the response headers and contents adn writes them in its response. To sum up , this servlet transparently carries the requests and responses between the client(browser) and the corporate LAN proxy. Now the problem is this. Let's say , now I am accessing http://www.google.com.The browser sends a request to my servlet with the following headers as they are extracted by my servlet.
    ProxyServer:::>posting request
    ProxyServer:::>headerValue::> headerName = accept : headerValue=*/*
    ProxyServer:::>headerValue::> headerName = referer : headerValue=http://www.google.com/
    ProxyServer:::>headerValue::> headerName = accept-language : headerValue=en-us
    ProxyServer:::>headerValue::> headerName = proxy-connection : headerValue=Keep-Alive
    ProxyServer:::>headerValue::> headerName = user-agent : headerValue=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; UB1.4_IE6.0_SP1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)
    ProxyServer:::>headerValue::> headerName = host : headerValue=www.google.com
    ProxyServer:::>headerValue::> headerName = cookie : headerValue=PREF=ID=1be27c0a74f198ca:TM=1082058853:LM=1082058853:S=bu6ORrygzm8AUkm8
    ProxyServer:::>postRequest
    I set these headers into a new connection opened to the proxy and post a fresh request to the proxy,which, in turn responds with the following headers.
    ProxyServer:::>posted request successfully
    ProxyServer:::>writing response
    ProxyServer:::>writeResponse-->headerName = Proxy-Connection : headerValue = [close]
    ProxyServer:::>writeResponse-->headerName = Content-Length : headerValue = [257]
    ProxyServer:::>writeResponse-->headerName = Date : headerValue = [Tue, 13 Jul 2004 14:01:40 GMT]
    ProxyServer:::>writeResponse-->headerName = Content-Type : headerValue = [text/html]
    ProxyServer:::>writeResponse-->headerName = Server : headerValue = [NetCache appliance (NetApp/5.5R2)]
    ProxyServer:::>writeResponse-->headerName = Proxy-Authenticate : headerValue = [Basic realm="Charlotte - napxyclt2"]
    ProxyServer:::>writeResponse-->headerName = null : headerValue = [HTTP/1.1 407 Proxy Authentication Required]
    ProxyServer:::>writeResponse exiting
    ProxyServer:::>wrote response successfully
    I write these headers back to the client. According to what I was thinking, the client ie the browser would open a new dialog box asking for username/password owing to the presence of the "Proxy-Authenticate " header. But it does not happen that way. Rather the browser stops responsding and displays a blank page. Does anyone know why it happens this way? I am pasting the server prog below for everybody's reference.
    package server.proxy;
    //import all servlet related classes
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.io.*;
    import java.net.*;
    import server.resources.*;
    //My Proxy server --->Currently it is very simplea and relies on
    //other proxy servers of an already connected network.
    public class ProxyServer extends HttpServlet
    //stores the resource bundle
    private ServerResBundle resBundle = null;
    //checks for the mode of operation
    private boolean proxySet = false;
    private String proxy = null;
    //storing the original System out/err etc
    private PrintStream sysOutOrig = null;
    private PrintStream sysErrOrig = null;
    private InputStream sysInOrig = null;
    //initialise certain features that are required later
    public void init() throws ServletException
    try
    //initialise the resource bundle
    this.initResBundle();
    System.out.println("ProxyServer:::>res bundle init");
    //set the mode of operation
    this.setMode();
    System.out.println("ProxyServer:::>mode set");
    //set the system out and err --System.setOut etc
    this.setSystemOutErr();
    System.out.println("ProxyServer:::>in/out/err set");
    }//End try
    catch(Exception e)
    System.out.println("Exception in init..."+(e.getMessage()));
    throw new ServletException(e);
    }//Edn
    catch(Throwable e)
    System.out.println("Irrecoverable Error...");
    throw new ServletException(e);
    }//End
    }//End init
    //method to init the resource bundle;
    private void initResBundle()
    this.resBundle = ServerResBundle.getBundle();
    }//End
    //method to set the mode of the server--proxy or direct
    private void setMode()
    //read the target proxy property from the bundle and
    //if it is set,take that URL
    String temp = (String)(this.resBundle.getResource(ResKeys.PROXY_SERVER));
    if ( (temp != null) && (temp.length() > 0) )
    this.proxySet = true;
    this.proxy = temp;
    temp = null;
    }//End
    }//End
    //method to set the system out and err etc
    private void setSystemOutErr() throws Exception
    //keep a copy of the original system out and error
    this.sysOutOrig = System.out;
    this.sysErrOrig = System.err;
    try
    //read the options adn if they are set, take the values directly
    String newOutStr = (String)(this.resBundle.getResource(ResKeys.SYSTEM_OUT));
    String newErrStr = (String)(this.resBundle.getResource(ResKeys.SYSTEM_ERR));
    if ((newOutStr != null) && (newOutStr.length() > 0))
    System.setOut(new PrintStream(new FileOutputStream(new File(newOutStr),true),true));
    }//End if
    if ((newErrStr != null) && (newErrStr.length() > 0))
    System.setErr(new PrintStream(new FileOutputStream(new File(newErrStr),true),true));
    }//End if
    }//End
    catch(Exception e)
    //restore the stuff
    System.setOut(this.sysOutOrig);
    System.setErr(this.sysErrOrig);
    }//End
    }//End
    //this is where the proxy functionalities will be embedded
    public void service(HttpServletRequest req,HttpServletResponse resp)
    throws ServletException,java.io.IOException
    //conenction URL
    URL target = null;
    //conenction to the remote object
    URLConnection targetConn = null;
    //stores the OOS and the OIS
    ObjectOutputStream oos = null;
    ObjectInputStream ois = null;
    try
    //check for the mode of operation
    if (proxySet)
    URLConnection objects go through two phases: first they are created, then they are connected.
    After being created, and before being connected, various options can be specified
    (e.g., doInput and UseCaches). After connecting, it is an error to try to set them.
    Operations that depend on being connected, like getContentLength, will implicitly perform the connection,
    if necessary.
    //for the URL to the proxy
    target=new URL(this.proxy);
    //conenct to the proxy
    targetConn = target.openConnection();
    //set the details of the connectuon
    targetConn.setDoInput(true);
    targetConn.setDoOutput(true);
    targetConn.setUseCaches(false);
    // If true, this URL is being examined in a context in which it makes sense to allow user interactions such as popping up an authentication dialog. If false, then no user interaction is allowed
    targetConn.setAllowUserInteraction(true);
    //connect to the remote object
    // targetConn.connect();//call this only when all the request properties are set
    System.out.println("ProxyServer:::>posting request");
    //post the received request to the URL
    this.postRequest(targetConn,req);
    System.out.println("ProxyServer:::>posted request successfully");
    System.out.println("ProxyServer:::>writing response");
    //receive the response
    //write the received response to the client
    this.writeResponse(targetConn,resp);
    System.out.println("ProxyServer:::>wrote response successfully");
    }//End if
    else
    //currently this functionality is not supported
    throw new ServletException(
    (String)(this.resBundle.getResource(ResKeys.ERR_FUNC_NOTSUPPORTED)));
    }//End
    }//End try
    catch(Exception e)
    if(e instanceof ServletException)
    throw (ServletException)e;
    }//End
    if (e instanceof IOException)
    throw (IOException)e;
    }//End
    //wrap it up in ServletException
    throw new ServletException(e);
    }//End
    }//End
    //method to write the response back to the client
    private void writeResponse(URLConnection targetConn,HttpServletResponse resp)
    throws ServletException
    //get all the header fields from the response connection and set them to the
    //response of the servlet
    Map headerFields = null;
    Iterator headerFieldEntries = null;
    Map.Entry header = null;
    //stores the input stream to the conn
    BufferedReader brConn = null;
    //stores the writer to the response
    PrintWriter prResp = null;
    //checks if the proxy authentication needed or not
    boolean proxyAuthReqd = false;
    try
    //juste ensuring that the proxy authentication is reset
    proxyAuthReqd = false;
    if( (targetConn != null) && (resp != null) )
    //Returns an unmodifiable Map of the header fields.
    //The Map keys are Strings that represent the response-header field names.
    //Each Map value is an unmodifiable List of Strings that represents the corresponding
    //field values
    headerFields = targetConn.getHeaderFields();
    //Returns a set view of the mappings contained in this map
    Set temp = headerFields.entrySet();
    //Returns an iterator over the elements in this set
    headerFieldEntries = temp.iterator();
    if (headerFieldEntries != null)
    while (headerFieldEntries.hasNext())
    Object tempHeader = headerFieldEntries.next();
    if (tempHeader instanceof Map.Entry)
    header = (Map.Entry)tempHeader;
    Object headerName = header.getKey();
    Object headerValue=header.getValue();
    System.out.println("ProxyServer:::>writeResponse-->headerName = "+headerName+" : headerValue = "+headerValue);
    //do not select the key-value pair if both the key adn the value are null
    if ( ( headerName == null) && (headerValue == null) )
    continue;
    }//Enmd
    if (headerValue != null)
    List headerValList = null;
    if (headerValue instanceof List)
    headerValList = (List)headerValue;
    }//End
    if(headerValList != null)
    for (int i=0;i<headerValList.size();i++)
    Object headerValueStr = headerValList.get(i);
    if (headerValueStr instanceof String)
    //note that the header-key can not be null for addHeader
    //I have made this temporary provision to make the programme work.
    resp.addHeader(( (headerName==null)? ("null_header"+i) :(String)headerName),
    (String)headerValueStr);
    //check if the proxy authentication required or not
    if (((String)headerValueStr).
    indexOf(resp.SC_PROXY_AUTHENTICATION_REQUIRED+"") != -1)
    System.out.println("ProxyServer:::>writeResponse-->proxy auth needed");
    //proxy authentication is needed
    proxyAuthReqd = true;
    }//End
    }//Ednd of
    else if (headerValueStr == null)
    resp.addHeader(( (headerName==null)? null :(String)headerName),
    null);
    }//End
    }//End for
    }//End if
    }//End if
    }//End
    }//End while
    }//End if
    //get the writer to the client
    prResp = resp.getWriter();
    System.out.println("ProxyServer:::>writeResponse-->proxyAuthReqd="+proxyAuthReqd);
    //juste test a simple header
    System.out.println("Proxy-Authenticate = "+(resp.containsHeader("Proxy-Authenticate")));
    //if the proxy asks you for authentication,pass on the same to the client
    //from whom you have received the request.When this flag is true,the connection
    //is closed by the remotehost adn hence any attempt to open in input steram
    //results in an error ie IOException
    if (!proxyAuthReqd)
    //now get the content adn write it to the response too
    brConn = new BufferedReader(new InputStreamReader(
    targetConn.getInputStream()));
    String tempStr = null;
    while ((tempStr = brConn.readLine())!=null)
    prResp.println(tempStr);
    }//End while
    //close the connections
    brConn.close();
    }//End if
    else
    prResp.println("Proxy Authentication needed...");
    }//End
    //close the streams
    prResp.flush();
    prResp.close();
    }//End if
    System.out.println("ProxyServer:::>writeResponse exiting\n");
    }//End try
    catch(Exception e)
    throw new ServletException(e);
    }//End
    }//End
    //method to post request to the internet
    private void postRequest(URLConnection targetConn,HttpServletRequest req)
    throws ServletException
    //extract the header parameters and the body content from the incoming request
    //and set them to the new connection
    Enumeration reqHeaders = null;
    //reads the incoming request's content
    BufferedReader brReqRd = null;
    PrintWriter prResWt = null;
    //stores temp header names and values
    String headerName = null;
    String headerValue = null;
    try
    if( (targetConn != null) && (req != null) )
    reqHeaders = req.getHeaderNames();
    //extract a header adn set it to the new connection
    while (reqHeaders.hasMoreElements())
    headerName = (String)(reqHeaders.nextElement());
    headerValue = req.getHeader(headerName);
    targetConn.setRequestProperty(headerName,headerValue);
    System.out.println("ProxyServer:::>headerValue::> headerName = "+headerName+" : headerValue="+headerValue);
    }//End
    System.out.println("ProxyServer:::>postRequest\n");
    //establis the actual connection
    //calling this method bfore the above loop results in IllegalStateException
    targetConn.connect();
    //NOTE : try reading from and writing into OIS and OOS respectively
    //now read the contents and write them to the connection
    // brReqRd = req.getReader(); //this hangs for some reason
    brReqRd = new BufferedReader(new InputStreamReader(req.getInputStream()));
    System.out.println("Got the reader..brReqRd = "+brReqRd);
    if (brReqRd != null)
    String temp = null;
    //establish the printwriter
    // prResWt = new PrintWriter(targetConn.getOutputStream(),true);
    prResWt = new PrintWriter(targetConn.getOutputStream());
    System.out.println("trying to read in a loop from brReqRd.. ready="+(brReqRd.ready()));
    while( (brReqRd.ready()) && ((temp=brReqRd.readLine()) != null) )
    System.out.println("In while::>temp = "+temp);
    prResWt.println(temp);
    }//Emd while
    //close the streams adn go back
    brReqRd.close();
    prResWt.flush();
    prResWt.close();
    }//End
    }//End outer if
    System.out.println("ProxyServer:::>postRequest exiting\n");
    }//End try
    catch(Exception e)
    throw new ServletException(e);
    }//End
    }//End
    }//End

    Hi serlank ,
    Thanks for your reply. Well , I initially I thought of not pasting the code,as it was too long. But I could not help it,as I thought I must show in code what I exactly meant. That's why I followed a description of my problem with the code. You could probably have copied the code and pasted it in one of your favourite editors to take a look at it. Did you,by any chance, try to read it on the browser? And as regards reposting the same message, I can say that I did it as I felt the subject was not quite appropriate in the first posting and I was not sure as to how I could delete/alter the posting. I am not asking for a code-fix,but some suggestions from some one who might ever have come across such a thing.Anyway, lemme know if you have any idea on it. Thanks...

  • A problem with the BBM Bold9900 please help me !!

    Hey All , i have a probem with my BBM , when i write something in personal message my conacts can't see what i wrote and when i put my status busy it shows that i'm avaliable, so please i want you to help me !!!!!!!!!!

    Answered in your original thread.
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/a-problem-with-the-BBM/m-p/139...
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Have problem with K7t-266pro2-A NEED HELP !!

    HI, I have a MSI K7T266pro2-a and I just got it yesterday. Everything works fine, except for one thing, which is my floppy disk drive. It detects it, however, it wont scan any of the diskettes i insert. Also when i goto my floppy drive it has an error saying some error that it cant read it or something then asks to retry, abort, fail and it keeps going like that. How do i fix this problem with the Floppy drive, Thanks.

    Have you tested another floppy drive? How bout another cable? For some reason, I have had to change floppies depending on the mobo because some I have had don't like some floppies I have had.

  • Problem with CPU?? need help badly

    Hey guys, its been a sad two days for me.. I have the MSI k7T266 PRO, and yesterday while i was moving tires into my apartment, one of them fell hard on the floor and my computer shifted, i opened the pc to find out that the CPU fan has shifted from the cpu, and the cpu smelled kind of burnt..
    Anyway i had an ATHLON XP 2200 i think...
    Anyway i went to compusa today and got a new CPU, an AMD 2400+ SEMPRON PROCESSOR. i installed it, put my huge heatsink,fan, and powered up.... NO SHOW..
    The Diagnostic LED's show 4 RED lights,(which according to the manual means a problem with the CPU), it was showing 4 red lights with my old blown cpu and its still showing 4 red lights with the new cpu.. im getting frustrated..
    Anyway i tried resetting the bios using the JBAT jumper, it still doesnt work..
    I know the new CPU is good because i can tell a blown CPU..
    So can anyone help me out??

    Hello,
    http://www.msi.com.tw/program/search/ser/SerConProRes.php?keyword=k7t&kind=
    Which one is yours?
    The Sempron 2400+ CPU has a 166Mhz FSB.
    Your board does not support this CPU.

  • Having problems with menu bar! NEED HELP

    I'm having some serious problems with the finder menu bar. When I click on the blue apple, it won't show anything! It just highlights the blue apple without a pull down menu. Same goes for the Window pulldown menu. Also, under finder. when I click empty trash, or do the equivilent keyboard shortcut, it won't empty the trash. I have to ctrl click on the trashcan and empty it that way. Please help me fix my finder, or else I'm going to have to reformat and start ALL over which I really don't want to do. Thanks!
    PS This is on a Dual 1.42GHZ G4 Tower w/ Radeon 9800 Pro graphics card and 2GB (4X512mb) ram. I also updated to 10.4.7 from 10.4.6 to see if that fixed the problem, and no dice! Thanks!

    Well if the problem occurs in two accounts then it is systemic. When did the problem begin? Was it with a software update, sch as from 10.4.6 to .7? If so, try reapply the update using the Combo updater.
    IF that doesn't work you can re-install 10.4 using the Archive and Install method, which does not wipe your disk, does not require reinstalling all your applications etc, However, BACK UP YOUR DATA FIRST, and read up on the A&I before you do it.
    Hope this helps
    Regards
    TD

  • Problem with My photo stream need help.

    Hi.I just use my photo stream with icloud control panel.First it's work,my pictures upload automatically to my pc but now when I take new photos,they are not sent.
    It was happened after I had deleted all my photo stream but my setting still same. I don't know the reason and need help.Thank regards.

    In my iPhone,at first my photo stream still uploaded but now when I took a photos,it didn't upload to my photo stream.

  • Problems with the license N4S Linux NW 7.0 Testdrive MaxDB

    Dear all,
    I have a curious behaivor with my testdrive. On every OS start, the system has a different HW-Key!?
    Now I've requested and installed after the installation the license key for the first HW-Key. Successfully installed the
    license key via transaction slicense. Now after a second restart of the os, I've a second HW-Key. Now the first license is not working. If I want to log in with ddic on 001 client there comes a error message up: "error in license check".
    If I want to install the seond liense which I got for the second HW-Key, it doens't work. After a third restart of the os I've a another HW-Key.
    Strange??
    Kind regards,

    HI
    the HW Key is amongst other things generated using the MAC address of the first network device. It seems that after reboot, your first network device (first to appear with ifconfig) does have another MAC address. If so, the HWkey changes every time. This is an issue with your network start scripts ...
    Thanks
      Hannes

  • Creative Cloud for teams - a problem with the license.

    Hi, I bought on 25.04.2013 CC licenses for teams (for 12 months).
    In my account (in subscriptions) I can see the end date 02/06/2014 (only 9 months). According to the license shall be for 12 months to 24/04/2014. Why?
    Regards

    Hi Gie-dee,
    Can you post a screen shot of the misinformation and mask out any private information?
    Thanks,
    -Dave

  • Huge problem with the soundblaster products need h

    Hello guys and gals,
    I am now lost on what to do I have done everything to counter posting on this forum. My problem is that my sound doesn't work at all. I will put it in the story that happened below.
    I was playing Counter-Strike on spring break and suddenly I lost sound. I check to see if I hit mute but I didn't. I ended checking device manager and it said I didn't have my Creative Soundblaster Audigy?LS installed. It showed up as Unknown Device in Device Manager. I tried uninstalling all the drivers and reinstalling them but It said it needs to identify the card and to make sure it's plugged in which it is. So I tried to switch PCI Slots, and that did absolutely nothing. I tried switching to my oldest dri've which had the same card drivers installed but yet no sound while saying it can't identify it. So I thought it was just the card itself. I went to go get a new one and the one I got was Creative SoundBlaster X-Fi Fatalty XtremeGamer Professional Series. I put it into my PCI Slot and it did the same exact thing. I noticed that the LS had a blue cord for the?four pin?CD thing on the motherboard. I put that into my new sound card and it popped up as MultiMedia Manager or something very close to that, I was filled with joy. So I could install my drivers for the sound card. After It was done checking I went to device manager and it was there. Then I rebooted and wasn't in there. I thought it was something with the harddri've so I reformatted another dri've and installed windows on it and everything. It let me install the drivers and it showed up in the sound, and audio devices as Creative Soundblaster X-FI. I go to reboot and after I came back to check if it was there and it wasn't. I cehck msinfo and it wasn't anywhere in there. I got everest program that is like msinfo but a lot more detailed. It said both pci slots aren't in use but I know it's in use cause the red LED light that lights up The F symbol is on and running. I even tried the ASUS probe program and checked everything but it was a failure. I am getting extremely aggrivated. I don't ever want to give up on creative since I have a zen which is cool and I have always trusted their sound cards. If anyone has any idea on what to do please tell me.
    Or it could be that the motherboard was programmed to die after 90 days :P but I doubt it.
    For the love of god I need help I checked the entire web. EVERYWHERE even the FAQ didn't help me. Please give me some ti
    ps.
    Oh if it is only to run on service pack 2 tell me that since I think I have regular windows xp professional.
    Message Edited by SuperSirius on 03-30-2008 02: PM

    Just because something is wrong and you wait minute and get no response doesn't mean they suck. Your the one who should be shot and pissed on. I like creative. I've always trusted their products.

  • I have a problem with the sattalite signals , need...

    hello everybody ,
    I have a problem with my nokia N95 8g pertaining the sattelite signal for the GPS as there is no sattelite singal at all , it used to be OK before but suddenly there is no singals , I have formatted the mobile but there was no benifit .
    Could u pls. help me as I am really deseprate cause I used to use the maps frequently before this problem , and I tried all the ways but no benifit .
    Thanks n Rgrds.
    THEWOLF777

    Delete the ipod updater-redownload it from Apple.
    The file you downloaded became corrupted and will not work.

Maybe you are looking for

  • No such method error when launching the Interactive form

    Hi Experts, I have developed a simeple Java Webdynpro application and added an Interactive form without any controls in it. Created the context with one value node and a binary value attribute. I have assigned  value node to datasource and binary att

  • Why am I having major graphical glitches when running windows 7 on my mid 2010 mac book pro

    I installed windows 7 on my mid 2010 macbook pro 13". It does not seem like I can tie it to any specific update or driver update. Has any one else noticed this. I found switching to the basic theme has stop the start menu and bottom task bar from gli

  • IPad won't back up

    I've never had an issue with my iPad until today. I had to replace my hard drive - the tech did it and migrated all my stuff onto my new HD. At first I had an issue with the iPad syncing and "step 2 or 4 calendars", but seemed to have fixed it. Now,

  • How to fill the SAP router String :

    Dear friends , During GUI installation 1 field is SAProuter String so what i fill here . Please guide us for SAProuter String . i) what is SAProuter String . ii)What is use of SAProuter String. Thanks & Regard SAURAV KUMAR

  • Checking Condition

    Hi Experts,   I am checking a condition in lfa1 table field lovem depending on the result X or not.  I need pass a value 1 or 0 to a field in output file structure in that i am passing all fields from one z table zvend along with one extra field to c