- NEW!
Answer to:
What are the levels on Answerbag?
um, I never asked this question? My question disappeared and it was replaced with this one, no idea.
| 1 person likes this
Answer to:
How do I create an .exe file that "does nothing"? A program that opens and closes and can be renamed.
I just tried an experiment, and it worked.
---
C:/>del doNothing3.exe
Could Not Find C:/doNothing3.exe
C:/>echo MZP>doNothing3.exe
C:/>doNothing3
C:/>doNothing3
C:/>doNothing3
C:/>type doNothing3.exe
MZP
C:/>
--
I opened console via windows run and typing cmd
(command.com for older versions of windows),
and then checked to see if I deleted my...
Answer to:
How do I create an .exe file that "does nothing"? A program that opens and closes and can be renamed.
Download a free compiler, such as the free borland one
on their site. Set that up as the instructions say.
open notepad or something basic like edit.com or qbasic.com.
Type in the codes below, and save it with a name such as
doNothing.cpp
If you have the compiler setup right, such as borlands,
then you should be able to type something like
bcc32 doNothing.cpp
and you will have...
Answer to:
Is it possible to create an exe file that will shut down my Windows PC?
One way is, if your using an earlier version of windows (such as 98fe), and you have a compiler for C++, such as the free one on borlands site, then using a system function to open power.com in the commands folder, should work. power.com is not a slow off, its like hitting the master power. Instant off. May want to use a find utility to verify power.com is in the command folder first.
...