Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
63 views

This is puzzling to me. I launch the a process via command line or a batch file in windows: >start "MY_TITLE" one_process.exe %some_arguments% So ideally the application (window) title ...
xymzh's user avatar
  • 223
1 vote
1 answer
53 views

I have a very simple python script inifinity_loop.py: import time i = 0 interval = 5 while True: print(f'I am counting {i} seconds') time.sleep(interval) i += interval and I want to ...
xymzh's user avatar
  • 223
1 vote
1 answer
208 views

For context, I found this among XAMPP batch files: @echo off SetLocal EnableDelayedExpansion set "PID_LIST=" for /f "tokens=2" %%V in ('tasklist.exe ^| findstr /i "%1" ...
Huntbook's user avatar
  • 148
0 votes
1 answer
58 views

I want a way of running and checking two of the same application.exe's using two different batch scripts, (in case they crash). In order to do this, I need to check each one individually based on the ...
Ciaran Reilly's user avatar
0 votes
2 answers
567 views

Please Help me in this out that I have two instances of the same EXE file running at same time and I want to close only one of them, Both exe are running at the same time and we want to close one ...
Vipul Garg's user avatar
0 votes
1 answer
344 views

Somehow we periodically end up with an orphaned Excel instance in the Task Manager list. I can manually end the process, but I would like to figure out a way to identify them programmatically. Then I ...
j2associates's user avatar
  • 1,165
0 votes
2 answers
2k views

I am using camunda 8 and refering below link for getting task from processinstance id https://github.com/camunda-community-hub/camunda-tasklist-client-java I have added the dependency mentioned in ...
Neha's user avatar
  • 119
0 votes
1 answer
342 views

When I execute tasklist on child_process the stdout retuns the processes in Unicode string format which I cannot easily query. This is my code; var exec = require('child_process').exec; ... exec('...
user34534's user avatar
0 votes
1 answer
241 views

I need to filter with this method the tasks that have been completed, those that are not completed and that all appear, interacting with the three buttons; to be able to filter these tasks with these ...
Nelson González's user avatar
0 votes
1 answer
160 views

I was trying to implement a Global state. When I used callbacks these errors occurred. I didn't get these errors. Please help. Errors ======== Exception caught by widgets library ======================...
Promila Ghosh's user avatar
0 votes
1 answer
191 views

We are having issues with updating task lists in Sharepoint Online. Process is: We have a Sharepoint Online site with a task list in it (compatible list with MS Project). We have a web application (...
Julien GRESSE's user avatar
-2 votes
2 answers
255 views

With lots of research, I've got to this point: tasklist /fi "pid eq 13584" /fo CSV Output: "Image Name","PID","Session Name","Session#","Mem ...
user17535142's user avatar
0 votes
1 answer
1k views

How are you all doing? I made a batch file that gets the memory usage of a process that has a specific PID... Here is the code: @Echo off REM Get memory from process using tasklist for /f "...
Raul Chiarella's user avatar
1 vote
2 answers
4k views

I am using tasklist to bring me information about a specific service/proccess running on my Windows Server. The command: tasklist /svc /fi "SERVICES eq .Service02" The output: Image Name ...
Raul Chiarella's user avatar
0 votes
1 answer
1k views

I'm getting the below output from the command tasklist /fi "imagename eq cmd.exe" Image Name PID Session Name Session# Mem Usage ========================= ======...
Adir Dayan's user avatar
  • 1,657
-1 votes
1 answer
2k views

I have seen similiar questions on this site, but none of them seem to address/solve my problem, so I figured there is something specifically wrong with my program. I am trying to execute a very simple ...
Sankeeth Ganeswaran's user avatar
0 votes
1 answer
2k views

I know it's quite basic question but still I am not clear about it. When I am running my jar file in background in windows using below command using bat file: start javaw -jar myApp.jar It start the ...
Manish's user avatar
  • 1,525
1 vote
1 answer
563 views

Not really a batch file user (more of a python guy here) wanting to get an output to just show the video title in a MS Edge YouTube tab (ultimately into a txt file, but I am going one step at a time ...
Tim's user avatar
  • 23
0 votes
1 answer
2k views

I have a problem on checking the running state of another batch file using the command TASKLIST and continue processing the batch file depending on the result. This is the code of my batch file which ...
ryuzdev's user avatar
  • 37
1 vote
1 answer
573 views

I am calling method command in main() by command(" tasklist.exe /fo csv /nh"); This is my code snippet : String command(String command)throws Exception {long start=System....
ProgrammingGeek11's user avatar
1 vote
0 answers
40 views

When some application are running how can we differentiate whether it is storepps or other normal apps. When we type tasklist /apps in powershell or command prompt,windows will gives us all the ...
gamer's user avatar
  • 11
1 vote
1 answer
49 views

First Stack Overflow Question I'm new to iOS Development. This is my second app in the class and I've followed along the tutorial and I cannot figure out what is wrong here. I created a new SwiftUI ...
ShortRound's user avatar
0 votes
1 answer
783 views

So I am making a task list for my html like you can see here in this link https://jualston.github.io/wingit/milestonetest.html, but i must separate the css and js into their respective folders and ...
Jualston's user avatar
0 votes
1 answer
425 views

Evidently the Windows dos cmd "tasklist -v " is truncating lines after so many characters. My perl program is reading in special command processes to compare against processes stored in my ...
user3470332's user avatar
-1 votes
1 answer
311 views

My code needs to check if notepad.exe is listed under tasklist. If it is, the batch file will close it. @echo off tasklist /fi "imagename eq notepad.exe" > nul if errorlevel 1 taskkill ...
Mikke1980's user avatar
0 votes
1 answer
259 views

this feels like a stupid issue but I can't solve it somehow. I want my batch file to check if a specific process is running. I've used an example from this page and it's working sometimes: @echo off ...
Louis Bernard's user avatar
3 votes
1 answer
590 views

I'm trying to set default sorting order in camunda tasklist filter to asc by created date. Found only this suggestion which says that I should use maven replacer plugin. But I would like to make it ...
Aybek Kokanbekov's user avatar
0 votes
2 answers
1k views

I'm currently using the icon-only style tasklist from here on all tags. This gives me a nice overview of everything that's running on my system. If I have a lot of programs running the taskbar tends ...
julsVFX's user avatar
  • 25
-2 votes
2 answers
13k views

Can you help me writing Batch script to get the Percentage CPU and Percentage MEM usage of a particular process. I searched a lot but didn't found any solution. 1) Tried with "Tasklist" command but ...
A1229's user avatar
  • 11
-3 votes
1 answer
3k views

For some reason it says awesome even when the program is not open, and even if I put in a window name like "asdfsd" or something random. Can anyone help? @echo off :start tasklist | find /I "...
SpartanSpark's user avatar
0 votes
0 answers
80 views

I want to use the camunda tasklist with JSF external forms. My problem is that I can not get the userid from the logged in user. I need the user id to store my data. I tried to get it via ...
NickiMueller's user avatar
1 vote
0 answers
28 views

Everyone. I'm trying to quit the program called 'test.exe' with the following command: taskkill / f / im "test.exe" And I run the following command. tasklist but Only the pid number changes and the ...
Yousung Cha's user avatar
1 vote
0 answers
254 views

I want to check a particular application name from the Task Manager using a bat file. I have opened three word document files and from the Task Manager I can see the process as shown in the below ...
user2986042's user avatar
  • 1,300
1 vote
3 answers
888 views

I am writing a simple code that displays only the name of the processes which are of "console" type using tasklist in java. I am unable to do so because of the string index out of bounds error in ...
user avatar
1 vote
0 answers
181 views

I am using a batch file to make sure that an emulator that I am using exits completely when I close the game window. The problem is that the program (PCSX2 if that matters) has multiple windows, the ...
Orkel's user avatar
  • 11
1 vote
0 answers
76 views

This may be a noob question but just for clarification. For example I have any windows executable. How do I check what parameters or OS operations is done by it? For example I can use tasklist|findstr ...
aandroidtest's user avatar
  • 1,515
0 votes
0 answers
328 views

I'm checking os tasklist to find out if an external app is running or not. The script is run through python & maya. This command takes more than 10 seconds which seems very slow to fetch a list of ...
Tireless22's user avatar
0 votes
1 answer
588 views

I'm trying to print a list of running applications into a batch file, but I don't want to include the background processes on my computer. I've been experimenting with the tasklist command but can't ...
anon's user avatar
  • 1
0 votes
0 answers
25 views

I am new to Java. I want to retrieve the memory consumptions of different running Java programs. For example, I write the following program variations, import java.util.*; public class HelloWorld2{ ...
yychen's user avatar
  • 11
1 vote
1 answer
247 views

I'm trying create a batch-file which checks if my mysql server is up and running before running other stuff. I'm trying to do this by reading the .pid file, (set to a variable, %pid%), then ask ...
user avatar
-1 votes
1 answer
2k views

I am calling a program using batch file which Pops-up a cmd window. I need to refresh it every 30 seconds and I can do it manually by writing R in the cmd. I want to automate it now. Solution I ...
aly's user avatar
  • 17
0 votes
1 answer
1k views

So I am trying to do something I thought would be simple little script. All I want is to output to file (CSV or whatever) output from TaskMgr in Windows. If I use tasklist /v /fo csv > data.csv I ...
grobartn's user avatar
  • 3,640
-1 votes
1 answer
374 views

I need to limit output to one line (Window Header: Au5 - Halcyon). Then I need to write result to txt file. Can you help me with this? C:\Windows\system32>for /f "tokens=* skip=9 delims= " %g in ('...
TuRB0's user avatar
  • 11
0 votes
2 answers
2k views

I'm trying to create a log file that include process and memory consumption on a windows desktop. I'm new to script programming and i'm really struggling to complete this task. I found that command ...
Vinícius Crisântemo de Jesus's user avatar
1 vote
0 answers
67 views

I am trying to monitor if a batch is running or not and if it is not the case send an email. I am using the following code : Set "MyProcess=cmd.exe" Set "taskToMonitor=taskToMonitor" tasklist /NH /...
Souhail Ouabi's user avatar
3 votes
0 answers
2k views

Scope: to produce a script that fetches the task list from windows cmd, stores it as an array, appends an identical timestamp to each task, and then appends it to a text file as a comma-delimited ...
Fennigan's user avatar
3 votes
4 answers
4k views

What is the correct syntax for testing the errorlevel of TASKKILL in the context of the batch file shown below? :Launch start "CloseMe" "C:\Program Files\internet explorer\iexplore.exe" "file://C:\...
mike_yung's user avatar
  • 127
0 votes
1 answer
2k views

i'm trying to use tasklist command in cmd.exe for list all processes on my remote Windows 10 PC (which is in my home and connected on the same network as my main computer). But when I type in cmd.exe ...
Lucas Damase's user avatar
1 vote
1 answer
1k views

In Windows, the Task Manager updates itself automatically with all of the running processes on your Laptop/Desktop. However, that is not my point. My question is, is there a way to update a ListBox (...
user avatar
12 votes
3 answers
51k views

Desired output: 1234 Just the PID. Nothing else - no other characters, numbers, or symbols. I'm trying to run tasklist so it gives me only the PID of a named or titled process. tasklist | findstr /...
GregariousJB's user avatar