Today, I will Explain you How to enable/Disable Task manager Through Bat File
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.
* Plz.. Post Your Comments on this Trick
-Posted by UandiStar.org
1 Comment
This Trick Working Good man
Posted on Thursday, November 04, 2010
Post a Comment