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 TroubleDo 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
---------------------------------------------------------------------------------------------
WARNING: Please Backup your registry before attemting this hack. Changes to registry may lead to system failure.
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.
Read more: http://www.btechbunks.com/2010/11/how-to-enable-or-disable-taskmanager.html#ixzz1heRvVMm1
Tags:
technology