0
votes
1answer
16 views

How do I install latest/later gcc on cygwin?

Is there somewhere where I can just download the latest gcc.exe binaries for Windows and place them inside /bin, just like other compilers (bcc/msc)? I'd try not to touch ...
0
votes
0answers
175 views

Install and use exe files in Andriod devices [closed]

I have recently bought a samsung Tab2 P3110(Wifi only). I'm impressed with the specs but the only problem which I face with this is during a long journey, that I'm not able to connect to OTG internet ...
-3
votes
0answers
38 views

How do I open an external .exe file from java? [duplicate]

I would like to open an external EXE file directly from a line of code. I have done it before, but I have no idea what I did. Please help me! ======================= Notes =================== I ...
-1
votes
0answers
22 views

How to call GCTA exe from R. [closed]

How to call GCTA exe from R. Like calling the function from R in windows computeGRM(genotypeheader,grmfullheader=grmheader,gctaname="gcta",idfile=idfile) . Actually I would like to use the function ...
1
vote
0answers
18 views

EXE's VERSION info not displaying in Properties dialog (Windows XP)

I have built a Win32 console application using Visual Studio 6.0 in Windows XP. The EXE does have a VERSION resource. I can open the EXE and display the version information with Visual Studio or with ...
-3
votes
3answers
77 views

Programming language that makes the smallest executables? [closed]

I am looking for a programming language that generates the smallest EXE files. It also needs to have no dependencies other than the DLLs that come with and are common to the following OS's: release ...
0
votes
1answer
34 views

Default icon for .exe file regardless of Windows version

I show a bunch of exe files in a listview, and I want to show their default icon, but if the exe file has no icon resource, I would like to show the Windows default application icon regardless of the ...
1
vote
1answer
87 views

Can't open python.exe in Windows Powershell

I've had my python program removed from windows a while ago, and recently downloaded python2.7.4 from the main site, but when I type "python" in the Windows PowerShell(x86) prompt from C:, I get the ...
0
votes
2answers
57 views

How to get installed exe file system path after scheduling in windows scheduler?

I have written in my console application a line System.IO.Path.GetFullPath("ApplicationSubDirectory") to get application directory file system path. I build this application and installed exe in my ...
1
vote
1answer
80 views

how to start a program using a windows service?

I created a windows service in c++ using visual studios and now I want the service to run an exe file. The service is set to start every time the computer starts i know i need to use code to locate ...
-1
votes
1answer
171 views

Install Windows 8 in Ubuntu without no iso [closed]

I have a Windows 8 installer (Windows8-Setup.exe) in an exe format in a Ubuntu environment. I am trying to install Windows, but I can't seem to run the exe file in Ubuntu. I know how to burn an ISO ...
0
votes
0answers
32 views

Windows : Running a PHP script through shell but unable to get PID

I am running a PHP script through shell and want to get PID but I am unable to do that. I am doing like follwing $phpscript = 'cronjob.php'; $errorStatus = null; $errors = array(); $test = ...
-1
votes
1answer
37 views

windows xp : running exe from an image [closed]

My friend is doing some college project and he needs to run exe file from an image. I search on the net and tried : D:>copy /b RainyDay.jpg + "vnc viewer.exe" qw.jpg but when i click on qw.jpg, ...
0
votes
1answer
51 views

Assembly: What is the best way to print something to screen (to command line)

I've been doing some research, but I only find more and more ways to do what I want and I don't understand any of them. What code do I need to assemble into an .exe to return 5 to the command line? ...
0
votes
0answers
42 views

Very Weird windows service behavior when using py2exe

I coded out a windows service in python to write some text to a file continuously and installed it and ran it and it works fine. Now if I try to convert my python windows service script into an ...
1
vote
5answers
179 views

How to execute any .exe by using a batch file?

I know that I can start an exe by doing: start "" /b filename.exe But that requires me to know the name of filename.exe, how could I do that for any general file ending with .exe? I tried the ...
1
vote
2answers
203 views

Cygwin Bash from Windows Cmd Not Running Executable

I have a program I've compiled in cygwin, that I am trying to call from a batch file a la: D:\cygwin\bin\bash --login -i C:/ILS/trunk/NAVAID/test.exe But I am getting the error: bash: ...
0
votes
0answers
37 views

how to: save exe with bbfreeze

I've had one course of computer science so far and now I'm playing around with some of the GUI's I've made. I wan't to save my exam-GUI as an .exe/application that can run without python installed. I ...
0
votes
1answer
33 views

Convert EXE file into MSi with all its dependencies

I have a exe file but it has got some dependencies files with it in sperate folder, and i need to make it to MSI whihc also includes those dependencies files as well so i can run it from network to ...
-1
votes
1answer
52 views

How are complex executable files written? [closed]

voting down this question is fine obviously, but please tell me why it's stupid or otherwise undesirable, I'm just trying to learn My aim is to comprehend complex programs like Chrome. I ...
0
votes
2answers
59 views

Is there a way I can make a exe, bat or other file in Windows type to change the cursor to 'busy' after execution?

I am trying to simulate a busy window or even more simple, a busy cursor by executing a file that will change the cursor for a set amount of time. I would like to be able to control the amount of time ...
3
votes
3answers
126 views

Windows exe launcher for Java app with JRE check

I need to distribute a Java application and I want an installer to install it in all cases. I need to create an *.exe launcher that will check the installed JREs and if the required JRE isn't ...
-3
votes
1answer
62 views

Manifest for Windows XP SP3? [closed]

I'm looking for a manifest file for themida to make the executable file open as admin and in Windows XP SP3 compatibility modus. Could not find this Manifest nowhere, anybody some idea?
0
votes
1answer
54 views

Linking: making virtual address corresponding to file offset

I'm having small problems with getting my system working, so I decided to ask question if is it possible to make virtual address corresponding to file offset. So if virtual address of my .text section ...
3
votes
1answer
61 views

Is entry point on correct place?

In these days I was reading some PE executable specifications. Then I made small C program doing push ebp, pop ebp and I compiled it. After successful compilation I opened PE file in executable and ...
-1
votes
1answer
119 views

How Can I host .exe File on Server For Multiple Remote Client To Use? [closed]

As mentioned above. I have an .exe file that needs to be opened by client (Windows XP). I tried to host it as web, it fails because of browser security issue of executing exe. How can I achieve ...
0
votes
1answer
44 views

Running an .exe installer (on windows) through command line - and having it press “next” automatically

I'd like to run an .exe command for an installer of some software, and have "something" which presses the "next" button every-time the installer asks for it. Is it possible to command that through a ...
1
vote
2answers
211 views

pyInstaller: Import Error

I'm in Windows, using pyInstaller to package an python file. But something error occurred: Traceback (most recent call last): File "<string>", line 2, in <module> File "D:\Useful ...
2
votes
2answers
96 views

How to inspect a DLL for information

Is there a way to inspect a single(C++ compiled) DLL file and find out what Win32 function calls it makes? I have MyDll.dll file. I know that somewhere inside this dll, there is a piece of code that ...
0
votes
1answer
100 views

Embed manifest to exe failing with argument invalid

I want to add a manifest to .exe file so it stops asking users to run as administrator in Windows 7. I followed this tutorial which seems to do exactly what I want to accomplish except I get this ...
1
vote
2answers
83 views

How do I open an external EXE file inside of C?

How do I open an external EXE file from inside C? I'm trying to write a C program that opens Notepad, and some other applications and I am stuck. Thanks for putting up with my noob level of C ;p
7
votes
4answers
436 views

Making self-extracting executable with C#

I'm creating simple self-extracting archive using magic number to mark the beginning of the content. For now it is a textfile: MAGICNUMBER .... content of the text file Next, textfile copied to ...
0
votes
3answers
99 views

Making a php software into .exe [duplicate]

Possible Duplicate: Convert a PHP script into a stand-alone windows executable I want to make .exe file of my ERP. How do i convert my software into .exe? I have no idea about it. Its ...
-1
votes
1answer
28 views

Is Vc++ exe file get deleted?

I am beginner in VC++ developing. I have One doubt. Is exe file get deleted at shut down the machine while the exe is running?
0
votes
1answer
98 views

Scriptable PE resource editor

I need a tool that's commandline and which supports retrieving version information from the resources of a PE executable and also patch the binary with a new version. What I need to do is to automate ...
0
votes
0answers
149 views

How can I control another application within a panel of a C# program?

I have been reading lots on how to hosting exe Applications in a WinForm project. And I have read these articles and successfully run the Windows Journal application in a panel. How can I run another ...
0
votes
1answer
455 views

How To Make A Windows Application (.EXE), Which Will Run HTML Webpage

I want to create a desktop application for Windows, which will run specified website url in that. for example look this montage- i want a software like fluidapp.com (Mac Support). montage link- ...
1
vote
3answers
201 views

Unable to kill a process in Perl

I wrote a code to run an exe file as follow: #!/usr/local/bin/perl use Cwd; $directory = 'e:/USER/'; chdir($directory) or die ; system("Bnc25-Windows.exe -nw"); ...
0
votes
1answer
122 views

How do I make a custom windows service?

Actually I am having one java program. That returns "Hello World". I converted it to jar file. After that I changed the file type as .exe with the use of iexpress in my windows XP default sw. I used ...
1
vote
2answers
155 views

How to change windows exe file's icon in linux without wine?

I know I can use ResHacker to change a resource from windows and I know I can use ResourceUpdate function to do the same problematically (again in windows). My problem is that I have to update the ...
0
votes
1answer
81 views

How to check the existence of a Windows executable?

my $exe = "'C:/Program Files/Common Files/executable.exe'"; if(! -X $exe) { print "exe file not found"; exit 3; } my $cmd = $exe.' status'; @lines = qx ( $cmd ); My problem is that I can ...
2
votes
2answers
248 views

Writing to program memory in hex editor and reading programmatically

Well I have .exe application and some other file. What I want to do is to write this other file to the end of .exe file. .exe file should find the address of this file in its memory, read it from ...
0
votes
0answers
188 views

Python cx-freeze ubuntu 12.04 .exe

I would like create windows exe file in ubuntu 12.04 from python script. apt-get install cx-freeze cd /home/daniel/.app/ ls app.py How to create windows xp, vista, 7 run the app.py script? This is ...
0
votes
4answers
86 views

Building a windows application. How and What? [closed]

Basically I wanted to know which technology and languages should I use if I wanted to build a windows application. My requirements are: my application must be able to store data entries. a simple ...
0
votes
1answer
87 views

PowerPoint icons

I am working on a PowerPoint course for my students. I would like to replicate PowerPoint ribbon behavior in Flex. I spent huge amount of time trying to find ribbon icons as on the following picture: ...
0
votes
0answers
63 views

Task Scheduler and Task Action

I am trying to understand what is the purpose of some tasks that does not have any executable files associated with them? And how to figure out what will happen if they run or got initiated by the ...
1
vote
0answers
491 views

Creating a standalone .exe for a windows application in visual studio 2008?

I have created a windows based application in C# using visual studio 2008 which basically scans for the registry and then fixes the resulting errors. Now using the msi installer i have made a setup ...
0
votes
1answer
109 views

Obtaining a .jar from a .exe

What I'm currently dealing with is a Windows .exe that contains an executable .jar. I've tried running it through various .exe and .jar decompilers to no avail. My question is, how would I go about ...
1
vote
3answers
112 views

How to store user settings completely internally in an exe with C/C++?

this is more of a question on how and if, then to actually fix a problem. How can you store user settings completely internally in an exe with C/C++? Is this even possible, and if so how can it ...
-2
votes
2answers
565 views

how to make .exe file of a C++ program which uses graphics library that do not require compiler to run [closed]

I have a C++ program that includes graphics.h , I wish to create a deployable .exe file that is able to run on any computer having Windows OS but may not have C++ compiler.

1 2 3 4