2
votes
1answer
42 views
Where does windows get the program name for the ‘are you sure you want to run this program’ dialog for downloaded exes?
On one of my projects, the downloaded installer file gives the internal name for the program name in the 'Do you want to run this software' warning dialog, rather than the external name. Where does …
3
votes
2answers
64 views
Python 2.6: reading data from a Windows Console application. (os.system?)
I have a Windows console application that returns some text. I want to read that text in a Python script. I have tried reading it by using os.system, but it is not working properly.
import os
foo = …
0
votes
3answers
37 views
HOWTO add aggregate .NET COM Interop to an ATL EXE Server??
Hello,
I would like to know how one can add a .NET C# COM object (created using the COM Interop facility of .NET) to a Visual Studio 2008 ATL EXE Server. Basically, I am trying to create an out of …
3
votes
3answers
148 views
Creating portable (non-installing) windows applications in C#
I have a .net 3.5 application and i'd like to make it portable.
It's simple and runs perfectly, i've sent the .EXE + .DLL's to some friends and it works as intended when running the exe with the …
2
votes
2answers
61 views
C++: Loading an EXE as a DLL, local vftable problem
Ok, so this one is abit long to explain so bare with me..
I have an exe named test.exe which is usually used as a stand alone application. I want to use this exe as a module (a dll) inside another …
0
votes
3answers
76 views
Creating single EXE file for project using .Net and another external library
I have an email client created for class that we need to run as a single EXE. It is made with C++ .NET, and the external POCO library, which has a ton of DLL files... What would be the best way to …
0
votes
4answers
116 views
How to deploy C# code to a server? How to run an exe on a server?
Th short story is:
I have a Godaddy shared Windows server account and I have some C# code on my computer that runs perfect locally. I want to run this code on the server as an exe file. Is this …
0
votes
1answer
44 views
how to use java jar in c/c++?
i am a new developer of java swing. i want to pack the GUI program. With the help of neatbeans, i get a file of java jar. But i want to convert the jar to exe file, although i know exe4j, but i need …
-2
votes
6answers
197 views
Run EXE FROM CLIENT SIDE
Hi I need run an exe file from client side.
The Exe file exist in my C:\ Directory. I need run this exe file from my WEB site.
How Can I Do This?
1
vote
0answers
16 views
How to prevent FileIOPermissionException(and others) when run .NET application from network drive.
My C# application (.NET 3.5 SP1) works very well when if execeuted from local drive.
However, if I run it from a network drive, it execute (IT IS .NET 3.5 SP1), but failed to read a file located on …
-1
votes
2answers
53 views
need help writing hexadecimals to an exe file
can somone tell me how to write these hexadecimals to an exe file while still having it exec
4D 5A 50 00 02 00 00 00 04 00 0F 00 FF FF 00 00 B8 00 00 00 00 00 00
00 40 00 1A 00 00 00 00 00 00 00 …
2
votes
7answers
290 views
Use SSL with Delphi yet still having a single exe
Hi,
We use Indy and we need SSL eMail support in our app., however we need to have our application in a single .Exe.
We know that the default Indy handler requires to have the dlls in the path. …
1
vote
7answers
183 views
Load and run an EXE file after a website loaded
Is there a way to load and run an EXE file on the client side, after a webpage has been loaded ? [with java script or HTML ]
2
votes
4answers
79 views
Windows Executable to run Java application deleted by anti virus scanner
I built a Java application that is delivered on USB sticks. To ensure compatibility, I ship an appropriate JVM on the sticks. I made an EXE that simply invokes this JVM with the application jar.
Now …
2
votes
2answers
230 views
How to run exe in powershell with parameters with spaces and quotes
How do you run this command in powershell:
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User …
