Questions tagged as 'exe'

2
answers

delete exe files and exclude one

I'm creating a bat to remove all .exe files from my desktop and downloads folder (which sometimes accumulate from so many downloads) ... call:delfiles "*.exe" exit :: funcion delfiles @echo off pause goto:eof :delfiles set delfiles=%1 attr...
asked by 27.10.2016 / 16:03
1
answer

How to get the output code that throws an exe executed from java with runtime?

I run a file .exe (for sending images) from java which can pull different output codes depending on the error, this is my class: public static int SendImg(String ip, int puerto, String rutaIMG, String tipo) { Process p =...
asked by 16.08.2017 / 00:19
2
answers

Execute .exe in PHP

I have an application which should run a .exe that starts the execution of a scanner . The executable I have in unit C but I can not find any way to execute it.     
asked by 10.01.2017 / 19:57
1
answer

How do you load and run an [EXE] program in memory on Windows?

I know that the compiled programs for native Windows have a format called Portable executable (PE) and that allows the system operative load the program to memory. But I'm intrigued by the process by which memory is loaded and then ex...
asked by 04.04.2017 / 20:24
0
answers

Percentage of CPU usage limited for Java? [closed]

I just generated the executable (.exe) of an application I did in Java. The problem is that in the task manager shows me a percentage of CPU use always less than 30%. Can this percentage be increased? How do I modify the icon that appears...
asked by 23.04.2018 / 23:34
1
answer

cx_Freeze, "ImportError DLL load failed"

I created a code for an interface with Tkinter , reportlab , openpyxl among others. Everything inside my .py file works very well but when creating an executable (.exe) with cx_Freeze the following error occurs: I appreciate any...
asked by 24.08.2017 / 01:27
2
answers

.py a .exe Python

I'm trying to make an .exe with a .py file. I read the tutorial link and it worked perfectly. My problem is when instead of making a code as easy as the tutorial print "Hello world" I place functions such as: def main(): a = 14...
asked by 13.12.2017 / 05:54
1
answer

File generated with py2exe fails to run

I have the following code: ''' Archivo: setup.py ''' # -*- coding: utf-8 -*- from distutils.core import setup import py2exe setup(name="Ejemplo", version="1.0", author="autor", author_email="email del autor", url="url del proyecto...
asked by 10.07.2017 / 04:58
1
answer

Pause in C ++ pause does not work when running the.exe

At the moment of executing the .exe of a program in c ++ it does not pause, that is to say it closes of blow and I do not understand because it happens since I have a "getch" and a (pause)) #include <conio.h> #include <stdio.h> #in...
asked by 15.04.2018 / 03:04
1
answer

How can I generate an .exe with all the resources internally? (Visual Basic)

I have a project that I'm doing in visual studio, with vb.net, the detail is that I use files like images, audios or executable exemptions in .exe that I call by Process. My question is how can I put all of that internally in the .exe, regard...
asked by 02.12.2017 / 18:01