ExplorerPatcher ENTRY in Task Manager? #889
-
Hello, Thank you for this GREAT software. May I ask what the RESOURCES REQUIRED are to run this software? I can not find it in the TASK MANAGER to review it's footprint. Respectfully, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It's not a standalone application. It's a module which is injected in various system applications. Consulting Task Manager is not that reliable of an indicator anyway, even if it were a standalone application. What do you mean resources required? It depends on what features of the app you use, ofc. Basic stuff uses negligible memory: those are mainly hooks in the functions of the target application, that get called whenever you do certain stuff and that's it. Other features use some memory to do hold certain data structures, like Simple Window Switcher keeping a list of windows, the weather widget hosting an instance of WebView2. It depends... In terms of CPU usage, most of the things are callback based, they run once triggered and then the program waits to be signaled from the system, using no CPU. I don't know what your expectations are. |
Beta Was this translation helpful? Give feedback.
It's not a standalone application. It's a module which is injected in various system applications. Consulting Task Manager is not that reliable of an indicator anyway, even if it were a standalone application.
What do you mean resources required? It depends on what features of the app you use, ofc. Basic stuff uses negligible memory: those are mainly hooks in the functions of the target application, that get called whenever you do certain stuff and that's it. Other features use some memory to do hold certain data structures, like Simple Window Switcher keeping a list of windows, the weather widget hosting an instance of WebView2. It depends... In terms of CPU usage, most of the things are…