0
votes
1answer
26 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 ...
0
votes
3answers
67 views

how to deploy win32 api application as executable

I want to deploy my win32 as exe application so that others(who don't have VC++ installed) can use it. Please keep in mind that I am a newbie and so dont be harsh on the kid. For the info: I am using ...
0
votes
1answer
50 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? ...
1
vote
2answers
132 views

identify portable executable

I want to write a program that allows or blocks processes while openning a file depending on a policy. I could make a control by checking the name of the program. However, it would not be enough ...
0
votes
1answer
106 views

Can I find an offset of a resource in an EXE file with C++?

I'm writing a custom module that checks EXE files for consistency (which is not a part of this question.) For that I need to know an offset of a certain resource in the EXE file to calculate the size ...
1
vote
1answer
174 views

modify resource for String table type in win32 native exe

i want modify some string in my exe resource. That resource type is a string table, but when i use UpdateResource function i don't know what parameter must be pass to it so it's pointing to the ...
0
votes
1answer
86 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: ...
1
vote
2answers
250 views

Extracting icon using WinAPI in Qt app

I'm trying to extract icon from exe file using WinAPI, but it doesn't work. Here's the code: QIcon OSTools::AppsInterface::extractAppIcon(const QString &fileName) const { wchar_t ...
1
vote
3answers
515 views

What does MapViewOfFile return? [duplicate]

Possible Duplicate: Why won't the loader load at the desired location "MapViewOfFile", does this function map a file into the virtual memory and return the base address of the mapped ...
0
votes
2answers
85 views

Unexpected output

The following code is supposed to print out the names of all the sections in the specified exe (c:\linked list.exe in this case), but it produces some bizzare output. Can someone please help me figure ...
0
votes
1answer
214 views

How to copy resources from one executable to other

Ok my question is a little odd. But here we go. I am trying to develop an executable file "wrapper" and a console program. The task of the console program is to copy Icons and Version Informations ...
0
votes
1answer
188 views

How do I make a Win32 PE executable with included resources and specific VERSIONINFO information with an x86 assembler?

What tools would I use to create a Windows 95 and NT compatible executable that includes specific resources (.rsrc data) and specific VERSIONINFO data (such as the "CompanyName" and the ...
2
votes
1answer
143 views

How to tell if a windows PE file is a console subsystem or a windows subsystem programmatically?

Basically I need a program that will sort windows .exe's from the console counterparts. A file scanner: SortExe(file exe) { if (IsPeWindows(exe)) { AddToList1(exe); } else if ...
2
votes
2answers
191 views

Can one detect how .exe was launched?

I want to be able to detect whether a given exe was shellex'd programmatically or if it was entered and executed interactively in, say, CMD.EXE. Is there anything about the way an exe is launched ...
3
votes
2answers
2k views

C++/CLI: Use LoadLibrary + GetProcAddress with an exe

Up until now, I had some sort of plugin mechanism in which I loaded dlls using LoadLibrary and GetProcAddress to create a concrete object and return a common interface. This worked fine until I ...
2
votes
1answer
211 views

Generate user customized .exe from another .exe in c++

In this project there is going to be two .exe files: Main, in this user can adjust settings and generate a .exe (child) Child, this .exe will have these user customized settings So basically the ...
1
vote
3answers
491 views

Get Memory Address of Binary Instructions

I'm currently working on some system level code where I would like to be able to identify the memory section(s) that are from the loaded binary in order to detect things like corrupted or modified ...
0
votes
3answers
693 views

How to extract icon from executable using PHP?

I need to extract the icon (.ico file) out of an executable (.exe). I asked something similar in another question but the fact I asked it for linux wasn't a good idea. I need it for PHP... but this ...
1
vote
1answer
187 views

Modify exe resource using Java?

I need to modify the string table of a win32 exe using Java. I'm wondering if a library that does this exists, free or otherwise. If there is no existing lib, how should I go about doing this? ...
1
vote
1answer
430 views

String Table Resource in Native Executable

Using C#, can I modify the string table resource of a native windows executable?
1
vote
3answers
556 views

C++ Win32 Replace Strings in an Executable

I'm looking for a good way to replace several strings inside a native win32 compiled exe. For example, I have the following in my code: const char *updateSite = "http://www.place.com" const char ...
0
votes
2answers
329 views

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

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 ...
0
votes
1answer
182 views

How can we check that a binary EXE (PE) is COM Exe or Win32 Exe?

I need to check programatically whether a given EXE binary is a COM, EXE or Win32.exe, is this possible through the Import Table? Where in the registry should I look to find out if a binary is ...
5
votes
2answers
4k views

How to detect what was the PE packer used on the given exe?

I've found an application which seems to be packed. I opened it with some hex editor and it contains "UPX1" section and "3.00 UPX!" string. Unfortunately I'm not able to decompress it with upx latest, ...
19
votes
8answers
12k views

How do I programatically get the version of a DLL or EXE file?

I need to get the product version and file version for a DLL or EXE file using Win32 native APIs in C or C++. I'm not looking for the Windows version, but the version numbers that you see by ...
1
vote
4answers
1k views

Can the DllMain of an .exe be called?

My question is not exactly the same as this one (it's not theoretical, there is only a main thread without message loop, InitInstance and ExitInstance are no fitting calls). I'm using a console app ...