exe

I want to use an exe file programatically

I am using a software named Daisy 2.02 Validator and it is with GUI but i want to access it programatically so that i can control all the validation process through my C# project. I am unable to find any help about it's libraries, any .net Api or any DOS command for controlling it. Please provide me help. Thanks, Regard, Muhammad Waqas ...

CMD: Bat to Exe Converter - Temp directory problem

Hello, i am using 'Bat to Exe Converter' to convert my batch files to exe format. Now, i am running into some problems. Whenever i convert something, and i set 'Working Directory' to 'Current Directory', and i start my exe in echo on mode, this is what i end up with to check if there is a specific file in the directory of my exe: the ...

Specify DLLs for an exe launched with Process.Start?

I'm trying to launch an executable with Process.Start(). When the exe has no DLL dependencies, it works fine. However, when I need to include 2 DLLs, it doesn't work. I've tried setting the WorkingDirectory, and have verified that the 2 required DLLs are present there. Any ideas? ProcessStartInfo startInfo = new ProcessStartInfo(); ...

write/append in my own exe with c programming

How can I append my own exe to upgrade it with c programming. I have tried to use append mode in exe but helpless with it. Any way to modify any exe? There are simpler process for .txt but none for .exe. I want to add the codes or join the functions just like any program updates. ...

DLL EXE Hybrid C++ Windows

I am currently working with DLL injection and need to have a single hybrid binary that could act as both an executable and a DLL. I thought of maybe writing a DllMain and WinMain function and then compiling it as an executable but I don't know what would happen if I did that. I know that it is posssible to combine a dll and exe by using ...

how to toggle between the running exe files using c#.net code on button click?

sir i want to know that how could i navigate/toggle between the different exe files using c#.net code on my .net application on the button click event..basically i want to do toggling between the current and previously opened running exe files..im able to run an exe file on my .net application but not able to provide an option for openin...

to run an exe file in the panel of c#.net application

thanks..im searching for the right answer but still not got it.. my question: i want to run an exe file on my winform .net application within the panel using c# code im able to run exe file on the button click with System.Diagnostics.ProcessStartInfo and Process p = Process.Start("notepad.exe"); but what is the code to run this notepa...

embedding a third party exe within the panel of c#.net program

how to embed third party exe within the panel of my c#.net program by panel i mean a toolbox control that is drag and droppred in the winform. ...

EXE format - how to Interpret CS:IP

Hi I've got a problem with EXE format http://www.delorie.com/djgpp/doc/exe/. I've loaded my file as hex into my editor (qedit) then I disassembled that and I was surprised ! My CS equalled 0 and IP also but code of my program (maybe it's 00000040 ?) is starting several bytes later and I can't be even sure because the code which I wrote...

how to check already running exe in c#.net?

what is the procedure to know that when Everytime the user starts the application it will check if an instance is already running. If its not running it will launch it otherwise it will focus to the current one.i have already tried the code for singleton application but its giving lots of errors. its not running properly. can u provide m...

how to set focus and launch the already running application on button click event in c#.net3.5?

i have been trying the code using mutex but im unable to open my exe after button click im successful in not making the multiple entries of the application on the taskbar at button click but my application is launched only when i close my form.. i want to launch my application on button click and if the application is already launched th...

cx_Freeze problem with Tkinter

I'm trying do a executable for windows for a gui aplication in tkinter using the ttk, I made a exe with cx_freeze, but when run the app in the console, it give me the following error. D:\My Dropbox\python\SAR Calculator\src\dist_tk> Traceback (most recent call last): File "C:\Python31\lib\site-packages\cx_Freeze\ 7, in <modul...

how to embed exe files of 2 different env. in one using .net?

is there any way to embed two different exe's build in different environment..can be made to embed in one.. like i want to embed c# running program in the asp program?? ...

WIX Installing an EXE after Msi install finishes.

Hi, I have created an MSI package which when finishes runs an exe. <Package InstallerVersion="200" Compressed="yes" /> <Media Id="1" Cabinet="media1.cab" EmbedCab="yes" /> <Directory Id="TARGETDIR" Name="SourceDir"> <Directory Id="ProgramFilesFolder"> <Directory Id="INSTALLLOCATION" Name="Installer Example"...

Tracing the arguments of an external .EXE called within a VB.net app

A program for which I do not have the source code to is executing a third-party EXE file. I'd like to find out the arguments that it is sending to the EXE file (i.e. thirdparty.exe -c "foo" -d "bar"). I do know that the initial program is written in Visual Basic. Are there any tools that I can run that will monitor the execution call a...

Web enabled .EXE

Is it possible for a website to automatically run an external .exe file upon visiting? That is, an .exe file that is not already on the client file system. If so how is this possible? Also, i've read about the use of HTA files or ActiveX components or Java in this process. Is it possible for a java applet to write code to a client's file...

Merge two exe files into one programmatically

Hi Is there a way to merge two exe files into one, programmatically, so that running it would execute both older exe files together. I found some things on google about injecting code or dll files but is it possible two merge two exe files or to inject exe into exe? Thanks in advance. [EDIT] Thanks everyone. Just for those who said tha...

vb.net vs2008 empty executable

Is it possible to compile a vb.net project into an empty exe file (only containing the header information like version number, company, product name etc) in VS2008? ...

How can I convert a JAR file to an EXE file?

I have created a JAR file and I want run it on a client. I have a couple of questions: How can I convert the JAR file to an EXE file? How can I encrypt the JAR file's contents? The jar file could be extracted with WinRAR and the classes could be decompiled with any Java decompiler. How can I create a installer? My clients doesn't have ...

Decompiling .NET 2.0 binary

Is it possible to decompile a .NET 2.0 binary file (*.exe) to some sort of readable code? Or if not, just extract some information from it (for example method names, debugging information, etc.)? ...