Tuesday, November 2, 2010

How to Enable or Disable Taskmanager through bat File - Remodified Code

Posted by Vishnureddy at 1:39 PM

Share this Post and Be Awesome



Today, I will Explain you How to enable/Disable Task manager Through Bat File



If you are a computer user then you might also have heard about viruses. There are few viruses which do havoc on prey computer and changes its behavior drastically. I also use computer and many time got some strange response from computer  for example when tried to hit “Ctrl + Alt + Del” it shown a message stating that “Task manager has been disabled by administrator”. So i made a simple trick to solve this Problem. 



What to do to when TaskManger get Blocked?

Copy the Following code into Notepad:
-----------------------------------------------------------------------------------------

ECHO REGEDIT4 > %WINDIR%\DXM.REG
echo. >> %WINDIR%\DXM.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:0>> %WINDIR%\DXM.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:0>> %WINDIR%\DXM.reg
start /w regedit /s %WINDIR%\DXM.reg

-----------------------------------------------------------------------------------------

Now Save the file with extension .bat, you can give anyfilename to this bat file. 
Here i am giving filename as  
 "Enable-Taskmanager.bat" and executing , now Taskmanger opens without Trouble



Do you Know How To Block Task Manger ?

Change the Highlited above code "dword:0" to "dword:1"  and save file as "Disable-Taskmanger.bat" and Execute,Now you can observe that your Taskmanger opens when you press ctrl+Alt+Del

After Changing, the code looks like this:

-----------------------------------------------------------------------------------------

ECHO REGEDIT4 > %WINDIR%\DXM.REG
echo. >> %WINDIR%\DXM.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:1>> %WINDIR%\DXM.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System] >> %WINDIR%\DXM.reg
echo "DisableTaskMgr"=dword:1 >> %WINDIR%\DXM.reg
start /w regedit /s %WINDIR%\DXM.reg
-----------------------------------------------------------------------------------------


You can also convert the .bat file as .exe file using bat to exe convertor

BAT to EXE convertor:DOWNLOAD

Note:This trick is written  For Knowledge Purpose only, don't misuse is it


HELLO!!!- DUE TO THIS ACTIONS IF YOUR FOLDER OPTIONS DISABLED THEN RUN THE FOLLOWING FILE (it will occur in only some versions of registry)


Copy the code into Note Pad:-
---------------------------------------------------------------------------------------------
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoFolderOptions"=dword:0000000
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoFolderOptions"=dword:0000000
---------------------------------------------------------------------------------------------
Now save the file with any name with Extension .reg and run the File, and restart your system to apply registry modifications, thats it your willbe solved



WARNING: Please Backup your registry before attemting this hack. Changes to registry may lead to system failure.


* Plz.. Post Your Comments on this Trick


-Posted by UandiStar.org

Love to hear what you think! Thanks Would make us Smile :)

Receive all updates via Facebook. Just Click the Like Button Below else Hit close icon

-->

Search Entire Site

Custom Search
back to top