exe

How to tell if two exe's are the same code-wise?

Is there a way to detect whether two EXE's (compiled from VS.Net 2008 for C++/MFC) do not have any code-level changes between them i.e. for purposes of knowing that there have been no statement changes. This is for compliance purposes when my vendor ships me an exe, ostensibly with no changes made to the code since the last time we ...

Strange MSI error when setup.exe is run

We're using Visual Studio 2008's Setup Project to create an installer for our .NET 3.5 app. We host the .exe and .msi files on a website for our client to access, and produce new ones regularly to provide updates. This has all been fine until recently we've noticed some cases where installing via the .exe fails. The symptoms are: The .e...

the executed section

How can I retrieve in exe file point where IP is pointing to on the beginning ?? Is it pointing always on the start of .text segment ? ...

Understanding EXE Internals

I was attempting to install an exe that requires a serial number before the install, which the vendor has not provided to us yet. This got my wheels turning about whether there is any information that can be gained from viewing an exe using a hex editor/VI/etc? Using VI to view an exe, I can see some sections of plain text, but it is...

Is anyway to make the php projects in exe format?

It is possible to make the php projects in exe format (i.e like vb project exe format) ? Please help me, thanks in advance ...

how do i create a .exe that runs a java program?

i have a really basic java program just one .java/.class file (.java uncompiled .class compiled i guess) how do i make something that i can have run on someone elses computer? ...

Calling a windows executable (.exe) from ColdFusion app

I have no experience with ColdFusion, but I'd like to find out if it's possible to call a windows .exe file from a ColdFusion app (assuming the app and the .exe are running on the same machine) and then use the response from the .exe to pass to another method in the ColdFusion app (or for simplicity's sake just display the response in an...

How to call a unmanaged C++ exe from managed c++ exe.

Please tell me how to call a unmanaged c++ exe functions from managed c++ exe or dll? help with code example would be more useful. Thank you ...

How to compile a .cpp file into a Windows executable (.exe) file in Linux

I make this program in C++ using Code::Blocks on Ubuntu. I need to turn it into a Windows executable binary (.exe file), but I don't know how to do this. Is it possible? ...

Viewing the CLI of a portable executable

What is a good program to get a nice, human readable form of the CLI of a portable executable file? I don't want a full disassembler because I'd like to learn how they work (or, in my case, not work). ...

copy exe file from IIS server using VBScript

Copy exe file from IIS server using VBScript ...

C# Launcher program(ConsoleApp) that launches other executables

I've written a launcher program that fires off a given number of executables, with the following code: Process.Start(strPath2EXE); The problem I'm running into is it seems I'm being limited to launching only about four copies of the executable. Is there a different way I can launch the executables without this limit? I'm hoping to run ...

Pattern Recognition for image comparision in .net

hi Can anybody share code or algorithm(using pattern recognition) for image comparision in .net. I need to compare 2 images of different resolution and textures and the find the difference . Now i have code to find the difference between 2 images using C# // Load the images. Bitmap bm1 = (Bitmap) (Image.FromFile(txtFile1.Text));...

How Can I convert Java To Exe

Possible Duplicate: Compiling a java program into an exe Hi, I'd like to convert my java application to exe file which is not depends on a pre installed JRE file. Which tool can do so? I prefer to converty my application to a real exex file. Thanks, Eyal. ...

How to make .EXE for demonstration of a Android Software built in eclipse?

I am almost done with my project in android, now I want to make the executable version of the application. I need to demonstrate it in .exe form as soft app as on emulator, not by built and debug process from eclipse. need immediate idea ...

Run a method from an exe file

Hi I need to call a method from an exe file ProcessStartInfo startInfo = new ProcessStartInfo(@"exeParser.exe"); startInfo.WindowStyle = ProcessWindowStyle.Normal; startInfo.CreateNoWindow = false; startInfo.RedirectStandardOutput = true; startInfo.UseShellExecute = false; startInfo.Arguments...

merging exe files

let's say i have a setup file called setup.exe i want to make this setup.exe include another exe file inside of it !! how can i do that ? or what is this process called and i will try to search and learn p.s i would do that with C , C++ p.s the other exe isn't a virus don worry :) it's a security file that will block that sof...

How do I find available parameters of an exe file?

Hello, I have an exe file that accpets parameters. For example, a.exe parameter1 parameter2 parameter3 the problem is that I am not sure what parameters areavailable. Is there a way to find out it? the exe is complied by visual c++. Thanks. ...

Can I embed an exe in a pdf, doc, ppt or any other file format?

Is there any way that I can embed a .exe file in a .pdf, .doc, .xls, .ppt file, and on opening the containing file, the document processor will run the .exe automatically? ...

Accessing a drive on remote server via app.config

I am working on a website with a scheduled dataloader exe. The website lives on the web server and the dataloader lives on the DB server. One of the steps in the process is for the dataloader to access the WEB server (to copy/paste a maintenance page file..e.g.\192.168.1.101\c$\maintenance.htm). I am, not surprisingly, running into ...