ONCE AGAIN, to you and all the other "VISTA GURUs"
This script and all the other ones have been tested on windows 2k and XP only! By no means that I say at any time it would work on Vista as well. As I do not use Vista at all, I cannot answer Vista related questions.
Hi there Good Point you made but it does work you have to put vista into safe mode then run it then it will work i have done this with vista myself one of the downfalls of vista but getting use to vista slowly try it it worked for me :)
disable task manager, notepad, cmd, regedit, and make sure nothin else pops up that can open or save a file cuase then you can go into system 32 and fix it, and make a simple vbs or .bat string that deletes lonui.exe
Whats up everyone.. I am working on a virus maker.. This VM works with both VBS and BAT. However, I am needing to know a script that is very useful to making the mouse cursor go crazy all over the desktop. I know it can be done. I have seen it before. But can not figure it out. Hit me up if anyone has a suggestion.
Oh Please!!! Of course it doesn't work if you just copy n' paste it -.- It's intended. I want the people watching this to understand VBScript and not just copy n paste without having a clue what they are doing.
There are some formatting errors in the script provided...some missing carriage returns, some extra CRs and so on...at a minimum I expect people to figure this out themselves! I do not support script kiddies ;) Thanks for your afford though...
To enable the TaskManager, copy this in vbscript:
createobject("wscript.shell").regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr",0,"REG_DWORD"
WinXpCoder 11 months ago
doesnt work on vista
wow finally this stupid computer has some advantages
Akralaa 1 year ago
@echo off
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskM(REMOVE THIS)gr /t REG_SZ /d 1 /f >nul
SavvasCss 1 year ago
How do i enable Taskmanager again?
TheRacemania 1 year ago
I got a problem sir, what if I don't find System tab under the Policies? please help. .
GreatWafu 1 year ago
how do you disablbe jit debugging
chingachangoes 1 year ago
It works fine on XP, thanks jay. (mine name too =P)
pip00123 1 year ago
I got a 2 and its not disabled help please?
Jairo017 2 years ago
This has been flagged as spam show
That's the real script:
Das ist der richtige Script:
Set WSHShell = CreateObject("WScript.Shell")
WSHShell.Regwrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr",1,"REG_DWORD"
teletubbymassaker 2 years ago 3
Comment removed
teletubbymassaker 2 years ago
doesn't work. Vista = CTRL+ALT+DELETE>Task Manager> End process/whatev. 1 star my frend
MaiTriCks 2 years ago 2
ONCE AGAIN, to you and all the other "VISTA GURUs"
This script and all the other ones have been tested on windows 2k and XP only! By no means that I say at any time it would work on Vista as well. As I do not use Vista at all, I cannot answer Vista related questions.
Thx for stopping by!
JayFilkins 2 years ago
sorry jay calm or else im gonna rape you
MaiTriCks 2 years ago
Hi there Good Point you made but it does work you have to put vista into safe mode then run it then it will work i have done this with vista myself one of the downfalls of vista but getting use to vista slowly try it it worked for me :)
BJseal91 2 years ago
VISTA uses Ctrl+Shift+ESC instead...
So you can maby make something that blocks that keys
ha93se 2 years ago
@ha93se and windows XP also uses ctrl+shift+esc
computerprogramer1 1 year ago
I have no System directory inside of the Policies directory! Whats wrong!?!?!
gavinlloydbaker 2 years ago
hi ich haben vista
und wollte ma wissen unter welchem verzeichnis der taskmanger da ist weil bei mir ist er nicht unter polices ....
malzbierpenna 2 years ago
disable task manager, notepad, cmd, regedit, and make sure nothin else pops up that can open or save a file cuase then you can go into system 32 and fix it, and make a simple vbs or .bat string that deletes lonui.exe
ForMotherRussia135 2 years ago
strcomputer = "."
HKEY_CURRENT_USER = &H80000001
Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\default:StdRegProv")
comppath = "Software\Microsoft\Windows\CurrentVersion\Policies\System"
strEntryName = "DisableTaskMgr"
dwValue = "00000001"
retval = objReg.SetDWordValue(HKEY_CURRENT_USER, comppath, strEntryName, dwValue)
Wscript.echo retval
sonyercisson 2 years ago
the best to do is to create a script that spams 1000000 msgboxes and put it in the startup folder
then edit it so it also disables task manager so you cant close wscript
h4x0rSpirit 3 years ago
Uh, forkbomb? And yea, that would suck if you couldn't open your task manager to stop a forkbomb
Iownyoujk 2 years ago
you can disable the explorer.exe so they couldent go to the registry to fix it either
ForMotherRussia135 2 years ago
yea just ad to your batfile:
tskill explorer and woop ! bye bye explorer :)
melanie1254 2 years ago
oh man :( can you plz message me the script?
i cant figure this out >_>_>
SwesAchumes 3 years ago
Whats up everyone.. I am working on a virus maker.. This VM works with both VBS and BAT. However, I am needing to know a script that is very useful to making the mouse cursor go crazy all over the desktop. I know it can be done. I have seen it before. But can not figure it out. Hit me up if anyone has a suggestion.
MasterMindzCreation 3 years ago
just don't send virus to innosent ppl, k? :)
SwesAchumes 3 years ago
Dont plan on it. Just keeps me entertained when I am bored.
MasterMindzCreation 3 years ago
do you still need the script of the mouse cursor to go crazy?
ForMotherRussia135 2 years ago
Sprech einfach auf deustch.
whirly1300 3 years ago
Ok, but your scritpt donesn't work at all on either of me systems' and I was just trying to help you and the others out some.
Michaela6Dicker 3 years ago
Oh Please!!! Of course it doesn't work if you just copy n' paste it -.- It's intended. I want the people watching this to understand VBScript and not just copy n paste without having a clue what they are doing.
There are some formatting errors in the script provided...some missing carriage returns, some extra CRs and so on...at a minimum I expect people to figure this out themselves! I do not support script kiddies ;) Thanks for your afford though...
JayFilkins 3 years ago
# [taskmanagerdisable.reg]
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000001
# [taskmanagerdisable.reg]
Michaela6Dicker 3 years ago
yeah...that's the script kiddie way of doing this using a .reg file :D
But you'll see if scenarios get more complex, you want be successful with this approach ;)
JayFilkins 3 years ago
# [taskmanagerdisable.reg]
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000001
# [taskmanagerdisable.reg]
#[taskmgrenable.reg]
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000
#[taskmgrenable.reg]
Michaela6Dicker 3 years ago
what happens if the it returns the value 2
Wazupe2u 3 years ago
something went wrong :D I don't know the error codes, just google for wmi stdregprov setdwordvalue and watch out for the return values
JayFilkins 3 years ago
i think i was the one to ask that of u
Wazupe2u 3 years ago
Take a look at the description box on the right side of the video - I always post the link to my weblog over there where the code is stored
JayFilkins 3 years ago
Thanks
Alexzz7217 3 years ago
good work but can u post the script as well
bisundev 3 years ago