Hot answers tagged exe
4
Visual Studio puts the exe file in the folder <ProjectDirectory>\bin\Debug
Update:
If you the console application closes immediately after you double clicked it with your mouse, start it from the command prompt or put code as shown below at the end of your main method:
Console.WriteLine("Hit Enter to quit");
Console.ReadLine();
2
I would look into the SysInternals tool "pssuspend". You can just give it a process ID:
PsSuspend suspends or resumes processes on a local or remote NT system.
Usage: pssuspend [-r] [\\RemoteComputer [-u Username [-p Password]]] <process Id or name>
-r Resume.
-u Specifies optional user name for login to
remote computer.
...
2
You will not find an answer for this. C and assembly will give you some of the smallest executables you can find but they can also give you huge executables if you're not careful.
All modern compilers make highly efficient executables.
Don't worry about it. Pick the language that gets the job done the easiest for you.
2
Check Zend Guard.
Zend Guard, the most widely accepted PHP encoding and obfuscation product on the market, protects your application from unlicensed use and reverse engineering.
Prevent reverse engineering & unauthorized modifications
Protect your code from unauthorized use
Zend Optimizer and Zend Guard Loader - the free runtime decoders for Zend ...
1
If you are seeking a way to extract an swf from a windows Flash Projector executable there is a tool by Northcode I used way back. It's called exe2swf and can be downloaded from this support page:
http://www.northcode.com/blog.php/2007/08/02/Extract-SWF-files-from-Flash-Executables
Once you have your swf file there are several reverse engineering options ...
1
Unfortunately the executable will search for cygwin.dll by name so renaming it will not work. Also, putting stuff in System32 is a bad idea mainly for security reasons (you don't want to update the school's IT department) and it's possible to mess the machine up by playing around in that folder. Changing the path is ok but, again, the permanence of the ...
1
Also try looking at
SolutionName\ProjectName\bin\Release\
Because sometimes your created application is there especially when you included a Setup and Deployment project in your program and changed the Active Solution Configuration to Release mode under Configuration Manager.
1
You will have to build your application.
After building application,Inside Bin folder, Debugg folder will get created in your solution folder.
SolutionName\ProjectName\bin\Debug\
In Debugg folder you will find the exe of your application.
You will have to send whole Bin folder to your friend.
Your friend has to install .NET framework.
Then that exe ...
1
Microsoft locked down I/O ports after windows 9x due to security issues but you can get usermode access to them using a special kernel mode driver found here. After you run that program, you can use debug to toggle pins. Debug uses Hex values so, to switch on 3,4 and 7 you'd do
debug
-o 378 02
G
-o 378 04
G
-o 378 20
G
You can wrap that into a ...
1
Rather than hardcoding the information into the executable, it might make sense to still have an app.config file, but encrypt it, then provide a utility that would write the encrypted app.config with the specified information.
1
As david99 suggests, the most you can do is obfuscate the code (ProGuard or yGuard comes to mind). This avoids casual reverse engineering -- although no obfuscation is perfect. Any binary can be seen as "obfuscated code" -- given enough time, all (self-contained) programs are crackable; and Java bytecode is no exception.
From the obfuscated .war, you can ...
1
Regarding step 3: What size local machine are you using (e.g. number of cores), since you're running an exe that may be doing some number-crunching. Now compare that the the machine size allocated in Windows Azure? Are you using an Extra Small (shared core) or Small (single core)? Plus what size cpu does your local machine have? If you're not comparing ...
1
I just struggled with the same issue using Zonsky's great javafx-maven-plugin. As of version 1.5, which you also were using, the src/main/deploy directory will be added to the classpath. The icon you want to use could be added there and it will be available on the classpath for the native builder!
I added src/main/deploy/package/windows/myapp.ico there and ...
1
There are several Python compilers available:
Cython
Pypy
Nuitka
shedskin
1
You could use the Process.Start method:
Process.Start("c:\somepath\twt.exe")
and if you wanted to pass arguments:
Process.Start("c:\somepath\twt.exe", "arg1 arg2 arg3 ...")
Or even better, take a look at the Twitter OAuth developer page and directly use their public API.
1
All of the mechanisms Python has for executing a child process require a filename.
And so does the underlying CreateProcess function in the Win32 API, so there's not even an easy way around it by dropping down to that level.
There is a way to do this by dropping down to ZwCreateProcess/NtCreateProcess. If you know how to use the low-level NT API, this post ...
1
Take a look at hiphop php. A good and reliable 'compiler' for PHP
http://en.wikipedia.org/wiki/HipHop_for_PHP
https://github.com/facebook/hiphop-php/
1
if %prog% equ ink (
if exist "C:\Program Files (x86)\Inkscape\inkscape.exe" (
start "" "C:\Program Files (x86)\Inkscape\inkscape.exe"
) else (
rem Sorry
)
)
Syntax is if exist filename - not if exist foldername
1
You cannot open windows processes through Jenkins running as a service. You have to run Jenkins through the console command java -jar "C:\Program Files (x86)\Jenkins\jenkins.war" --httpPort=[your desired available port number]. Then, while Jenkins is running in your console, you should be able to access it in a browser at localhost:[your port number]. Now ...
1
You can define 2 different product configurations and build it two different ways for your user stories.
Alternatively, you can build it as an EXE and provide instructions to your customers on how to decompose the EXE into it's prereqs and MSI for their own uses. I've worked in Enterprise IT shops where we want tools like SCCM to chain the packages ...
1
This is determined by the specific build tools (the compiler and linker) that you use, and by the configuration and content, not by the language per se.
Visual C++ 2010 can generate small executables if you use plain C and exclude the C runtime library.
If you need to use the C runtime library, you might have to try using Visual C++ 6 (disadvantage: out of ...
Only top voted, non community-wiki answers of a minimum length are eligible



