There is a comp on www.torry.net called stealth that you can use.
re:nul
If it's a Dos proggi the "> Nul" will hide all screen output
Umulig
Main Topics
Browse All TopicsHow to set that my application runs totaly stealth?
Will this have any effect and what:
[Hkey_Local_Machine\Softwa
Nul=c:\myapp.exe
or this
MyApp=C:\myapp.exe>nul
Thank you.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
There is a comp on www.torry.net called stealth that you can use.
re:nul
If it's a Dos proggi the "> Nul" will hide all screen output
Umulig
darko_polijak,
This is another warning due to the nature of this question and your other question about writing a virus. If you are unaware, when you signed up with EE you were bound to agree by the guidelines posted at the
site, namely those mentioned here:
http://www.experts-exchang
and more specifically:
"Experts Exchange Services and Site may be used only for lawful purposes. You must comply with all applicable
local, state, national and international laws, regulations or conventions, including without limitation
those related to data privacy, international communications, and exportation of technical or personal
data. You may not use the Experts Exchange Services or Site for any criminal or illegal activities or
any activities that might be legally actionable.
Experts Exchange reserves the right to determine what constitutes Internet abuse and objectionable conduct.
If Experts Exchange believes, in its sole discretion, that a violation of these Guidelines has occurred,
it may take responsive action. Such action may /include, but not be limited to, permanent removal of
illegal or inappropriate information or content, or suspension or termination of your membership and
access to Experts Exchange Service...
* planning illegal activities, such as creating computer viruses, building a bomb or counterfeiting
money
..."
Please delete this question and refrain from posting questions that are a direct violation of the guidelines
listed at the link above. If you fail to do so, this question will be deleted for you, as well as your
account.
TonyS
Community Support Moderator @ Experts Exchange
I don't want to make an virus.I want to know how viruses are made so that I would know how to make an protection program,antivirus or so that I would know were programs writes their stealth instructions.
I am sorry if I have frightened you.
tyfing gave me the right answer so I would give him the points.What's more I will increase the points.
Business Accounts
Answer for Membership
by: inthePosted on 2001-04-15 at 09:14:42ID: 6010139
thats just the key to make your app run at startup ,
rocessID,d wType : DWORD) : DWORD; stdcall; external 'KERNEL32.DLL';
CurrentPro cessID,RSP _SIMPLE_SE RVICE); TObject); CurrentPro cessID,RSP _UNREGISTE R_SERVICE) ;
by stealth i assume you mean hidden?
this depends on what operating system your using ,looks like win98 where you can do the registerserviceprocess to hide it form tasklist.
const RSP_SIMPLE_SERVICE = 1;
RSP_UNREGISTER_SERVICE = 0;
function RegisterServiceProcess(dwP
procedure TForm1.FormCreate(Sender: TObject);
begin
RegisterServiceProcess(Get
end;
procedure TForm1.FormDestroy(Sender:
begin
RegisterServiceProcess(Get
end;
i never seen this "nul" before ..whats it meant to do?