Definition List

14 Oct 2013

How to enable your Task Manager


If your task manager has been disable by virus or the system administrator, this script will re-enable it. Enjoy

Copy the code below and save with tsmgr.vbs

'Enable/Disable Task Manager

'By Server

'? Pro hacking tricks





Option Explicit

'Declare variables

Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle

Dim jobfunc, itemtype



On Error Resume Next



Set WSHShell = WScript.CreateObject("WScript.Shell")

val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"

val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"

itemtype = "REG_DWORD"

jobfunc = "Task Manager is now "

ttl = "Result"



'reads the registry key value.

rr = WSHShell.RegRead (val)

rr2 = WSHShell.RegRead (val2)



toggle=1

If (rr=1 or rr2=1) Then toggle=0



If toggle = 1 Then

    WSHShell.RegWrite val, 1, itemtype

    WSHShell.RegWrite val2, 1, itemtype

    Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)

Else

    WSHShell.RegDelete val

    WSHShell.RegDelete val2

    Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)

End If


Related Posts:

  • Malwarebytes Anti-Malware Serial Keys Malwarebytes Anti-Malware Serial Keys ID: 4WL72 KEY: 2D45-RLCA-5AQL-2YEY OR ID: 1LF31 KEY: 51JF-LV76-AQW8-FWV4 OR ID: 4EQ71 KEY: FLDJ-BXM8-Y63K-U8QH OR ID: 6QT55 KEY: E5GC-MWNW-KUFD-UTV6 OR ID: 9VP98 KEY: HYV1-0EG7… Read More
  • FREE Windows 8 Professional Windows 8 Professional X86-X64 English AIO + Activator Direct download - http://goo.gl/Yc3c4 Activator all edition - http://goo.gl/iZHLG No ads... Enjoy … Read More
  • Demo Of Basic SQL injection for website hacking You might have seen hackers hacking and defaceing websites, editing it with their own stuff, makeing post on websites etc. There are many methods of doing this, In this tutorial I will be showing you a very basic and simp… Read More
  • ALL WINDOWS RUN Commands ! 1. Accessibility Controls - access.cpl 2. Accessibility Wizard - accwiz 3. Add Hardware Wizard - hdwwiz.cpl 4. Add/Remove Programs - appwiz.cpl 5. Administrative Tools - control admintools 6. Automatic Updates - wuaucpl.c… Read More
  • Proxy and Anonymous Internet surfing 1) What is a proxy? A proxy is an address of a proxy server (look @ kind of proxy's) that is placed between your computer and the internet : Normal : Computer --------> Internet With proxy : Computer ---------> Proxy… Read More

0 comments:

Post a Comment