2
1
I am trying to find a way to either disable or completely remove Chrome’s Task Manager.
My proposed solution involves using a batch-file running in the background to detect if the Chrome Task Manager is open, and shut down Chrome if it is. Unfortunately, I do not know batch programming and am low on time for this problem to be solved.
Here’s a couple of ideas I had for this:
This command detects how many instances of Chrome are running:
tasklist /nh /fi "imagename eq chrome.exe" | find /i "chrome.exe" >nul && (wmic process where name="chrome.exe" | find "chrome.exe" /c
This command kills all Chrome processes:
taskkill /im chrome.exe
This does not work because Chrome does not create a new process when the Task Manager is opened, though it does create a new window. (There is no change in the Processes tab of the Windows Task Manager, but there is one in the Tasks tab.)
I will settle for a program that shuts down Chrome if it detects two windows of it open, even partial solutions are welcome at this point.
let me guess you want to block users from closing tabs/visiting there own sites – ratchet freak – 2013-11-29T23:51:02.707
I bet it is some manager's new "wonderful" idea. – NothingsImpossible – 2013-11-29T23:55:38.840
It is for me and it's on my own PC. A very long and uninteresting story lies behind this. – None – 2013-11-30T00:00:54.957
2this somehow screams XY problem – ratchet freak – 2013-11-30T00:03:23.270
1Then don't regard it as such and solve the original problem. I inserted pieces of my proposed solution because it increased the chances of someone solving it. – None – 2013-11-30T00:07:51.980
3@user1472696 It's still somewhat XY, because we do not know why you want to disable the task manager. It sounds like disabling the task manager is an attempted solution to a different problem, rather than the actual end goal. If that is the case, then we may be able to help find an alternative method. (Also, I do not see how disabling the task manager would help in any way at all...) – Bob – 2013-11-30T01:42:07.420