executable

Delphi conditional compiling

Hello there, I need to know if is there any option to compile a delphi project only if the source or any used unit, package etc has been changed. If this is not possible, second alternative : Is there any option to generate exactly the same binary compiling two times the same project. Thanks. Edit: The usage is for a hash based WebUp...

Adobe AIR 1.5 - Package AIR installer as a native Windows Executable (.EXE)

Hello StackOverflow community, Is there any way to package the installer for an Adobe AIR application using Adobe AIR 1.5 as an executable (.EXE) file? I found that this is possible for Adobe AIR 2.0, but it requires an upgrade to Adobe AIR 2.0 runtime. Are there any other options using the Adobe AIR 1.5 runtime? Thanks, Mauricio ...

Adobe AIR 1.5 - Package AIR installer as a native Windows Executable (.EXE)

Hello StackOverflow community, Is there any way to package the installer for an Adobe AIR application using Adobe AIR 1.5 as an executable (.EXE) file? I found that this is possible for Adobe AIR 2.0, but it requires an upgrade to Adobe AIR 2.0 runtime. Are there any other options using the Adobe AIR 1.5 runtime? Thanks, Mauricio ...

edit security settings of a .exe from cmd prompt

Ok so I use Avira Antivir (do not comment if you are just going to tell me to get something else) I have the free version and i change the security settings of avnotify.exe, like many people who use the program, so i dont see the nag screen everytime it updates. But it seems they have been updating avnotify.exe when updates run too. so i...

Auto Executing Script For linux??

My Actual Problem was to auto execute a sh file to another host and return that output in my system. Is this possible?? "" I've to execute file @ host2 and get write input @ host1 "" ...

What Can I Do To Reduce My Executable's Size (Delphi)?

I release a single executable (.EXE) for a desktop program using Delphi 2009. I have no external DLLs or resources that I need for the program to run. I use two components: LMD Innovative's ELPack and Sergey Tkachenko's TRichView that are compiled into my executable. When I build my production version, using the "Release" build configu...

Can I run a binary file that is Mach-O executable i386 on linux?

I have a program that is Mach-O executable i386 and I was hoping to run it on a linux server. Is this possible?? If so, how? I can't see, to figure this out. Thanks! ...

Comparing generated executables for equivilance.

I need to compare 2 executables and/or shared objects, compiled using the same compiler/flags and verify that they have not changed. We work in a regulated environment, so it would be really useful for testing purposes to isolate exactly what parts of the executable has changed. Using MD5Sums/Hashes doesn't work due to the headers cont...

How to embeded images to EXE file and show them as slideshow

I have a requirement to build an Image manager which will allow users to build a collection of photos/images and then give them an option to convert these photos to a single EXE which when run, will show the photos/images on target PC as a slide show in full screen. Is it possible to do this for multiple images? ...

open an exe file from another exe file coded in vb

i have 2 vb projects that run perfectly. but i have this new requirement. I need to open .exe for project 2 from project 1. both the project have sql server database in back. so they have login/password and customer records that show according to customerid's in both. Now when i click "open project2" button in the first project, it shoul...

How to interface with an executable in C++

Hello, I have an executable that I need to run some tests on in C++ - and the testing is going to take place on all of Windows, Linux and Mac OSes. I was hoping for input on: How would I interface with the previously built executable from my code? Is there some kind of command functionality that I can use? Also, since I think the c...

Compiling a perl script to a .exe

Possible Duplicates: How can I compile my Perl script so it can be executed on systems without perl installed? How can I package my Perl script to run on a machine without Perl? what is the best way to accomplish this. I have been using the activestate add on for the komodo IDE, but my license expired and now I am trying to ...

Compile a Standalone Static Executable

I'm trying to compile an executable (ELF file) that does not use a dynamic loader. I built a cross compiler that compiles mips from linux to be used on a simulator I made. I asserted the flag -static-libgcc on compilation of my hello.cpp file (hello world program). Apparently this is not enough though. Because there is still a segmen...

Running an executable programmatically .NET

I would like to execute a program in .NET server side code. So far I have this: Process p = new Process(); p.StartInfo.FileName = "myProgram.exe"; p.StartInfo.Arguments = " < parameter list here > "; p.Start(); p.Close(); This is a console program. What happens is that console is opened and closed repeatedly wi...

How to distribute an Android application (so that people cannot see the source)

I have some java code that I want to share with some classmates however I do not want to share the source with them. What is the standard method to provide someone with a Java executable that they can use but they cannot see the source. Not sure if this is relevant but the code that I will be giving them will be run on android. ...

Problem creating an executable jar from scala file.

I'm tryign to export my project as a jar with IntelliJ 9.0. My project compiles and runs with no problem in Intellij, but when I write it to a .jar and open it, it will show an error. My Main class is something like: package Main //Imports object Main{ def main(args: Array[String]) { println("Main: Hello, world!") //do stuf...

Visual Studio output file permissions?

I'am using Visual Studio 2010, how to set or automatically change owner of the output file from Visual Studio (such as executable file) to user other than administrator? all output files currently is owned by Administrator (due to Visual studio is launch by administrative privilege), so sometime I can't delete those files due to access ...

How can I do a silent deployment with a wsp solution and exe.config file?

I have a SharePoint solution (packaged in a wsp file) created with WSPBuilder which is coupled with a simple Setup.exe and Setup.exe.config. The Setup.exe.config just points to a WSP solution. Is there a way to pass in values such as which webapplicaiton the solution is deployed to that way our customer can perform a silent install with...

Antivirus False positive in my executable

Hi, I just ran into an annoying problem. Suddenly Avira AntiVir startet to flag one executable from my software as being a virus. As the default action from almost any user is to click OK and Avira suggests to put the "virus" in quarantaine, most of my users are deleting this executable. Well, let´s not be arrogant and check if I...

how to find if a .exe is running in c++

how do you find if a exe is running (By name, i.e program.exe). Edit: Sorry im using it on windows ...