伽卡拉他学生客户端没有提供卸载程序(不要说控制面板,控制面板里面也是调用对应程序的卸载程序来卸载的,不信你去找找看,没有·······)
调用任务管理器也没反应,一开始我还以为别人电脑坏了,后来发现这个伽卡拉他一旦启动,任务管理器就消失了
火绒给我的提示如下,写入了一个禁止任务管理器的注册表值在如图位置,删掉后,ctrl+alt+delete可以看到任务管理器,但是点击没反应
这个软件还有点鸟用,老师控屏。。。
下面介绍下我的方法
右击伽卡拉他打开文件位置,修改 Student.exe Smonitor.exe 这两个文件的名字,比如为1.exe 2.exe
然后打开管理员命令提示符(win+x+a) tasklist|findstr Student.exe 然后taskkill -f -pid ****
或者直接 taskkill -f -im Student.exe 进程名,最好把那个Smonitor.exe也结束掉
下面再运行(Win+r) gpedit.msc
点击右边那个删除任务管理器
然后就恢复了
下面是我写的批处理命令文件,改一下路径就可以了
恢复任务管理器功能
@echo off ren D:咖卡他卡安装StudentStudent.exe 1.exe ren D:咖卡他卡安装StudentSmonitor.exe 2.exe taskkill -f -im Student.exe taskkill -f -im Smonitor.exe REG DELETE "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem" /v DisableTaskMgr /f
恢复伽卡拉他功能
@echo off ren D:咖卡他卡安装Student1.exe Student.exe ren D:咖卡他卡安装Student2.exe Smonitor.exe start D:咖卡他卡安装StudentSmonitor.exe start D:咖卡他卡安装StudentStudent.exe
保存为 .bat文件即可
注意:要管理员权限运行