exe

How can I find out if an .EXE has Command-Line Options?

ぐ巨炮叔叔 提交于 2019-11-28 16:38:37
问题 Suppose you have an .EXE and you want to check if it has Command-Line Options. How can one know if the .EXE has this ability. In my case I know that Nir Sofers WebBrowserPassView.exe has the ability to start it via cmd.exe and WebBrowserPassView.exe /stext output.txt. But how can I find out if I don't know? 回答1: The easiest way would be to use use ProcessExplorer but it would still require some searching. Make sure your exe is running and open ProcessExplorer. In ProcessExplorer find the name

Why Visual Studio 2015 can't run exe file (ucrtbased.dll)?

↘锁芯ラ 提交于 2019-11-28 16:26:17
问题 I have installed the Visual Studio 2015 and created Win32 project with some code. I compiled it successfully, but I can't launch exe file, because I don't have some ucrtbased.dll...So how can I solve it? Edit: The English equivalent message is: "The program can't start because ucrtbased.dll is missing from your computer. Try reinstalling the program to fix this problem. " 回答1: This problem is from VS 2015 silently failing to copy ucrtbased.dll (debug) and ucrtbase.dll (release) into the

Run *.exe file from inside JAR

僤鯓⒐⒋嵵緔 提交于 2019-11-28 12:58:08
I have a huge JAR file, which I created with Maven Shade plugin. I run this with java -jar foo.jar , and my UI opens. Now I want to execute *.exe file, which is also in that JAR file, how can I do this? I tried putting the exe to my classpath and run it from there, but after trying I found out that classpath is actually the location, where my JAR is. Any suggestions? Found this thing here, but is this really the best solution? Seems like alot of work, I think I have different case here, because I can define the location of exe myself and the JAR is created by me. run exe which is packaged

关于class文件编译成exe

邮差的信 提交于 2019-11-28 12:10:40
辣妹备注:今天收到cqq(就那个用java破解天意后台系统那个老兄)的来信,可惜他编译好的是个class文件. 我对 编程 一窍不通,搜索了下看怎么编译成exe文件. 于是发现了本文.其实,下面那个老兄回的更精彩. 将Java应用程序本地编译为EXE的几种方法(推荐使用JOVE和JET)  1. 从 www.towerj.com 获得一个TowerJ编译器,该编译器可以将你的CLASS文件  编译成EXE文件。  2. 利用微软的SDK-Java 4.0所提供的jexegen.exe创建EXE文件,这个 软件 可以  从微软的 网站 免费 下载 ,地址如下:  http://www.microsoft.com/java/download/dl_sdk40.htm   jexegen的语法如下:  jexegen /OUT:exe_file_name  /MAIN:main_class_name main_class_file_name.class  [and other classes]  3. Visual Cafe提供了一个能够创建EXE文件的本地编译器。你需要安装该光盘  上提供的EXE组件。  4. 使用InstallAnywhere创建安装盘。  5. 使用IBM AlphaWorks提供的一个高性能 Java 编译器,该编译器可以从下面的  地址获得:  http:/

C# : Making an exe to not run directly

佐手、 提交于 2019-11-28 11:50:23
I need to make the primary .exe unrunnable from it (When you try to start it directly ,you get a message : Cannot start directly,if it runs from the secondary exe (only it,must have a crc verification i think) then start . Hope i make myself clear First .exe can't start directly Second .exe can start the first exe (only) Set up the EXE that can't be started directly to accept a parameter, such as a SHA-256 hash of some unique data from the one that's supposed to start it. If that parameter doesn't exist or is not what's expected, display an error and exit. EDIT: static class Program { static

how to bundle dependencies in exe

試著忘記壹切 提交于 2019-11-28 10:16:40
问题 Often my exe's have dll dependencies that I package with an installer like nsis or inno. This makes sense for large programs but is overkill for small scripts. Is there an alternative way to bundle dependencies, so that the user can just execute a single exe and not require a directory of dll's in the PATH? EDIT I am hoping for a solution that won't depend on the type of dll's, and will work for other kinds of dependencies too. Here are some potential options: http://www.adontec.com/index.htm

Virus warnings after trying to run .py program converted to an .exe file

老子叫甜甜 提交于 2019-11-28 09:39:49
问题 I converted my .py file into an executable program and after trying to run it I got a virus alert from Avast that says that the program is infected with Win32:Malware-gen. The program works well when I disable Avast but that will not work in the long run. Also when I try to email the program through Gmail it blocks the attachment with another virus warning. The program is a simple python database made with tkinter. Here is the code I used to convert it: pyinstaller --onefile --windowed Is

How to create an exe file in java

与世无争的帅哥 提交于 2019-11-28 07:50:48
Hi I want to create an exe file for my java app. I tried with some third party softwares JEXECreator, successfully created the exe file and its working fine in my system, when I tried with another machine, it’s not working. I got the following error * The error occurred while running the application. The exit code is 0x10000223. * Contact the vendor of the application for troubleshooting. java.lang.ClassNotFoundException: com.sample.SampleMain at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass

Difference between .exe and the .exe returned from Inno Setup - Installed application fails [duplicate]

流过昼夜 提交于 2019-11-28 07:03:45
问题 This question already has an answer here: Application does not work when installed with Inno Setup 1 answer I don't know what the issue is, but for some reason my .exe file and the .exe file that I get after running the installer from Inno Setup are not the same. No error codes thrown or anything, it compiles perfectly, but the toolbars in my application (the program was made with Java swing) do not contain their buttons correctly. I have two JToolBars that hold JButtons (each button has an

problems with running exe file built with Visual Studio on another computer

南楼画角 提交于 2019-11-28 06:52:48
I created a client server application in C++ using Visual Studio. Now I want to run the client exe file on another computer (which doesn't have Visual Studio installed) but when I try run the exe file it gives the following error message: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. How can I run the exe file without installing anything on the computer? Applications built with Visual Studio depend on Visual C++ Redistibutable (VCRedist). When the program is being linked dynamically, then your