590 questions
-1
votes
1
answer
177
views
flink memory configuration question : taskmanager.memory.process.size
taskmanager.memory.process.size, should it be configured based on the resources available on a single machine?
My Flink job is assigned to a queue with 200GB of resources, but i set taskmanager.memory....
1
vote
1
answer
49
views
Match get process output with task manager
This process works, however the memory result is "1838555136" in the trillions, where as task manager lists the working set memory in K 1,838,855. How do I get the Powershell output to ...
0
votes
0
answers
124
views
Powershell WMI query task scheduler "MSFT_TaskDynamicInfo"
I have figured out how to use PowerShell with task scheduler to give me what I am looking for. However, I am unable to figure out how to do this with a WMI query so we can pull this information from ...
1
vote
1
answer
213
views
Assigning a Win32 process Task Manager "Description" column value in Windows 11
In previous versions of Windows, the "Description" column on the "Details" tab in Task Manager always comes from the process's main image description metadata.
However, in Windows ...
3
votes
1
answer
290
views
How to compute disk I/O usage percentage in Windows, exactly like Task Manager, for the current process?
I'm trying to compute the disk I/O usage percentage for the current process in Windows, similar to what the Task Manager displays under the "Disk" column. However, I haven't been able to get ...
0
votes
0
answers
98
views
How to get correct CPU usage like in task manager using Python?
I am using psutil but the values I get is between 0 and 2% whereas the task manager is showing values way above that from 8 to 40% CPU usage. Am I missing something?
import sys
import psutil # To get ...
0
votes
0
answers
62
views
Task Manager in PowerShell
I want to add icons to this, but I can’t figure out how to call the icons for each application. Any help would be greatly appreciated.
Note: I use this when I can’t access the remote computer’s UI, ...
2
votes
0
answers
139
views
BackgroundFetch Task Not Triggering Automatically in iOS and Android with Expo and Notifee
I'm working on an Expo project where I'm trying to set up a background fetch task using expo-task-manager and expo-background-fetch to trigger a local notification using @notifee/react-native. The ...
1
vote
2
answers
21k
views
How to disable/enable startup programs through Registry Editor
Hey im working on a windows tweaker program. As we all know, startup programs can commonly be found in the task manager where we can either enable or disable them. The location of those programs are ...
1
vote
0
answers
1k
views
expo-task-manager background task doesn't run in the background on iOS
This is one of my first posts ever. When I'm stuck I usually just hit my head against a wall, but today I'm asking for help. I've got a ReactNative app built using Expo which does some realtime ...
2
votes
0
answers
46
views
Send notification of task assignments by email?(Django)
I am working on a kanban project. When a task is created, I want to send a notification mail to the employees assigned to the task. When a registration signal comes to my model, I capture it and get ...
0
votes
0
answers
135
views
How can I use psutil to Show Values which are Comparable to the Task Manager's Values?
I need your help with a psutil script. I want to log memory and CPU usage of a python 2 script in percent. For that I use something similar to the following loop:
while True:
for process in psutil....
0
votes
0
answers
95
views
How to Get Thumbnails of Recent Apps in Android
I'm trying to get thumbnails of recent apps in Android for my app, to help users easily identify and switch to their desired apps.
Is there a way to get thumbnail images?
I've been looking for an API ...
0
votes
0
answers
98
views
PowerShell CPU and RAM % logging wrong values Windows 11 local in comparison to Windows 2022
I have written this PowerShell script to log the current CPU and RAM usage, but it seems to get the date wrong on my Windows 11 local pc.
Local Windows 11 Sample1
Local Windows 11 Sample2
Comparison ...
0
votes
1
answer
51
views
Return updated datetime and script name as a dataframe - python
The overarching aim of my query is to monitor the functioning of scripts through TaskManager. I have numerous scripts that are being run as recurring time points. But I have no idea if the script is ...