Thursday, March 6, 2008

How to enable task manager

Dear Windows User,

What you do when a virus disabled your task manager which is such a important tool for windows user? Open a notepad and then
write or directly copy the codes written in below and save it as .reg form. Ex: magic.reg. After that double click on it.
Your task manager will be enabled surely.


Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000
"**del.DisableTaskMgr"=" "

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system\]
"DisableTaskMgr"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"DisableCAD"=dword:00000000

How to Install softwares from .tar.bz2 files

As a root administrator type following lines in terminal:

Command-1: tar xvjf yourfile.tar.bz2
Command-2: cd file
Command-3: ./configure
Command-4: make depend
Command-5: make
Command-6: make install

Thats All.