how to hide any dotnet exe is hide into taskmanager in windows 7 using vb.net?
Hi all,
how to hide exe into task-manager in windows 7 using vb.net windows application?
I want exe is hide into task-manager in windows 7 & windows vista machine using vb.net(windows application)
help me!
Thanks,
Jayawant
Re: how to hide any dotnet exe is hide into taskmanager in windows 7 using vb.net?
First and most important question ....
WHY ?? Why do you want to hide your EXE from the user ????
Re: how to hide any dotnet exe is hide into taskmanager in windows 7 using vb.net?
Hi,
Set the 'ShowInTaskBar' property of your main form to False.
This will prevent the application from showing up in the
'Applications' tab in Task Manager.
If you want to prevent it from showing up in the 'Processes' tab that will be a far more complex process.
Curt
Re: how to hide any dotnet exe is hide into taskmanager in windows 7 using vb.net?