exe

simple command prompt one line into exe

I have a perl script that I run from the command prompt: 3 times a day, the problem is now I need to run it every two hours. Im not going to be on an episode of lost so I need some help. Here is the command: Perl C:/test/scripts/edi.pl Does anyone know how this above one line command can be made into an executable (.exe) file so I can ...

.py to .exe, three questions

I want to package a Python script so that it can run as a standalone program on Windows XP and later Windows versions. Now to do this I'm pretty sure I'll have to convert it to an .exe file. I know methods exist, what is the easiest/best method? Now this is where the question gets a little more advanced. I also have some modules the p...

Registry Association Problem

Hi Guys, I have a my own file type .Has and a program HasEditor which i want to be Default program for my file type. but when i right click on the has file select open with and browse to HasEditor.exe it just attaches internet explorer insteat of HasEditor.exe. What exactly happens is strange when i double click HasEditor.exe its icon ...

Powershell: call an exe with parameters from items in an array?

I have a set of commands that I'd like to run and do some returncode checks against the result, so i figured it would be easy to put them into an array for execution. Let's take this one as an example: C:\windows\system32\inetsrv\AppCmd.exe set config "Default Web Site/" /section system.webServer/webdav/authoring /enabled:true /commit:...

Multiple icons in executable in VS2010 (VC#E2010)

I have Googled and found multiple ways of adding multiple icons into the executable, but they all seem to work for VS 2003-2005-2008, nothing for VS2010. I have not tried the Win32 resource with /win32res because I do not know how to use it (can't figure to get a good Google result for that either). Any simple suggestion? Thanks in adva...

self-extractor that will extract and run a file

i have two files, an EXE an DLL the exe is a build of a vb.net application and i need the DLL in there too what i want is a self extractor that will put these files together, then when run it will extract them and immeidately run the EXE is there a VERY SIMPLE and EASY TO USE OUT OF THE BOX software that will do this? commercial or no...

Installshield Run EXE then wait for completion before running another

Hello, I am using Installshield, and have had success in launching my exe install files (such as KLite) after all my files have transferred to their target destination. My question is this: I am currently able to launch all the install exe's necessary, but they all launch at the same time, which can be rather annoying and cluttering. ...

Possible channels of communication between Javascript on HTML page and a windows EXE ?

Hi all Here's the thing. A two-way communication (RPC-style) is needed between Javascript on HTML pages provided by a web server online (with session-management and whatnot) and a windows EXE application running on the PC of the website visitor. Both are parts of the same 'package' and should be able to communicate. There is the us...

Force File Download prompt in IE for .NET executable?

We have a .NET executable that we are hosting on a web server. The domain for the web server is set as a "Trusted Site" on the user's IE. When the user left clicks the link for the executable, it blows up with the error: "Microsoft IE Execute shell has encountered a problem and needs to close". From what I have read, it is because IE ...

Help me with py2exe

I made my program, and tested it in Command Prompt(by entering in the directory). Then I made a set up file, and put the setup file and my program in the same folder. My setup file: from distutils.core import setup import py2exe setup(console=['C:\Python26\test\testprogram.py']) I went to run the setup program in command prompt(by e...

How to disable an exe file after first installation?

Does anybody know the solution for this? I create an exe file of my software. After first installation I have to disable the exe, so it cannot be run again because when someone purchases the software from me they can install it only once. ...

C++ output with webpages

Is it possible to have a c++ program like this... #include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0; } And have it's output on a webpage like this... <html> <head> <title>C++</title> </head> <body> <div src = "cpp.exe"></div> </body> </html> ...

Compile stand alone exe with Cygwin

I want to make a stand-alone exe with cygwin. I have two options: Staticly link cygwin1.dll If I can statically link cygwin1.dll, then I can get a stand-alone exe. Merge cygwin1.dll with myprog.exe If I can merge cygwin1.dll with my program, the I can get a stand-alone exe. Do not suggest that I use IlMerge. This will not work beca...

windows application that launch out of browser silverlight application and do other work

i wanna create an exe that check the running processes on the windows and launch my xap file i wanna close it if another software was running I read the silent install scripts but yet still confused how can i use them examples will be appreciated Thanx ...

nunit problem loading exe

hi, following situation: tests.dll contains a bunch of unit tests program.exe contains some to be tested classes tests.dll contains tests using the classes in program.exe therefore tests.dll has a reference on program.exe nunit-agent.exe loads tests.dll and this then loads program.exe --> basically in the nunit environment program.e...

run exe from web page ?

Hi I want to make a web page that lunches an exe on the server when loaded i tried php: exec('filename'); but this wont show the gui it only work with console apps i also tried .net to do that it worked when debugging but not when using iis any one can help me? ...

About ImageBase of .EXE in windows

I just learned ImageBase is specified in PE format,and OS will load it to the exact position for .EXE , then comes the question: what if two .EXE is requiring the same ImageBase location? ...

Retrieve header information from exe

Hellow every one. I was wondering whether it would be possible to write a python script that retrieves header information from an .exe file. I tried googling but didn't really find any results that were usable. Thanks. Sept ...

Deploying application question (C++)

Hello! Does someone know if there is a way to pack everything-application related into one (single) exe-file? My product is fully written in C++, has a lot of external plugins (dll) and some external data packages. It should be accessible using the network and without installation (launch in one click). Are there some tools to make ...

[C#] VisualStudio 2008 exe problem

Hi guys, I have a VisualStudio Solution with 5 projects. I have 3/5 projects that has an .exe file on <mysolutionpath>/bin folder. Recently, I have added a new Project to my solution (a project with Main entry point) and I would its .exe file on <mysolutionpath/bin directory. But I have exe on <mysolutionpath>/<recentproject>/bin and I...