Problem running putty.exe in a seperate thread

Hi All - I have an issue when using a new thread to run an external .exe file (Putty in this case)
When I don't use a new thread Putty will start and stay open and let me do what I need to as normal, however it then hangs the rest of the application so you can't use it until you are finished with Putty - So I thought I would put it in a new thread. I use this method quite a bit in my application and don't have any issues so i'm wondering what I have done wrong here, I call other external .exe files and also start some external Java processes using a new thread and they work OK (using the same method)
It seems to me that the putty process doesn't seem to give any output and so the thread assumes it has closed and shuts down, or I need to inform the thread to wait and send it a message to clean up when I am finished. If I connect to a host and need to add the RSA key to the cache then Putty will stay open in the new thread until I click OK to save the key, then as soon as I have done that it closes
Can anyone point me in the right direction?
Below is some code for working and not working scenarios, the code below has been altered to run from a button click as in my app it's done from a popup menu and I don't think the issue is with the calling function (but I could be wrong)......
Working:
    private void jbtnTestButtonActionPerformed(java.awt.event.ActionEvent evt) {                                              
        try {
            String myPuttyDir;
            File myFile = new File("C:\\Putty\\putty.exe");
            myPuttyDir = myFile.toString();   
            String myPuttyArgs = " -ssh [email protected] -pw PASSWD";
            String myProcStart = myPuttyDir + myPuttyArgs;
            Process proc = Runtime.getRuntime().exec(myProcStart);
            BufferedReader bri = new BufferedReader(new InputStreamReader(proc.getInputStream()));
            BufferedReader bre = new BufferedReader(new InputStreamReader(proc.getErrorStream()));
            String line;
            while ((line = bri.readLine()) != null) {
                System.out.println(line);
            bri.close();
            while ((line = bre.readLine()) != null) {
                System.out.println(line);
            bre.close();
            proc.waitFor();
            System.out.println("Putty Closed!");         
            catch (Exception ex)
                System.out.println("Exception error :"+ex.getMessage());
                ex.printStackTrace();
       //no issue with this method, putty stays open until I close it and then it prints the closed message and exits cleanly
    }And here is the code with a new thread:
private void jbtnTestButtonActionPerformed(java.awt.event.ActionEvent evt) {                                              
        final Thread t = new Thread() {
            public void run() {
                try {
                   String myPuttyDir;
                    File myFile = new File("C:\\Putty\\putty.exe");
                    myPuttyDir = myFile.toString();
                    String myPuttyArgs = " -ssh [email protected] -pw PASSWD";
                    String myProcStart = myPuttyDir + myPuttyArgs;
                    Process proc = Runtime.getRuntime().exec(myProcStart);
                    BufferedReader bri = new BufferedReader(new InputStreamReader(proc.getInputStream()));
                    BufferedReader bre = new BufferedReader(new InputStreamReader(proc.getErrorStream()));
                    String line;
                    while ((line = bri.readLine()) != null) {
                        System.out.println(line);
                    bri.close();
                    while ((line = bre.readLine()) != null) {
                        System.out.println(line);
                    bre.close();
                    proc.waitFor();
                    System.out.println("Putty Closed!");
                } catch (Exception ex) {
                    System.out.println("Exception error :" + ex.getMessage());
                    ex.printStackTrace();
        t.start();//start the thread
        //This method opens Putty for a second, you just see it, and then it closes
}   Thanks in advance for any help! I'm new to threading in Java having come from a .NET environment and I think I need to listen to the thread somehow but i'm a bit lost......

Hi Gimbal2 - google is my friend (other search engines are available.....) and I have looked at loads of results but none of them gets close to what i'm looking for, nearly all the telnet/ssh libraries don't do interactive window stuff (although I admit I do want the moon on a stick....)
The best I looked at so far is Gritty (seems to be base on JSch terminal) but it just can't handle telnet or ANSI formatting and doesn't do VT100 emulation, although the plain SSH terminal is OK and usable
The rest are SSH/Telnet libraries and I will need to write a terminal emulator and some other stuff to make them do what I need....TBH i'm not good enough a programmer to do that. I just make small apps that make my life at work easier (and also my work mates) i'm not a professional programmer and nothing is for commercial reasons
I use the Reflections .NET control in my old .NET app and it has absolutely everything built in, all functions of Reflections are callable via native code so it makes life so easy - I was hoping for that kind of solution in Java, because basically i'm lazy!! The reason is that the equipment I connect to uses Telnet and SSH but they aren't 'normal' servers as such, I work in 'comms and each vendor has their own language that you need to use over the Telnet/SSH session so I need a plain terminal emulator that handles XTERM/VT100/VT102, ANSI etc. Reflections did this for me and had a great way to send commands in just about any format and then store results etc
Anyway - apologies if i've been spamming the forum with stupid questions, I do try to work through google answers before posting here....
BTW, I tried the google search with SSH terminal and got way more/better results than searching for "Java Telnet" or "Java Terminal Emulator" so am going to have a look at some of those as well, thanks for your help!
Edited by: Matt_C on Oct 25, 2012 6:07 AM

Similar Messages

  • Problem  run Sapinst.exe

    Hi, i have the problem with run sapinst.exe
    I installing Netweaver 7.0  EHP2 in Windows 2003 server 32 bits
    i have the following number installation:
    - 51040135_11      BS7i2010 Installation Master Windows Server on IA32 32bit
    - 51040135_12      BS7i2010 Installation Master Windows Server on IA64 64bit
    - 51040135_13      BS7i2010 Installation Master Windows Server on x64 64bit
    I using option  51040135_11 but no show all options installations, only show option: "standalone Engines", "optional standalone units" and "Software life-cycle option"
    Whe run option 51040135_13 show messages: "sapinst.exe is valid, but is for a machine type toher than the current machine".
    The option 51040135_13 if show all option installtions. I need install netweaver 7.0 EHP2 stack Java.
    I could help?

    Hi,
    It seems for windows 32 bit OS there is no installation options for NW7 EHP2
    WINDOWS SERVER 2003/IA32 32BIT  Released Conditionally  19.04.2010     
    WINDOWS SERVER 2003/IA64 64BIT  Released  19.04.2010     
    WINDOWS SERVER 2003/X64 64BIT  Released  19.04.2010     
    WINDOWS SERVER 2008/IA64 64BIT  Released  19.04.2010     
    WINDOWS SERVER 2008/X64 64BIT  Released  19.04.2010     
    WINDOWS SRV 2008 R2/X64 64BIT  Released  02.07.2010     
    See the PAM for NW7 EHP2.
    I think its better to have a 64 bit machine or install lower version of SAP.
    Thanks
    Deepthi

  • Psexec - problem run regedit.exe under windows 8.1

    i just made some stupid things with a registry key under CLSID (win 8.1 32bit):
    - remove all permission for that key
    - set owner to "system"
    .=>result when open that key:
    "an error preventing this key being opened.
    Details: Access is denied."  and then i can not change owner back admin any more.
    troubleshoot:
    i try using psexec to run regedit as system accont: 
    psexec -i -d -s c:\windows\regedit.exe
    and then change owner/ permission back to default but get error: "unable to save permissions on key..access is denied "
    I try test same things on windows 7, then using psexec and change owner from "system" back "admin", grant permission successfully
    i am not sure this is psexec or win 8.1 problems . some one can help me?. sory for my bad english

    Hi HTK91,
    This forum is to discuss problems of C# development. Your question is out of our support. I will move your thread to
    Where is the forum for forum. As moderators of this forum will help you move to the right forum. Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem running windows_imagecreator.exe

    Hi,
    I have downloaded all the 7 parts of Siebel Application... Now, to create image creator i tried to rum windows_imagecreator.exe file... but it gives me the following error
    java.lang.noclassDefFoundError: run Exception in thread "main"
    What could be the problem?
    Please help me out...

    Hi,
    Do you have an updated Java Runtime installed?
    Regards,
    Shalabhsneha

  • Problem running Acrobat.exe from acrobat plugin in IE

    hi,
    In another discussion, regarding signing pdf in Internet explorer, i am awaiting a reply to a very imp question. In the mean time, asuming that it cannot be done in a standard way, as we have used PDDoc allover the plugin and in IE PDDoc is only accessible in callback methods, i have tried to implement a work around, where i save the PDF to local disk and open it in acrobat.exe.
    i do the following:
    Register for PDDocDidOpen notification.
    In PDDocDidOpen notification i save the AVDoc globally for later use.
    then in IdleHandler callback, i use the globally save AVDoc to call PDDocSave() method to save the online pdf to local disk.
    and in the PDDocDidSave() callback i use shellexecute to opend acrobat.exe to open the newly saved PDF.
    Problem:    The shellexecute opens up acrobat.exe showing the newly saved file, but if i click the empty field in the PDF or press any button, acrobat.exe crashes.
    I have tried placing shellexecute in differenct callbacks but no success.
    here is the shell execute.
    ShellExecute(NULL, "open", "C:\\Program Files (x86)\\Adobe\\Acrobat 10.0\\Acrobat\\Acrobat.exe", "d:\\test.pdf", NULL, SW_SHOWNORMAL);
    I have opened a different pdf than the newly saved one instead, but still the crash exists.
    Do u have any idea what i might be doing wrong.
    Jahangir

    Thanks for responding G Sch.
    LOL. Well this lemming doesn't habitually rename .exe files (e.g. Adobe DNG Converter.exe) to a non-spaced alternative either! (Adobe_DNG_Converter.exe)
    Still no luck...
    *** Here is my batch file...
    REM Copy and DNG-convert files from CF
    CD c:\RAW_files
    dir c:\RAW_files
    "C:\Program Files\Adobe\Adobe DNG Converter.exe" -d C:\DNG_files
    dir c:\DNG_files
    pause
    ***Here's the DOS shell output...
    <<BEGINS>>
    C:\RAW_files>dir c:\RAW_files
    Volume in drive C is Local Disk
    Volume Serial Number is D084-58ED
    Directory of c:\RAW_files
    12/03/2008 10:29 AM <DIR> .
    12/03/2008 10:29 AM <DIR> ..
    11/03/2008 07:00 AM 10,661,632 _3110455.ORF
    11/03/2008 07:01 AM 10,661,632 _3110457.ORF
    11/03/2008 07:01 AM 10,661,632 _3110458.ORF
    11/03/2008 07:02 AM 10,661,632 _3110460.ORF
    11/03/2008 07:02 AM 10,661,632 _3110461.ORF
    11/03/2008 07:03 AM 10,661,632 _3110462.ORF
    11/03/2008 07:03 AM 10,661,632 _3110463.ORF
    11/03/2008 07:04 AM 10,661,632 _3110464.ORF
    11/03/2008 07:04 AM 10,661,632 _3110465.ORF
    9 File(s) 95,954,688 bytes
    2 Dir(s) 2,619,731,968 bytes free
    C:\RAW_files>"C:\Program Files\Adobe\Adobe DNG Converter.exe" -d C:\DNG_files
    C:\RAW_files>dir c:\DNG_files
    Volume in drive C is Local Disk
    Volume Serial Number is D084-58ED
    Directory of c:\DNG_files
    12/03/2008 02:46 PM <DIR> .
    12/03/2008 02:46 PM <DIR> ..
    0 File(s) 0 bytes
    2 Dir(s) 2,619,731,968 bytes free
    C:\RAW_files>pause
    Press any key to continue . . .
    <<ENDS>>
    As you can see (a) Source files exist(b) DNG command line runs without generating an error (c) no output files in destination.
    DNG Converter did not run.
    If I remove everything after the command (i.e. the parameter list stuff) it fires up DNG Converter in interactive mode. Not what I'm after.
    Any other thoughts on what the problem is?
    Thank you.
    Rob

  • Problem running BCUpdate.exe (boot camp 2.1 update)

    Just bought a new iMac 20", upgraded from OSX 10.5.4 to 10.5.6 (plus all other s/w upgrades), ran Boot Camp, made a 50GB Windows NTFS partition, installed Win/XP SP3 from the Windows DVD. Booted into WIndows. So far so good.
    Under vanilla Windows, I stuck in the Leopard Install DVD and autoran the Boot Camp drivers install. It crashed half-way through with the blue screen of death (flashed up for only 1 sec), and then the machine automatically rebooted. Now it will no longer boot normally into Windows, it gets halfway and then repeats the crash & reboot scenario over & over.
    So, I reinstalled all of Windows (again!), but instead of using the Leopard Install DVD, I tried to run the Boot Camp 2.1 Update package, BCUpdate.exe. However, when I double click on the package in Windows, nothing happens. I right-click -> Open, and it doesn't run. Run as... Administrator, it doesn't run. Safe Mode won't let me run it either. The checksum of the file is correct. I don't get it.
    What am I doing wrong???

    Hmm, for that to work, I would need hardwired Internet access. All I have is wireless, but Windows doesn't see the Broadcom card, so I can't go the online Apple S/W update route.
    So, I'm still stuck. Maybe there's some way I can make an autorun CD or something out of the BCUpdate.exe file...?

  • I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...

    I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...what should I do?

    Hi Arika,
    The drivers that you need to install to make your executable work depends on what your executable is doing. To get started, you need to have the LabVIEW Run-Time Engine installed on your target machine (the Win2000 machine you are planning to use) in order to run your executable. Next, you need to determine what drivers your executable uses, if any. For example, if you are using GPIB instrument control, you will need to install the NI-488 drivers on your target machine. If you are performing data acquisition, you will need to install NI-DAQ drivers. If you are doing image acquistion, you will need to install NI-IMAQ drivers.
    All these drivers are available for downloading on ni.com. To get the drivers, go to ht
    tp://www.ni.com/support , click on the link that takes you to Drivers and Updates (under Option 3), and click on the links to get to the driver(s) you need. For example, if you need the LabVIEW 5.1.1 Run-Time engine, click on the All Drivers and Updates by Application link on the main page (http://www.ni.com/softlib.nsf/). Then click on the LabVIEW link, Windows 2000, Run Time Engine, and then you will see the link to get to the page to download the LabVIEW 5.1.1 Run-Time Engine.
    I hope this information helps.
    Best Regards,
    Wilbur Shen
    National Instruments

  • XI installation - problem when running sapinst.exe

    hai,
      when i'am running sapinst.exe file i'am getting the following error  -
    SAPinst is getting started.
    Please be patient ...
    guiengine: call to bind() for socket 1832 failed. No such file or directory
    ERROR      2007-02-28 14:50:20 [iaxxgenimp.cpp:532]
               init()
    FGE-00006  Attempt to open a communication port connection failed. Check whether the port 21212 is already in use.
    ERROR      2007-02-28 14:50:20
    FCO-00034  An error occurred during the installation. Problem: error in GUI server subsystem.
    Exit status of child: 1
    can anyone help?
    bye
    nandana

    Hi Nandana,
    Please check this link...
    Re: problems installing NW04 sneak preview (java)
    it talks about the same problem as yours...
    Thanks.
    btw...i got the link from google
    Message was edited by:
            Renjith Andrews

  • Problem with java.exe

    Hi there, I have had Java 1.4 SDK running on my machine now for several month however I am now experiencing problems when trying to run java.exe....
    Whenever I try to run (for example):
    java helloWorldI get the following error message:
    Exception in thread "main" java.lang.NoClassDefFoundError: helloWorld
    Yes I did compile the files... and yes I am in the right direcotry.. this happens on every single file I have. Can anyone suggest what might be wrong? And how to fix this... also no java applets will run on the web.
    Thankyou, Mark.

    Type the following at the command line:
    echo %CLASSPATH%
    The result should contain a . with ; around it (unless it's the first/last item). This means to include the current directory in the search path for java classes.
    Without this java will only search the locations specified in the classpath.
    To add it you need to set an environment variable, if you have NT/2K/XP you can do this from the 'advanced' tab of the system properties, on other OS's I cant remember the permanent manner but for a temporary fix you could type:
    set CLASSPATH=%CLASSPATH%;.
    At the command line then type:
    java <My Progam Name>
    Hope this helps.

  • Win2000 NoClassDefFoundError running java.exe from DOS prompt

    I am using Windows 2000 with J2SE v 1.3.1_02 and have a problem when I run java.exe from the command line for classes that are defined to be in a package. I can both compile and run this program from the TextPad editor but when I run it from a DOS prompt I get the error "Exception in thread "main" java.lang.NoClassDefFoundError: MyClass"
    My CLASSPATH is set to D:\
    The files MyClass.java and MyClass.class are in the directory D:\MyProject
    here is the source:
    package MyProject;
    public class MyClass
         public static void main(String[] args)
              System.out.println("MyClass main");
    Note that if I comment out the package statement and add "." to CLASSPATH then it runs from the DOS prompt. Why does the program run from inside TextPad but not from the DOS prompt? Seems to be some type of bug in java.exe on Windows 2000 when the keyword package is used.

    It turns out that if you use the main method in a class that declares the package statement you need to use the fully qualified name to run the program. Using this statement works for this problem:
    java MyProject/MyClass
    the forward slash is required even though is a Windows system.

  • Set CLASSPATH does not work, how do I run java.exe?

    Hi guys,
    I have a problem running the java.exe and I'm using Win XP. Here is my problem:
    Under the command prompt, I set the path: path = C:\Program Files\Java 2\j2sdk1.4.2_05\bin
    Then I created a folder in E:\Hello. I save my Hello.java in that folder, and I compiled it:
    javac Hello.java
    Now, there is a Hello.class created in that folder.
    Then I try to run it: java Hello
    but I got an error: "Exception in thread "main" java.lang.NoClassDefFoundError: Hello"
    So, I try to set CLASSPATH, however, the problem remains, no matter how hard I try.
    Any ideas?

    None of the suggestion worked, I wonder why???
    Here is my location for the JDK:
    C:\Program Files\Java 2\j2sdk1.4.2_05\bin
    Here is my location for my Java project file:
    E:\JavaProject\Hello
    Here is the file name:
    Hello.java
    Here is the command prompt:
    C:\Documents and Settings\Alex Ngai> e:
    E:\> cd JavaProject
    E:\JavaProject> cd Hello
    E:\JavaProject\Hello> path = C:\Program Files\Java
    2\j2sdk1.4.2_05\bin
    E:\JavaProject\Hello> javac Hello.java
    E:\JavaProject\Hello> java Hello
    Exception in thread "main"
    java.lang.NoClassDefFoundError: Hello
    E:\JavaProject\Hello> java -cp Hello
    // Does not work, it lists all of the options for java
    E:\JavaProject\Hello> set CLASSPATH =
    E:\JavaProject\Hello
    CLASSPATH="C:\Program
    Files\Java\j2re1.4.2_04\lib\ext\QTJava.zip"
    E:\JavaProject\Hello> java Hello
    Exception in thread "main"
    java.lang.NoClassDefFoundError: Hello
    // I have tried a lot more, none of them won't work!!
    Now what should I try in the following command prompt?
    E:\JavaProject\Hello>Given the above there is only one possible explaination.
    You have a file named "Hello.java".
    In that file you have a non-public class which is NOT named "Hello". Instead it is named something like "HelloWorld" or even "hello" (case matters.)

  • Java.exe error - Exception in thread "main" java.lang.NoClassDefFoundError:

    I've just started to take on java, and some examples from my learning source
    show the
    javac.exe fileincluded.java
    to
    java.exe fileincluded
    method. Although I can compile fine, when I go to run I get a java.exe error - Exception in thread "main" java.lang.NoClassDefFoundError:.
    I thought it was an environment variable problem as I'm running win xp.
    I've gotten the bin directory included, and I've previously had visual studio .net installed
    so the INCLUDE and LIB variables are set to those directories. I've tried to attach the java /lib and /bin directories by ";C:\PROGRAM FILES\JAVA\JDK1.5.0_02\LIB" etc,
    and that didn't work. What can I do to fix this problem?

    I get the I/O exception while reading: D:\Java\HelloApplet (The system cannot find the file specified). I have previously compiled HelloApplet.java into HelloApplet.class using javac.exe
    the two include statements in the sample HelloApplet I'm using are
    import java.applet.*;
    import java.awt.*;
    I also have a ComponentEventTest.java file which I've made into a class with these two
    include statements:
    import java.awt.*;
    import java.awt.event.*;
    I can however compile .java files which have no include statements.
    I take it that my classpath is not set correctly. Like I said earlier, I'm using winxp
    and trying to set the classpath variable under system. I have tried under user too. The path names I've tried setting are C:\Program Files\Java\jdk1.5.0_02\, C:\Program Files\Java\jdk1.5.0_02\lib, C:\Program Files\Java\jdk1.5.0_02\include, and C:\Program Files\Java\jdk1.5.0_02\;C:\Program Files\Java\jdk1.5.0_02\lib;C:\Program Files\Java\jdk1.5.0_02\include.
    How can I correct this? If it's possible, I would like to set a variable in windows
    versus having to type extra commands at the command prompt everytime I try
    to run a java class with java.exe. Any help would be much appreciated

  • Oracle Installer Crash running ODTwithODAC10202.exe

    Can someone please help asap with the following problem? It sounds like it might be related to the psapi.dll problems others are having.
    I installed the Oracle Dev Tools about a month ago on my Win2K workstation and have been using ODP.NET with no problems since.
    I now need to reinstall ODT from scratch, so have run ODTwithODAC10202.exe, which successfully unzips files into /install and /stage. I'm then launching /install/setup.exe. This is when the problem occurs.
    A command prompt appears stating all installer requirements are met, then the Oracle Universal Installer window appears for about 2 seconds, before disappearing without a trace. Digging into C:\temp I found a file called hs_err_pid2052.log which was created at the time the installer crashed (see content below).
    What is happening here? C Shay - I would like to follow your advice re reinstalling the JVM, but there doesn't seem to be any obvious way to do so. Bear in mind I have admin privileges on my box, but Add/Remove Programs is not available to me.
    **** C:\temp\hs_err_pid2052.log ****
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x77FCCA14
    Function=RtlFreeHeap+0x3D0
    Library=C:\WINNT\system32\ntdll.dll
    Current Java thread:
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.GetAllOracleHomes(Native Method)
         at oracle.sysman.oii.oiip.oiipg.OiipgOracleHomes.getOsdOracleHomeInfo(OiipgOracleHomes.java:291)
         at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.add33Comps(OiifpContentsTabPanel.java:1020)
         at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.fillInventoryTree(OiifpContentsTabPanel.java:702)
         at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.refreshTree(OiifpContentsTabPanel.java:1508)
         at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.prepareInvTree(OiifpContentsTabPanel.java:2253)
         at oracle.sysman.oii.oiif.oiifd.OiifdInventoryDialog.doModal(OiifdInventoryDialog.java:457)
         at oracle.sysman.oii.oiif.oiifw.OiifwWizDialog.onViewPrivate(OiifwWizDialog.java:863)
         at oracle.sysman.oii.oiif.oiifw.OiifwWizDialog.access$000(OiifwWizDialog.java:330)
         at oracle.sysman.oii.oiif.oiifw.OiifwWizDialog$PrepareInventoryTree.run(OiifwWizDialog.java:1778)
         at java.lang.Thread.run(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x0040B000      C:\TEMP\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\javaw.exe
    0x77F80000 - 0x77FFD000      C:\WINNT\system32\ntdll.dll
    0x7C2D0000 - 0x7C332000      C:\WINNT\system32\ADVAPI32.dll
    0x7C570000 - 0x7C624000      C:\WINNT\system32\KERNEL32.DLL
    0x77D30000 - 0x77D9F000      C:\WINNT\system32\RPCRT4.DLL
    0x77E10000 - 0x77E6F000      C:\WINNT\system32\USER32.dll
    0x77F40000 - 0x77F7C000      C:\WINNT\system32\GDI32.dll
    0x78000000 - 0x78045000      C:\WINNT\system32\MSVCRT.dll
    0x75E60000 - 0x75E7A000      C:\WINNT\system32\IMM32.DLL
    0x6CA60000 - 0x6CA68000      C:\WINNT\system32\LPK.DLL
    0x66650000 - 0x666A4000      C:\WINNT\system32\USP10.dll
    0x08000000 - 0x08138000      C:\TEMP\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\client\jvm.dll
    0x77570000 - 0x775A0000      C:\WINNT\system32\WINMM.dll
    0x10000000 - 0x10007000      C:\TEMP\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\hpi.dll
    0x007F0000 - 0x007FE000      C:\TEMP\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\verify.dll
    0x00800000 - 0x00819000      C:\TEMP\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\java.dll
    0x00820000 - 0x0082E000      C:\TEMP\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\zip.dll
    0x1A890000 - 0x1A9A2000      C:\temp\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\awt.dll
    0x77800000 - 0x7781E000      C:\WINNT\system32\WINSPOOL.DRV
    0x76620000 - 0x76630000      C:\WINNT\system32\MPR.DLL
    0x7CE20000 - 0x7CF0F000      C:\WINNT\system32\ole32.dll
    0x1A9B0000 - 0x1AA01000      C:\temp\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\fontmanager.dll
    0x51000000 - 0x5104D000      C:\WINNT\system32\ddraw.dll
    0x728A0000 - 0x728A6000      C:\WINNT\system32\DCIMAN32.dll
    0x5C000000 - 0x5C0C8000      C:\WINNT\system32\D3DIM700.DLL
    0x6E420000 - 0x6E426000      C:\WINNT\system32\INDICDLL.dll
    0x00840000 - 0x00869000      C:\temp\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\JavaAccessBridge.dll
    0x02B80000 - 0x02B85000      C:\temp\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\jawt.dll
    0x02B90000 - 0x02B98000      C:\temp\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\JAWTAccessBridge.dll
    0x02E50000 - 0x02E69000      C:\temp\OraInstall2006-12-21_03-23-28PM\oui\lib\win32\oraInstaller.dll
    0x77820000 - 0x77827000      C:\WINNT\system32\VERSION.dll
    0x759B0000 - 0x759B6000      C:\WINNT\system32\LZ32.DLL
    0x7C340000 - 0x7C396000      C:\temp\OraInstall2006-12-21_03-23-28PM\oui\lib\win32\msvcr71.dll
    0x02F90000 - 0x02FAE000      C:\temp\OraInstall2006-12-21_03-23-28PM\jre\1.4.2\bin\jpeg.dll
    0x77920000 - 0x77943000      C:\WINNT\system32\imagehlp.dll
    0x72A00000 - 0x72A2D000      C:\WINNT\system32\DBGHELP.dll
    0x690A0000 - 0x690AB000      C:\WINNT\system32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 832K, used 493K [0x10010000, 0x100f0000, 0x10770000)
    eden space 768K, 57% used [0x10010000, 0x1007d9a0, 0x100d0000)
    from space 64K, 86% used [0x100e0000, 0x100ede28, 0x100f0000)
    to space 64K, 0% used [0x100d0000, 0x100d0000, 0x100e0000)
    tenured generation total 10276K, used 7437K [0x10770000, 0x11179000, 0x16010000)
    the space 10276K, 72% used [0x10770000, 0x10eb37e0, 0x10eb3800, 0x11179000)
    compacting perm gen total 12800K, used 12733K [0x16010000, 0x16c90000, 0x1a010000)
    the space 12800K, 99% used [0x16010000, 0x16c7f5d0, 0x16c7f600, 0x16c90000)
    Local Time = Thu Dec 21 15:23:43 2006
    Elapsed Time = 4
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    #

    There are multiple folders (one for each botched installation) called:
    C:\temp\OraInstall<timestamp>
    These folders contain /diagnostics /jre and /oui folders, but the files you mentioned aren't there. Anywhere else I should look?
    OS details:
    Windows 2000 Professional 5.00.2195
    Service Pack 4
    Dump of HKLM/Software/Oracle:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE]
    "NLS_DATE_FORMAT"="DD-MON-RR"
    "TNS_ADMIN"="C:\\Program Files\\ORANT\\NETWORK\\ADMIN"
    "API"="C:\\Program Files\\Oracle\\ora81\\dbs"
    "COMPANY_NAME"=hex(2):42,00,61,00,72,00,63,00,6c,00,61,00,79,00,73,00,20,00,43,\
    00,61,00,70,00,69,00,74,00,61,00,6c,00,00,00
    "NLS_LANG"="ENGLISH_UNITED KINGDOM.WE8ISO8859P1"
    "NLSRTL32"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
    20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,\
    00,4e,00,4c,00,53,00,52,00,54,00,4c,00,33,00,32,00,00,00
    "ODBC_SYS"="system32"
    "OI_NLS32"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
    20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,\
    00,6f,00,72,00,61,00,69,00,6e,00,73,00,74,00,5c,00,4e,00,4c,00,42,00,00,00
    "ORA_NLS32"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
    20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,\
    00,4e,00,4c,00,53,00,52,00,54,00,4c,00,33,00,32,00,5c,00,44,00,41,00,54,00,\
    41,00,00,00
    "ORACLE_GROUP_NAME"="Oracle - OraHome81"
    "ORACLE_HOME"="C:\\Program Files\\Oracle\\ora81"
    "OTRACE73"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
    20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,\
    00,4f,00,54,00,52,00,41,00,43,00,45,00,37,00,33,00,00,00
    "PLSQL23"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
    20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,\
    00,50,00,4c,00,53,00,51,00,4c,00,32,00,33,00,00,00
    "PRO18"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,20,\
    00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,00,\
    50,00,52,00,4f,00,31,00,38,00,00,00
    "RDBMS73"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
    20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,\
    00,52,00,44,00,42,00,4d,00,53,00,37,00,33,00,00,00
    "SHARED_ORACLE_HOME"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,\
    00,6d,00,20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,\
    54,00,00,00
    "inst_loc"="C:\\Program Files\\Oracle\\Inventory"
    "ORACLE_HOME_NAME"="OraHome81"
    "OLEDB"="C:\\PROGRA~1\\Oracle\\ora81\\oledb\\mesg"
    "OO4O"="C:\\PROGRA~1\\Oracle\\Ora81\\oo4o\\mesg"
    "EXECUTE_SQL"=hex(2):50,00,4c,00,55,00,53,00,33,00,33,00,00,00
    "PLUS_DFLT"=hex(2):50,00,4c,00,55,00,53,00,33,00,33,00,00,00
    "PLUS33"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,20,\
    00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,00,\
    50,00,4c,00,55,00,53,00,33,00,33,00,00,00
    "SQLPATH"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
    20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,\
    00,44,00,42,00,53,00,00,00
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ALL_HOMES]
    "DEFAULT_HOME"="ORAHOME81"
    "HOME_COUNTER"="2"
    "LAST_HOME"="1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ALL_HOMES\ID0]
    "NAME"="DEFAULT_HOME"
    "NLS_LANG"="NA"
    "PATH"="C:\\Program Files\\ORANT"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ALL_HOMES\ID1]
    "NAME"="ORAHOME81"
    "NLS_LANG"="NA"
    "PATH"="C:\\PROGRA~1\\Oracle\\Ora81"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\ntinstall]
    "MOH Icons"="exec"
    "Shareable"="TRUE"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\ntinstall\OCSM Groups]
    "Full Download"="ntcompat,exec,deinstl"
    "Run From Server"="res:US,prodmsg:US,script:US,dll:US"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32netclt23]
    "Shareable"="TRUE"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32netclt23\Map Vars]
    "oracle_group_name"="Oracle for Windows NT"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32netclt23\OCSM Groups]
    "EXEs DLLs Download"="deinstl:US,tns,cfg23,sample,msb:US"
    "Full Download"="deinstl:US,tns,cfg23,sample,msb:US"
    "Run From Server"="deinstl:US,tns,cfg23,sample,msb:US"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32nmp23]
    "Shareable"="TRUE"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32nmp23\OCSM Groups]
    "EXEs DLLs Download"="deinstl:US,dll"
    "Full Download"="deinstl:US,dll"
    "Run From Server"="deinstl:US,dll"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32plus33]
    "Shareable"="TRUE"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32plus33\Map Vars]
    "oracle_group_name"="Oracle for Windows NT"
    "PLUS33"="C:\\Program Files\\ORANT\\PLUS33"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32plus33\OCSM Groups]
    "EXEs DLLs Download"="deinstl:US,msg:US,sql,prefs,exe"
    "Full Download"="deinstl:US,msg:US,sql,prefs,exe"
    "Run From Server"="deinstl:US,msg:US,sql,prefs,exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32plus33\Registry Backup]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32plus33\Registry Backup\Outside locations]
    "1"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,SQLPATH,1,1"
    "2"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,PLUS33,1,1"
    "3"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,EXECUTE_SQL,1,1"
    "4"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,PLUS_DFLT,1,1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32rsf73]
    "Shareable"="TRUE"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32rsf73\Map Vars]
    "NLSRTL32"="C:\\Program Files\\ORANT\\NLSRTL32"
    "OTRACE73"="C:\\Program Files\\ORANT\\OTRACE73"
    "PLSQL23"="C:\\Program Files\\ORANT\\PLSQL23"
    "PRO18"="C:\\Program Files\\ORANT\\PRO18"
    "RDBMS73"="C:\\Program Files\\ORANT\\RDBMS73"
    "SYSDIR"="System32"
    "WINSYS"="C:\\WINNT\\System32"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32rsf73\OCSM Groups]
    "EXEs DLLs Download"="deinstl:US,commdll,dll,msg:US,sql,nlsdata,user"
    "Full Download"="deinstl:US,commdll,dll,msg:US,sql,nlsdata,user"
    "Run From Server"="deinstl:US,commdll,dll,msg:US,sql,nlsdata,user"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32rsf73\Registry Backup]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32rsf73\Registry Backup\Outside locations]
    "1"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,RDBMS73,1,1"
    "2"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,OTRACE73,1,1"
    "3"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,PLSQL23,1,1"
    "4"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,PRO18,1,1"
    "5"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,NLSRTL32,1,1"
    "6"="HKEY_LOCAL_MACHINE,SOFTWARE\\ORACLE,ORA_NLS32,1,1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32sodbc250]
    "Shareable"="TRUE"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32sodbc250\Map Vars]
    "ODBC_SYS"="system32"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32sodbc250\OCSM Groups]
    "Run From Server"="deinst,ora,mfc,ctl3d:nt,iconnt"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32sodbc250\Registry Backup]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32sodbc250\Registry Backup\Outside locations]
    "1"="HKEY_LOCAL_MACHINE,SOFTWARE\\ODBC\\ODBCINST.INI\\Oracle73 Ver 2.5,,0,1"
    "2"="HKEY_LOCAL_MACHINE,SOFTWARE\\ODBC\\ODBCINST.INI\\ODBC Drivers,Oracle73 Ver 2.5,1,1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32tcp23]
    "Shareable"="TRUE"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\Backup\w32tcp23\OCSM Groups]
    "EXEs DLLs Download"="deinstl:US,dll"
    "Full Download"="deinstl:US,dll"
    "Run From Server"="deinstl:US,dll"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0]
    "ID"="0"
    "NLS_LANG"="NA"
    "ORACLE_GROUP_NAME"="Oracle - DEFAULT_HOME"
    "ORACLE_HOME"="C:\\Program Files\\ORANT"
    "ORACLE_HOME_NAME"="DEFAULT_HOME"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME1]
    "ID"="1"
    "NLS_LANG"="ENGLISH_UNITED KINGDOM.WE8ISO8859P1"
    "ORACLE_GROUP_NAME"="Oracle - ORAHOME81"
    "ORACLE_HOME"="C:\\PROGRA~1\\Oracle\\Ora81"
    "ORACLE_HOME_KEY"="Software\\ORACLE\\HOME1"
    "ORACLE_HOME_NAME"="ORAHOME81"
    "SQLPATH"="C:\\PROGRA~1\\Oracle\\ora81\\dbs"
    "MSHELP_TOOLS"="C:\\PROGRA~1\\Oracle\\ora81\\MSHELP"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_ODACHome1]
    "ORACLE_HOME"="C:\\Program Files\\Oracle\\Ora102"
    "ORACLE_HOME_NAME"="ODACHome1"
    "ORACLE_GROUP_NAME"="Oracle - ODACHome1"
    "ORACLE_BUNDLE_NAME"="Enterprise"
    "NLS_LANG"="ENGLISH_UNITED KINGDOM.WE8MSWIN1252"
    "ORACLE_HOME_KEY"="SOFTWARE\\ORACLE\\KEY_ODACHome1"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ODP.NET]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ODP.NET\1.102.2.20]
    "DllPath"="C:\\Program Files\\Oracle\\Ora102\\bin"
    "TraceFileName"="C:\\odp.net1.trc"
    "TraceLevel"="0"
    "TraceOption"="0"
    "StatementCacheSize"="10"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ODP.NET\2.102.2.20]
    "DllPath"="C:\\Program Files\\Oracle\\Ora102\\bin"
    "TraceFileName"="C:\\odp.net2.trc"
    "TraceLevel"="0"
    "TraceOption"="0"
    "StatementCacheSize"="10"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OLEDB]
    "CacheType"="Memory"
    "ChunkSize"="100"
    "DisableRetClause"="1"
    "DistribTX"="1"
    "FetchSize"="100"
    "OSAuthent"="0"
    "PLSQLRSet"="0"
    "PwdChgDlg"="1"
    "SchRstLng"="10000"
    "TraceCategory"="0"
    "TraceFileName"="C:\\PROGRA~1\\Oracle\\Ora81\\network\\trace\\OraOLEDB.trc"
    "TraceLevel"="0"
    "TraceOption"="0"
    "UserDefFn"="0"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\OO4O]
    "CacheBlocks"="20"
    "FetchLimit"="100"
    "FetchSize"="4096"
    "HelpFile"="C:\\PROGRA~1\\Oracle\\Ora81\\MSHELP\\oracleo.hlp"
    "OO4O_HOME"="C:\\PROGRA~1\\Oracle\\Ora81\\oo4o"
    "PerBlock"="16"
    "SliceSize"="256"
    "TempFileDirectory"="c:\\temp"
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ORACLE_HOMES]
    [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ORACLE_HOMES\ORACLE1]
    "API"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,20,00,\
    46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,5c,00,44,\
    00,42,00,53,00,00,00
    "COMPANY_NAME"=hex(2):42,00,61,00,72,00,63,00,6c,00,61,00,79,00,73,00,20,00,43,\
    00,61,00,70,00,69,00,74,00,61,00,6c,00,00,00
    "NLS_LANG"="AMERICAN_AMERICA.WE8ISO8859P1"
    "ORACLE_GROUP_NAME"=hex(2):4f,00,72,00,61,00,63,00,6c,00,65,00,20,00,66,00,6f,\
    00,72,00,20,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,4e,00,54,00,\
    00,00
    "ORACLE_HOME"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,\
    00,20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,54,00,\
    00,00
    "SHARED_ORACLE_HOME"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,\
    00,6d,00,20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,4f,00,52,00,41,00,4e,00,\
    54,00,00,00

  • T400 with ATI Radeon HD 3400. Driver not found after running ImageX.exe /Capture

    Hello,
    I was able to reproduce the following problem on a T400.
    - unattended installation of WXP-SP3 (slipstreamed)
    - reboot
    - install latest ATI driver from Lenovo/IBM site (8.503.2.2-080818a-069536C)
    - reboot
    At this point, the video driver is well configured.
    - Reboot once or twice, video driver still good.
    - Boot the T400 on WinPE 2.0
    - Capture the C:\ to a network file share using ImageX.exe (from Microsoft's WAIK 1.1)
    - Shutdown the T400, and reboot on C:\
    - At this point, video driver is "lost". The Hardware Wizard says "new driver found", but stick with default VGA.
    Then I get an ATI error telling the driver is missing or not well installed.
    - When rebooting several times, suddenly the card is back in the device manager as a Radeon HD 3400.
    (without re-installing the driver ...)
    Anyone has an explanation ?
    Please not I did not run "sysprep.exe" before capturing with ImageX.exe
    stefan

    Update on this problem.
    After running "sysprep.exe -mini -quiet -reseal -shutdown", I ran the "ImageX.exe /capture".
    After rebooting the T400, the ATI driver was fine.
    Either is a coincidence (but I could repeat it 3 times...) or it is not advised to run "ImageX.exe /Capture" on a non-syspreped Windows XP.
    I know that a non-syspreped Vista system has a limitation if captured with ImageX.exe. But I am not aware on any limitation with XP.
    Stefan

  • I can download firefox, but when I try to run it, windows 7 asks me to select a program type to run the *.exe file

    I am running windows 7 with IE 10. I want to switch to Firefox as my browser. I am able to download the Firefox Setup 22 0 exe, but when I try to open or run it, windows prompts me to "choose the program you want to use to open this file". This happens with both the Firefox Setup Stub 22 0 exe (274kb) and the Firefox Setup 22 0 exec (21,239Kb). I can't find any program on Windows to run this exe. Same thing happens when I try to run the troubleshooter exe.

    Hello annsboland
    Do you have also problem with others exe files ?
    try to create a new user account in Windows 7 and check it again
    see if the next articles in the links helps to create the new account:
    http://www.bleepingcomputer.com/tutorials/create-new-user-account-in-windows-vista-7/
    http://www.pcadvisor.co.uk/how-to/windows/3326039/how-add-new-user-account-in-windows-7/
    thank you

Maybe you are looking for

  • Problem with ZEN Style M300

    When I trying to found bluetooth audio devices with ZEN Style M300,? the player get to freeze after a little bit time that is searching devices, and so I have to push the reset button for using again the player. :mansurprised:Anyone have the same pro

  • Audigy WORKING with 5.1 AND software(EAX, THX console, bass redirection) Vista 32

    This has taken me a week of fiddling, but now on Vista Ultimate 32bit I have most things up and running... EAX effects and environments from the control panel work, THX console works, surround mixer, speaker settings work..Also I'm getting proper sur

  • A cmd/ batch file windows shows up when i close firefox for a few secconds, why?

    When i close firefox, a CMD window appears and then dissapears and firefox closes. This has happened all after Norton removed a file due to it thinking it was bad (while scanning on its own accord) The file that opens the window is located here: C:\U

  • Interest in develop DBMS

    i am about to start in develop' a simple dbms, and i hope there are dev's interested in this subject, and whom could make this old idea a new one with something special. in my way, i guess with xml there's something that can be done, hihi. I am waiti

  • Quicktimes: WHITE = GRAY

    I am playing Quicktimes from inside of a Director shell... The Quicktimes all have pure white backgrounds. If you open them in Quicktime directly, the look perfect. However, when they play in Director, the 'white' level appears as a 'light gray', and