Can't execute install program.. setup.exe

hi, i'm testing my handheld PC with oracle 9lite 5.0.1..
After i packaged mobile application for HPC CE 3.0 strong arm..
i dowonload setup.exe to my PDA and execute setup.exe..
but i can't execute that install file..
message says..
"It's not proper Windows CE application.."
could anyone help me out..??
thanks advance..

SETUP.EXE is a WIN32 x86 (PC version) program. It does not run on PocketPC.
You can run this on your PC and it will register necessary files with
ActiveSync. Your Next ActiveSync session will install Oracle9i Lite on
your WinCE device.

Similar Messages

  • Can the WinOnx install fifa14 setup exe and can i play it on my mac?

    ??

    An exe file is an executable for Windows. It will not run on the Mac OS. You do have the option to install Windows on your computer using BootCamp and it would then install. Then the question would become does the hardware meet the game's minimum requirements. If it requires an Nvidia or AMD GPU the answer would be no. And I expect that it does require more than Intel's integrated video.

  • Why does 'You can't open the application "setup.exe" because Microsoft Windows applications are not supported on OS X.' pop up whenever i try to download the latest flash player?

    whever i try to access websites, most of them work but facebook, youtube, my school email, sometimes even google, and alot other websites wont work for me and will tell me i need to update the lastest Flash Player. but when i try to download it, it says 'You can’t open the application “setup.exe” because Microsoft Windows applications are not supported on OS X.' what does that even mean?? This happens on safari, google chrome and i downloaded firefox and it worked for a couple of hours and then stopped working again.
    please help, thanks in advance.

    1. Install Adobe Flash Player from Adobe site.
        http://get.adobe.com/flashplayer/
       Download it first. Click Safari in the menubar and select “Quit Safari”.
        Follow the prompts and install it.
        Restart computer. Relaunch Safari.
    2.  Allow  Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.

  • I am trying to install my CS4 Suite onto new PC with Windows 8.  It installed Photoshop but nothing else.  It is asking me to "Install with 'setup.exe'"  Which i dont think is on there.  Is there a way around this?  Thanks in advance.

    I am trying to install my CS4 Suite onto new PC with Windows 8.  It installed Photoshop but nothing else.  It is asking me to "Install with 'setup.exe'"  Which i dont think is on there.  Is there a way around this?  Thanks in advance.

    Run the cleaner tool and reinstall with sufficient user privileges and security stuff turned off. Your install went wrong because you didn't consider this.
    Mylenium

  • I'm trying to load photoshop elements 12 on my mac os x and when i click setup.exe i get :    You can't open the application "Setup.exe" because Microsoft Windows applications are not supported on OS X.

    i'm trying to load photoshop elements 12 on my mac os x and when i click setup.exe i get : You can’t open the application “Setup.exe” because Microsoft Windows applications are not supported on OS X.  The premiere elements 12 out of the same box loaded just fine.

    An .exe file means you have the windows version. Go get the mac version:
    Download Photoshop Elements products | 12, 11, 10
    but I hope you have a mac serial number.

  • Can someone execute this program?

    Can someone execute this program for me and tell me if it works correctly? My DOS is acting funny.
    look for these things:
    - accepts input from keyboard and places them into an array
    - continues to accept names until a blank name is entered
    - array can contain up to 15 names
    - after all names are entered, it displays the contents of the array
    and writes them to a file
    - output should be in 2 columns
    if you see a problem, please tell me how to fix it.
    import java.io.*;
    * the purpose of this program is to read data from the keyboard
    * and put it into a sequential file for processing by ReadFile
    * @author Maya Crawford
    public class Lab0
    * this function will prompt and receive data from the keyboard
    * @return String containing the data read from the keyboard
    * @param BufferedReader that is connected to System.in
    */ (keyboard)
    public static String getData(BufferedReader infile)
    throws IOException
    System.out.println("enter a name");
    return infile.readLine();
    * this is the main program which will read from the keyboard and
    * display the given input onto the screen and also write the data
    * to a file
    * @param Array of Strings (not used in this program)
    public static void main(String[] args)
    throws IOException
    int i;
    String[] outString = new String[16];
    DataOutputStream output=null;
    // this code assigns the standard input to a datastream
    BufferedReader input= new BufferedReader(new InputStreamReader(System.in));
    // this code opens the output file...
    try
    output= new DataOutputStream(new FileOutputStream("javaapp.dat"));
    // handle any open errors
    catch (IOException e)
    System.err.println("Error in opening output file\n"
    + e.toString());
    System.exit(1);
    // priming read......
    for(i=0;i<outString.length;i++)
    outString=getData(input);
    // this is the loop to continue while nnonblank data is entered
    while (!outString.equals(""))
    for(i=0;i<outString.length;i++)
    outString[i]=getData(input);
    outString[i] = input.readLine();
    System.out.println("Name entered was:"+ outString[i]);
    output.writeBytes(outString[i]+"\r\n");
    int rcol=(outString.length+1)/2;
    for(i=0;i<(outString.length)/2;i++)
    System.out.println(outString[i]+"\t"+outString[rcol++]);
    // flush buffers and close file...
    try
    output.flush();
    output.close();
    catch (IOException e)
    System.err.println("Error in closing output file\n"
    + e.toString());
    // say goodnight Gracie...
    System.out.println("all done");

    Ok, here is what I came up with. I commented most of what I changed and gave a reason for changing it. My changes aren't perfect and it still needs to be tweeked. When you run the program you have to hit the enter key every time once before you type a name. When you are done typing names hit the enter key twice and it will output the names entered into the array. Like I said, it isn't perfect, and that part you will need to fix.
    import java.io.*;
    * the purpose of this program is to read data from the keyboard
    * and put it into a sequential file for processing by ReadFile
    * @author Maya Crawford
    public class Lab0
         * this function will prompt and receive data from the keyboard
         * @return String containing the data read from the keyboard
         * @param BufferedReader that is connected to System.in
         */ //(keyboard)
         //On the above line where you have (keyboard), it wasn't commented out in your
         //program and it was throwing a error.
         public static String getData(BufferedReader infile)
         throws IOException
              System.out.println("enter a name");
              return infile.readLine();
         * this is the main program which will read from the keyboard and
         * display the given input onto the screen and also write the data
         * to a file
         * @param Array of Strings (not used in this program)
         public static void main(String[] args)
         throws IOException
              int i;
              String testString; // Created to hold the string entered by the user, because your
                                 // outString array wasn't working for that.
              String[] outString = new String[16];
              DataOutputStream output=null;
              // this code assigns the standard input to a datastream
              BufferedReader input= new BufferedReader(new InputStreamReader(System.in));
              // this code opens the output file...
              try
                   output= new DataOutputStream(new FileOutputStream("javaapp.dat"));
              // handle any open errors
              catch (IOException e)
                   System.err.println("Error in opening output file\n"
                   + e.toString());
                   System.exit(1);
              // priming read......
              testString = " ";  // Initialize testString
              int placeMark = 0; // to input the String entered by the user into the outString
                                 // array, it needs to know which position to enter it into.
              while (!testString.equals(""))
                   testString=getData(input);
                   testString = input.readLine();
                   System.out.println("Name entered was:"+ testString);
                   // Put the testString into the outString[] array.
                   // A lot of the time when you used outString you forgot to use the [x] to indicate
                   // which position you wanted to access.
                   outString[placeMark] = testString;
                   output.writeBytes(testString+"\r\n");
                   placeMark++;
            // Created a do/while loop to display the list of outString.
              int nextEntry = 0;
              do
                   System.out.println(outString[nextEntry]);
                   nextEntry++;
              }while(!outString[nextEntry].equals(""));
              // flush buffers and close file...
              try
                   output.flush();
                   output.close();
              catch (IOException e)
                   System.err.println("Error in closing output file\n"
                   + e.toString());
              // say goodnight Gracie...
              System.out.println("all done");
    }

  • How can I build Instalation Program for java applet?

    I want to build on line internet game based on java applet.
    Uset must instull the game to his computer.And this program mast Connect to the server when user enter
    to this application.Not from explorer,but from my application,like when i enter to ICQ.
    My questions:
    How can i build instalation program in java?
    How can i connect to the server when user enter into my game not from explorer but from game?
    Thanks,Maya.

    Hi Maya
    First of all an Applet does not have to be "installed" as you would with a normal application. The browser handles the install and execution of the applet.
    Check out this URL for more about applets:
    http://web2.java.sun.com/docs/books/tutorial/applet/index.html
    On the subject client/server pairs - see:
    http://web2.java.sun.com/docs/books/tutorial/networking/sockets/index.html
    If you decide to make the game an application instead check out Sun's WebStart - under the products section.
    That's about all the help I can give you.
    Programming a game is a complicated subject - I am doing one too:
    http://hjem.get2net.dk/mhjembaek/armageddon/
    Kind reg,
    Hjembaek

  • Cannot install trial, setup.exe launches but no window opens

    I have a license of Dreamweaver CS4 (it's registered) and I wanted to install it. I however can't find the disk so I downloaded a trial (where I would supposedly be able to convert it to a registered version). I downloaded the trial using the Akamai Download Manager to my desktop, and ran the Executable to extract files from the .7z. It launched "setup.exe". It required UAC permissions, so I gave it UAC permissions.The problem I am having here is that the installation wizard "setup.exe" is not appearing in the GUI, even though the process is running (I can see it in the task manager, it's running, screenshot attached). It would nice if you knew a way to fix this problem, and thanks in advance for your help.

    Are you re-installing on the same system or installing on a new system.  If it is a re-install there could be left-over files from the original install that are causing issues.  In this case you would need to run the clean script before installing ( Adobe - Adobe CS4 Clean Script ).  That will wipe all traces of the Adobe software, including serial numbers.
    If not you may need to contact Adobe technical support.  They do offer free installation help for all users.  They will need to know more about your system so be prepared for those questions (ie; Windows Vista/7?, 32 or 64 bit?, etc.). 

  • Can't find installed programs

    I installed some gtk engines but I can't it find in menu.I am using gnome.Is there some way to list all installed  programs ,something like menu maker in OpenBox.

    GTK engines are not executable programs of the sort you would find in the menu -- they are just libraries that are used by themes to display things.  Each installed application that would show up in the menu has it's *.desktop file in /usr/share/applications.  Not all executable programs come with *.desktop files, though you can always create one if you need it.

  • How can I disable installed program on public computer?

      I need to disable installed program on public computer.
      I just wanted to use the after effect and I installed on public computer.
      But I can not access to public computer anymore.
      Please help me.
      I still have the rest of days to use trial version.

    If you installed a trial on a public computer and you have no access to it there is not much you can do about it.

  • How can i execute java program in JSP ?

    att
    thanks

    try to use:
    Runtime.getRuntime().exec("command line");
    where "command line" is your command to execute your program.

  • How Can i Remove installed program on my MacBook

    Sombody tell me How can i remove installed Programm on my MacBook

    Depends entirely on the application.
    If it was installed in the first place by dragging it's icon to the Applications folder, then dragging to the trash should be all that's needed. It may leave a .plist file, but that's not going to do any harm.
    If it was installed using an Installer, then it usually means there will be support files in various places, and an uninstaller is best used to remove all the files. Often the Installer will have an uninstall option (so keep the .dmg downloads), but some apps will need you to go to the vendor's website for one (several Adobe apps fall in this category).
    If no uninstaller is available, there are third-party programmes to help you find all the various files associated with an app.
    AppDelete and AppZapper are two that spring to mind. These can have variable success depending on how the individual files are named, but in general do a reasonable job.

  • Why can't I open the setup.exe file to install newer verion of Firefox?

    I am using firefox 3.6.25. When I try to download and install the latest version a dialog box opens with the option to "save' or "cancel". There is no option to "open" the executable file.

    -> [[Installing Firefox on Windows]]
    Check and tell if its working.

  • I can't execute java program.

    when we execute our java application,
    we met this fatal error.
    my environment of execution are
    - used jnlp(webstart)
    - swing program
    - JRE (1.6.0_22-b04)
    when it happened error, it created hs_err_pidxxxx.log file.(xxxx means sequence).
    of caurse, we try to execute again, we can do it successfully.
    this is file contents
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000091, pid=11360, tid=11164
    # JRE version: 6.0_22-b04
    # Java VM: Java HotSpot(TM) Client VM (17.1-b03 mixed mode windows-x86 )
    # Problematic frame:
    # C 0x00000091
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x47f80800): JavaThread "Thread-3" [_thread_in_native, id=11164, stack(0x47d10000,0x47d50000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000091
    Registers:
    EAX=0x47d4f824, EBX=0x47f80918, ECX=0x47d4f7d4, EDX=0x47d4f820
    ESP=0x47d4f77c, EBP=0x00000001, ESI=0x47f98cc8, EDI=0x47f80800
    EIP=0x00000091, EFLAGS=0x00010202
    Top of Stack: (sp=0x47d4f77c)
    0x47d4f77c: 6d114c04 47f80918 47f98cc8 00000004
    0x47d4f78c: 47d4f7d4 47d4f824 47d4f820 ffa0a0b4
    0x47d4f79c: 47f80800 431fe380 431fe380 47d4f7fc
    0x47d4f7ac: 0095e772 47f80918 47d4f82c 47d4f828
    0x47d4f7bc: 47d4f824 47d4f820 ffa0a0b4 00000070
    0x47d4f7cc: 0000005b 00000092 00000001 0000001e
    0x47d4f7dc: 47d4f7dc 431fe380 47d4f82c 431ff1a8
    0x47d4f7ec: 00000000 431fe380 00000000 47d4f80c
    Instructions: (pc=0x00000091)
    0x00000081:
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005]
    Stack: [0x47d10000,0x47d50000], sp=0x47d4f77c, free space=fd47d4ec3ck
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x00000091
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.java2d.windows.GDIRenderer.doFillRect(Lsun/java2d/SurfaceData;Lsun/java2d/pipe/Region;Ljava/awt/Composite;IIIII)V+0
    j sun.java2d.windows.GDIRenderer.doFillSpans(Lsun/java2d/SunGraphics2D;Lsun/java2d/pipe/SpanIterator;)V+67
    j sun.java2d.windows.GDIRenderer.draw(Lsun/java2d/SunGraphics2D;Ljava/awt/Shape;)V+39
    j sun.java2d.pipe.PixelToShapeConverter.drawLine(Lsun/java2d/SunGraphics2D;IIII)V+22
    j sun.java2d.pipe.ValidatePipe.drawLine(Lsun/java2d/SunGraphics2D;IIII)V+19
    j sun.java2d.SunGraphics2D.drawLine(IIII)V+10
    j javax.swing.plaf.basic.BasicProgressBarUI.paintDeterminate(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+218
    j javax.swing.plaf.basic.BasicProgressBarUI.paint(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+22
    j com.incors.plaf.kunststoff.KunststoffProgressBarUI.paint(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+3
    j javax.swing.plaf.ComponentUI.update(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+32
    j javax.swing.JComponent.paintComponent(Ljava/awt/Graphics;)V+26
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+290
    j kosmos.basex.util.KosmosUtils.paintImmediately(Ljava/awt/Component;)V+7
    j kosmos.basex.ui.dialog.ProgressDialog.setProgress(I)V+36
    j kosmos.KosmosApp.Progress(Ljava/lang/String;)V+47
    j kosmos.KosmosApp.createUI()Z+823
    j kosmos.KosmosApp$1uitask.run()V+520
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x47fa8800 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=11120, stack(0x48830000,0x48870000)]
    0x48017800 JavaThread "TimerQueue" daemon [_thread_blocked, id=4844, stack(0x486f0000,0x48730000)]
    0x47fda800 JavaThread "Thread-5" [_thread_blocked, id=8656, stack(0x486b0000,0x486f0000)]
    0x47fd6c00 JavaThread "Thread-4" [_thread_blocked, id=9784, stack(0x48660000,0x486a0000)]
    0x47f86800 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=8336, stack(0x483c0000,0x48400000)]
    =>0x47f80800 JavaThread "Thread-3" [_thread_in_native, id=11164, stack(0x47d10000,0x47d50000)]
    0x47364c00 JavaThread "Image Animator 0" daemon [_thread_blocked, id=9872, stack(0x47cb0000,0x47cf0000)]
    0x4735a400 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=11200, stack(0x47c70000,0x47cb0000)]
    0x47352400 JavaThread "APP THREAD" [_thread_blocked, id=10268, stack(0x47c30000,0x47c70000)]
    0x4731c000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=10296, stack(0x47540000,0x47580000)]
    0x4731ac00 JavaThread "AWT-Shutdown" [_thread_blocked, id=8412, stack(0x47500000,0x47540000)]
    0x47317400 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=12040, stack(0x474c0000,0x47500000)]
    0x46e47c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=10972, stack(0x471b0000,0x471f0000)]
    0x46e3d400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=8952, stack(0x47160000,0x471b0000)]
    0x46e33800 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=6884, stack(0x47120000,0x47160000)]
    0x46e2cc00 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=12020, stack(0x470e0000,0x47120000)]
    0x46e2a800 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=10376, stack(0x470a0000,0x470e0000)]
    0x46e1b000 JavaThread "Attach Listener" daemon [_thread_blocked, id=10472, stack(0x46fa0000,0x46fe0000)]
    0x46e37800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=12052, stack(0x46f60000,0x46fa0000)]
    0x46e09000 JavaThread "Finalizer" daemon [_thread_blocked, id=10348, stack(0x46f20000,0x46f60000)]
    0x46e04400 JavaThread "Reference Handler" daemon [_thread_blocked, id=6568, stack(0x46ee0000,0x46f20000)]
    0x00847800 JavaThread "main" [_thread_blocked, id=11564, stack(0x008e0000,0x00920000)]
    Other Threads:
    0x46e01800 VMThread [stack: 0x46e90000,0x46ee0000] [id=9788]
    0x46e49c00 WatcherThread [stack: 0x471f0000,0x47240000] [id=8676]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 314560K, used 117447K [0x029d0000, 0x17f20000, 0x17f20000)
    eden space 279616K, 42% used [0x029d0000, 0x09c81c48, 0x13ae0000)
    from space 34944K, 0% used [0x13ae0000, 0x13ae0000, 0x15d00000)
    to space 34944K, 0% used [0x15d00000, 0x15d00000, 0x17f20000)
    tenured generation total 699072K, used 0K [0x17f20000, 0x429d0000, 0x429d0000)
    the space 699072K, 0% used [0x17f20000, 0x17f20000, 0x17f20200, 0x429d0000)
    compacting perm gen total 12288K, used 10980K [0x429d0000, 0x435d0000, 0x469d0000)
    the space 12288K, 89% used [0x429d0000, 0x43489060, 0x43489200, 0x435d0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00424000      C:\Program Files\Java\jdk1.6.0_22\bin\javaw.exe
    0x7c930000 - 0x7c9ce000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c92f000      C:\WINDOWS\system32\kernel32.dll
    0x77f50000 - 0x77ff8000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77d80000 - 0x77e12000      C:\WINDOWS\system32\RPCRT4.dll
    0x77ef0000 - 0x77f01000      C:\WINDOWS\system32\Secur32.dll
    0x77cf0000 - 0x77d7f000      C:\WINDOWS\system32\USER32.dll
    0x77e20000 - 0x77e68000      C:\WINDOWS\system32\GDI32.dll
    0x762e0000 - 0x762fd000      C:\WINDOWS\system32\IMM32.DLL
    0x62340000 - 0x62349000      C:\WINDOWS\system32\LPK.DLL
    0x73f80000 - 0x73feb000      C:\WINDOWS\system32\USP10.dll
    0x77bc0000 - 0x77c18000      C:\WINDOWS\system32\msvcrt.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\msvcr71.dll
    0x6d8a0000 - 0x6db47000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\client\jvm.dll
    0x76af0000 - 0x76b1b000      C:\WINDOWS\system32\WINMM.dll
    0x6d850000 - 0x6d85c000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\verify.dll
    0x6d3d0000 - 0x6d3ef000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\java.dll
    0x6d330000 - 0x6d338000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\hpi.dll
    0x76ba0000 - 0x76bab000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d420000 - 0x6d449000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\jdwp.dll
    0x6d740000 - 0x6d746000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\npt.dll
    0x6d890000 - 0x6d89f000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\zip.dll
    0x6d2b0000 - 0x6d2b7000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\dt_socket.dll
    0x719e0000 - 0x719f7000      C:\WINDOWS\system32\WS2_32.dll
    0x719d0000 - 0x719d8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71980000 - 0x719bf000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76ef7000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f60000 - 0x76f68000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3c000      C:\WINDOWS\system32\WLDAP32.dll
    0x64000000 - 0x64025000      C:\Program Files\Bonjour\mdnsNSP.dll
    0x76d10000 - 0x76d29000      C:\WINDOWS\system32\Iphlpapi.dll
    0x76f70000 - 0x76f76000      C:\WINDOWS\system32\rasadhlp.dll
    0x65cb0000 - 0x65d06000      C:\WINDOWS\system32\hnetcfg.dll
    0x719c0000 - 0x719c8000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d0b0000 - 0x6d1fa000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\awt.dll
    0x72f50000 - 0x72f76000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76970000 - 0x76aad000      C:\WINDOWS\system32\ole32.dll
    0x77160000 - 0x77263000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\COMCTL32.dll
    0x77e70000 - 0x77ee6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x5a480000 - 0x5a4b8000      C:\WINDOWS\system32\uxtheme.dll
    0x6d2e0000 - 0x6d32f000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\fontmanager.dll
    0x47580000 - 0x4759e000      C:\WINDOWS\SoftCamp\SDS\DSEDCon.dll
    0x7d5a0000 - 0x7dd9c000      C:\WINDOWS\system32\SHELL32.dll
    0x77bb0000 - 0x77bb8000      C:\WINDOWS\system32\VERSION.dll
    0x47450000 - 0x4745e000      C:\WINDOWS\DSIpcAg.dll
    0x475a0000 - 0x475a8000      C:\WINDOWS\system32\SXTracer.dll
    0x73d10000 - 0x73e0e000      C:\WINDOWS\system32\MFC42.DLL
    0x61300000 - 0x6130d000      C:\WINDOWS\system32\MFC42LOC.DLL
    0x477d0000 - 0x477f6000      C:\WINDOWS\WRMK.dll
    0x74660000 - 0x746ab000      C:\WINDOWS\system32\MSCTF.dll
    0x75110000 - 0x7513e000      C:\WINDOWS\system32\msctfime.ime
    0x47960000 - 0x479c9000      C:\WINDOWS\system32\IMKR12.IME
    0x770d0000 - 0x7715b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989\MSVCR80.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989\MSVCP80.dll
    0x4b9e0000 - 0x4bb86000      C:\WINDOWS\system32\d3d9.dll
    0x6de50000 - 0x6de56000      C:\WINDOWS\system32\d3d8thk.dll
    0x6d6b0000 - 0x6d6c3000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\net.dll
    0x6d4f0000 - 0x6d515000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\jpeg.dll
    0x47cf0000 - 0x47d00000      C:\Program Files\NATEON\BIN\NateOnHook40u.dll
    0x6d6d0000 - 0x6d6d9000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\nio.dll
    0x6c000000 - 0x6c02a000      C:\WINDOWS\SoftCamp\SDS\ASCore.dll
    0x6d250000 - 0x6d273000      C:\Program Files\Java\jdk1.6.0_22\jre\bin\dcpr.dll
    VM Arguments:
    jvm_args: -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:9607 -Xms1G -Xmx1G -Xss256K -Dlog4j.configuration=file:D:/Project_Work/etc/log4j.xml -Dfile.encoding=MS949
    java_command: kosmos.KosmosApp yslee bnp
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_22
    CLASSPATH=.;C:\Program Files\Java\j2re1.4.2_11\lib\ext\QTJava.zip
    PATH=C:\Program Files\Java\jdk1.6.0_22\jre\bin;C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ESTsoft\ALZip;C:\Program Files\Java\jdk1.6.0_22\bin;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\ESTsoft\ALZip;C:\Program Files\IDM Computer Solutions\UltraEdit\
    USERNAME=20964
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 11, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 15 stepping 11, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 2062180k(626912k free), swap 4004456k(1282796k free)
    vm_info: Java HotSpot(TM) Client VM (17.1-b03) for windows-x86 JRE (1.6.0_22-b04), built on Sep 15 2010 00:56:36 by "java_re" with MS VC++ 7.1 (VS2003)
    time: Tue Jan 11 16:39:14 2011
    elapsed time: 43 seconds

    thank you for your reply.
    I tried to update my video driver, but also happened this.
    my client told me to update registry authorization of javaSoft to Administrator's authorization.
    so I will try to do this.
    I will update this to you.

  • Ideapad U160: Can´t execute the Bios Win64V14.exe

    Hello,
    when I start the Win64V14.exe (Last modified date 2011-10-26)
    at my Win7Pro 64-bit System I only get the following error-massage:
              Driver(WDM) Init Fail!(0x130)
    http://www.myimg.de/?img=ScreenshotErrorDialog0bd79.jpg
    I also tried to execute the Bios-file in secure mode.... with no success.
    Would be thankful when someone could answer with any hints

    Yeh, you're right, the version is the same. The date is newer.  
    It won't let us install it if the version is the same, but it still should get past the installer which right now doesn't happen. I just tried it again, same thing.
    Dave
    T430u, x301, x200T, x61T, x61, x32, x41T, x40, U160, ThinkPad Tablet 1838-22R, Z500 touch, Yoga Tab 2 Windows 8.1, Yoga Tablet 3 Pro
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    If someone helped you today, pay it forward. Help Someone Else!
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

Maybe you are looking for

  • Why don't I get all my notifications?

    i stopped receiving notifications from the CNN app after I updated to iOS 8.0.2. Notifications are turned on for CNN and I know that my wife is receiving notifications from CNN on her iPhone 5 with iOS 7.1.2 installed. Is there something I can do to

  • ACPI problem, dell 4100 install, senthikumar's solution

    I have had this problem while booting up from the solaris 8 boot diskette: ACPI tables not in reclaim memory. prom_panic: kmem_free block already free. Entering boot debugger: Another had this same issue and the solution from Senthikumar of Tech Supp

  • T410 hangs for a few seconds

    My T410 hangs for ~2 seconds at random intervals from 3 minutes to 30 minutes. Cursor freezes whether using wired or wireless mouse. Any ideas of where to start my problem solving? -Ed

  • What is Data Modeler?

    Hi Pals What is Data Modeler in ABAP. We use SD11 for it. But Why/Where/How we are using the Data Modeler? Plz provide a clear view n some tutorials also. Thx Aalphy

  • The server responded with "504" to operation CalDAVAccountRefreshQueueableOperation.

    The server responded with "504" to operation CalDAVAccountRefreshQueueableOperation.