Executing  .exe files

Last week I could not open a .exe file so I tried to pick an application to open it with and it did not work. Now every time I try to open a .exe file it is using this same program that does not work. Does anyone know what I can tell the computer to open .exe files with? Thanks a ton.

If it is an exe file and your running osx, it's not going to work.
You can try crossover office (http://codeweavers.com), but that may or may not work.

Similar Messages

  • Reg : Executing .exe file from application server

    Dear Experts,
                        i have a requirement to execute an .exe file from application server,i tried with method CL_GUI_FRONTEND_SERVICES=>EXECUTE but it executes .exe file from presentation server only.can
    anyone kindly clarify to execute .exe file from application server?
    Thanks in advance,
    Sujay

    Hi,
    Did you search before posting?
    Re: Execute a .exe file present in the Application Server
    Vikranth

  • Executing exe files from java program

    Hi,
    I need to execute exe files and pass arguments to them from my java code.
    Can you give me guidelines to do that as i haven't done that before.
    Thanks.

    http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Runtime.html
    getRuntime() method.
    exec() method.

  • How to execute ".exe" files using java

    Hi,
      This is guruvulu,
         I have a problem in executing ".exe" files.For Example InternetExplorer.

    Hi,
    You can execute .exe files in JAVA using the following code.
    Runtime rt1 = Runtime.getRuntime();
    Process pc = rt1.exec("someexe.exe");
    you can get the output of the executed exe file in
    in = pc.getInputStream(); //this returns a InputStream
    hope this solves your problem.
    regards,
    P.Venkat

  • Problems executing exe file outside vignette(HAL)

    Hi, when trying to execute my exe file generated with vignette I'm getting an error:
    C:\WINDOWS\system32\cmd.exe - cas33.bat
    The NTVDM CPU has encountered an illegal instruction
    CS:05a7IP:016b OP:63 65 64 20 77 Chose 'Close' to terminate the application.
    The thing is that I've executed it before in other computer and it was working. But now I've to execute it in other computer where I have to specify other parameters in my .ini file ( as server, user, password, filename...)
    Any idea??
    Thank you

    Hi,
    No I just write them in the ini file(replacing the old values with the new ones).
    I don't have dll in the folder. It was working in the other computer by just executing the .bat file...I don't know what is happening know.
    Thank you so much

  • Problem with executing .exe file

    I am executing a .exe file in sun studio (Web Project) .... but it generate Control Access Exception, File Permission <<ALL FILES>> Denied . But the same command execute with simple java file and in DOS command....
    kindly someone give me help
    Thanks

    You have posted your message on the Sun Java Studio Creator forum. I believe you need to repost your message on a Sun Studio forum. Please see http://developers.sun.com/prodtech/cc/community/index.jsp.

  • PL/SQL to execute exe file with parameters from DB

    Hi all,
    I have a bit of a problem.
    I am in need to write all Logon, Logoff and Logon fail data onto the Windows Application Log. To do this I already tried various solutions but with my configuration (Oracle EE 10.2.0.4 and Windows Server 2003 R2 X64) the only possible solution (apparently) is the following.
    I create a Table with the info I need:
    CREATE TABLE logonaudittable
    event VARCHAR2(15),
    sid NUMBER,
    serial# NUMBER,
    orario DATE,
    username VARCHAR2(30),
    osuserid VARCHAR2(30),
    machinename VARCHAR2(64)
    I create a trigger for Logon Data, one for Logoff and one for Logon Fail:
    LOGON trigger.
    CREATE OR REPLACE TRIGGER logonauditing AFTER LOGON ON database
    DECLARE
    machinename VARCHAR2(64);
    osuserid VARCHAR2(30);
    v_sid NUMBER(10);
    v_serial NUMBER(10);
    CURSOR c1 IS
    SELECT sid, serial#, osuser, machine
    FROM v$session WHERE audsid = userenv('sessionid');
    BEGIN
    OPEN c1;
    FETCH c1 INTO v_sid, v_serial, osuserid, machinename;
    INSERT INTO logonaudittable VALUES ( 'LOGON', v_sid, v_serial, sysdate,
    user, osuserid, machinename );
    CLOSE c1;
    END;
    LOGOFF trigger
    CREATE OR REPLACE TRIGGER logoffauditing
    BEFORE LOGOFF ON database
    DECLARE
    machinename VARCHAR2(64);
    osuserid VARCHAR2(30);
    v_sid NUMBER(10);
    v_serial NUMBER(10);
    CURSOR c1 IS
    SELECT sid, serial#, osuser, machine
    FROM v$session WHERE audsid = userenv('sessionid');
    BEGIN
    OPEN c1;
    FETCH c1 INTO v_sid, v_serial, osuserid, machinename;
    INSERT INTO logonaudittable VALUES ( 'LOGOFF', v_sid, v_serial, sysdate,
    user, osuserid, machinename );
    CLOSE c1;
    END;
    LOGON FAIL trigger
    CREATE OR REPLACE TRIGGER logonfailauditing
    AFTER SERVERERROR ON database
    DECLARE
    machinename VARCHAR2(64);
    osuserid VARCHAR2(30);
    v_sid NUMBER(10);
    v_serial NUMBER(10);
    CURSOR c1 IS
    SELECT sid, serial#, osuser, machine
    FROM v$session WHERE audsid = userenv('sessionid');
    BEGIN
    IF (IS_SERVERERROR(1017)) THEN
    OPEN c1;
    FETCH c1 INTO v_sid, v_serial, osuserid, machinename;
    INSERT INTO logonaudittable VALUES ( 'FAILLOGON', v_sid, v_serial, sysdate,
    user, osuserid, machinename );
    CLOSE c1;
    END IF;
    END;
    The I create a trigger that starts every time something is written on the table.
    This trigger needs to start an EXE file that writes the latest data written on the table into the Windows Application Log.
    So I need a trigger that executes my WRITELOG.EXE file adding the parameters. For example:
    Execute WRITELOG.EXE event sid orario username
    So my program will write a Log in Windows with this data:
    Event: LOGON
    Sid: 2938473
    Orario: 12/12/2011 11:45:32
    Username: Scott
    And so on.
    I already have the program that does this, I need to execute the program with the right data directly from trigger or from a procedure executed by my trigger.
    Hope I've been clear and REALLY hope someone can help me!!!
    Thank you all!

    The java and PL/SQL you need to set up is in the very first response in the link. (I don't have a windows Oracle DB DBMS_JAVA to try it myself). Change the UNIX command '/usr/bin/ls' to your Windows command 'c:\yourdirectory\FILE.EXE'. Assuming you created everything and set permissions as Tom describes (later in the thread), your PL/SQL call in your trigger might look something like this:
    CREATE OR REPLACE TRIGGER logonauditing AFTER LOGON ON database
    DECLARE
    machinename VARCHAR2(64);
    osuserid VARCHAR2(30);
    v_sid NUMBER(10);
    v_serial NUMBER(10);
    CURSOR c1 IS
    SELECT sid, serial#, osuser, machine
    FROM v$session WHERE audsid = userenv('sessionid');
    BEGIN
    OPEN c1;
    FETCH c1 INTO v_sid, v_serial, osuserid, machinename;
    INSERT INTO logonaudittable VALUES ( 'LOGON', v_sid, v_serial, sysdate,
    user, osuserid, machinename );
    RUN_CMD('c:\yourdirectory\FILE.EXE LOGON '||v_sid||' '||v_serial||' '||to_char(sysdate,'MM/DD/YYYY')||' '||user||' '||osuserid||' '||machinename);
    CLOSE c1;
    END;
    Since you want to log what the trigger is writing to the table, you can call the executable with the same information you are writing, instead of writing then reading it back out again.

  • Execute .exe file thru oracle pl/sql

    Hello Everyone,
    Actually I had to execute a .exe file thru pl/sql..............Can you all plz tell me how to do so??????
    Thanx in Advance

    Good Morning Paritosh
    I have solution for u..
    just try following link , it will work for u.
    http://orafaq.com/scripts/plsql/oscmd.txt
    and post ur feedback
    regards,
    Abhijit.

  • Does LCDS permit executing .exe files

    hi
    Let me explain what I want to do...Actually I'm working on an
    AIR app which is a GUI for ffmpeg(a video converter which uses
    command prompt). A user can upload files to the FMS using this AIR
    app... When the user uploads a video, I want my flex app to
    automatically invoke the video converter and convert it to .flv
    format.. (After the upload) ...So I'm using LCDS... What I'm asking
    is can I invoke a .exe file from an AIR app..??? I read about some
    security issues with this..So I wrote a Java code to invoke the
    .exe....The Java code executes fine when run separately...But when
    I used Remote object in the flex code, although the java code
    executes....The .exe doesnt get invoked...How do I manage???

    If it is an exe file and your running osx, it's not going to work.
    You can try crossover office (http://codeweavers.com), but that may or may not work.

  • How to execute exe file from pl/sql

    How to execute an exe file or an operating system command from pl/sql in oracle 9i.

    If it is part of a pl/sql block, use the java suggestion. If you are not in a blck, you can use the "HOST" command. see
    http://download-west.oracle.com/docs/cd/A87860_01/doc/server.817/a82950/ch2.htm#1001697

  • Create executable(*.exe) file

    I was able to create and executable file(*.exe) but it didn't include all neccessary libraries(*.dll), i.e NIVIsSVc.dll, imaq1349.dll .... So just wondering if some one could guide me to create an executable file with all neccessary libraries to run one different machine? I have LabView 8.2.1 and XP OS. My *.exe file is to capture an images from the camera(FirWire 1394) and save to a file on hardrive.
    Thanks,
    Shaun
    Solved!
    Go to Solution.

    I would start the build process over.  First create an executable that includes all of the neccesary files (dll's and user made subVI's).  Also, select the supported languages that you will need.
    Next we can build an installer.   When you build and installer, select the LabVIEW Run-Time and any drivers (IMAQ)that you need from the Additional Installers category.  When building this installer, you will be promted to find the location that you installed the drivers from.  It looks like from your previous post that this will be from a CD.  This installer should let you take your project to computers that do not have any NI software them.  I have provided a couple of links to tutorials on building executables and installers.
    http://zone.ni.com/devzone/cda/tut/p/id/3303
    http://zone.ni.com/devzone/cda/tut/p/id/5406
    The second link is for DAQmx but it could be helpful.
    Regards,
    Jon S.
    National Instruments
    LabVIEW R&D

  • Opening a file with any executable .exe files

    plz tell me if u have ne idea abt the opening any given file or the information contained in it with
    another application i.e .exe file for example the text document has to be opened with a textpad..
    it is very urgent..plz
    neha

    See if this is useful.
    what made you ask this question in Swing Forum ?
    Process P=Runtime.getRuntime().exec("notepad "+"C:\\A.txt");        
    //Process P=Runtime.getRuntime().exec("D:\\j2sdk1.4.2_05\\bin\\javac.exe  "+"Demo.java");
    InputStream err = P.getErrorStream();
    InputStreamReader in = new InputStreamReader(err);
    BufferedReader buff = new BufferedReader(in);
    String line = null;
    while ( (line = buff.readLine()) != null)
    System.out.println(line);
    int exitVal = P.waitFor();
    System.out.println("Process exitValue: " + exitVal);

  • Execute .exe File With Arguments From CaptiveRuntime Air Application

    Hello,
    We have an AIR application compiled as a Captive Runtime app. We need to launch a Native Process (an exe file) on application startup and pass some arguments to that exe. Are there any examples on how to do this? Any resources we can look at for guidence?
    Thanks!

    Hi,
    You need to use Integration technology like BlazeDS or LCDS.

  • How to create executable(.exe) file to extract a .zip using winzip self extractor

    Hi i wanted to create an .exe file extract the content from .zip using winzip extractor,  please
    see the below piece of code. the same is working in 32bit machine, but not working in 64bit machine windows server 2008
      private bool CreateExeFile(string directoryPath, string zipFileName)
                bool status = false;
                string emuPath = String.Empty;
                emuPath = System.Configuration.ConfigurationManager.AppSettings["winzipSe32Loacation"];
                //string emuParams = @" -e " + directoryPath + "\\" + zipFileName + ".zip " + directoryPath;
              string emuParams = " " + directoryPath + zipFileName + ".zip -win32 -y "; 
                //string emuParams = " " + directoryPath + zipFileName + ".exe a " +zipFileName +".Exe -mmt -mx5 -sfx" + directoryPath;
                try
                    Process p = new Process();
                    ProcessStartInfo psI = new ProcessStartInfo(emuPath, emuParams);
                    psI.CreateNoWindow = false;
                    psI.UseShellExecute = true;
                    p.StartInfo = psI;
                    p.Start();
                    p.WaitForExit()
                    status = true;
                catch
                    status = false;
                return status;
    Regards
    Bharath

    Hello,
      What error with you program?
     if the reply help you mark it as your answer.
     Free No OLE C#
    Word,  PDF, Excel, PowerPoint Component(Create,
    Modify, Convert & Print) 

  • Differences between Debug .exe file and Execute .exe file

    We are very confused by the following problem when we are using
    LabWindows/CVI to develop our application:
    Our program is for retrieving data from real time and process the data to
    get the statistic results. If we run the program using "Run >> Debug
    OurProject.exe", it runs very well. However, if we run this same program
    in
    two steps: first using " Build >> Create Debugable Executable" menu, then
    using " Run >> Execute OurProject.exe", it can not run and outputs very
    different results. How come does this happen? What's the difference between
    these two kinds of running a program? Please help!

    it might be that there are some variables not initialized. the development environment automatically initializes all variables. an executable program does not.

Maybe you are looking for

  • Transfering 14 gig of music with USB 1

    They way I understand things is that if the hard drive is constantly spinning the battery life is significantly decreased. I have 14 gig of music and as USB 1 won't charge as it transfers I am worried that if I buy a new ipod I won't be able to trans

  • Export page as graphic

    hi! can export a page from my muse web site as a graphic (png, jpg, pdf)? thanks! kt

  • Java 32 bit

    a view weeks ago disable apple  java 32 bit , than i download than an other version  java 64 bit. know i have a problem,and i can not use my webcam anymore.know i wanne know,if there is an other webbrowser that i can download,with i can install the j

  • I want the old version of firefix

    I just recently downloaded the newest version of firefox, but I dont like it very much because it is not compatible with the version of norton 360 that i have and all my passwords are saved on there. so is there any way i can download the old version

  • Firefox crashes when viewing java applets

    Hi, Whenever I view a page with a java applet, Firefox exits and gives the following output: Plugin: unexpected work request from child INTERNAL ERROR on Browser End: Code = f60006 System error?:: Success Some grepping shows that this is coming from