Skip to main content

All Questions

Tagged with
0 votes
0 answers
46 views

How to list down all the processes with User interface only on Unix and Windows?

I am building one desktop application using electron js + Node Js. This will be an desktop usages monitoring application. My target is to list down all the open applications names and their process ...
Akshay's user avatar
  • 95
1 vote
2 answers
182 views

Why does Electron kill Windows processes that have arguments with colons?

If I start an Electron program that has an argument with a colon, the program immediately exits. Process process = new Process(); process.StartInfo.FileName = "C:\\Program Files (x86)\\...
pushkin's user avatar
  • 10k
0 votes
1 answer
1k views

How can I stop an Electron app from restarting itself after using app.relaunch?

I was playing around with the app.relaunch API that will restart my app when closing it. I used it like so (vastly reduced example, so hopefully it works. Don't want to try running this again): app....
pushkin's user avatar
  • 10k
5 votes
2 answers
3k views

How to get the current foreground application in electron(Javascript)

How can I detect if, for example, a browser is currently open? I need this in my electron-application. ty :) I've found nothing like this online. I've only found how I can check which window is open ...
MISO's user avatar
  • 75
5 votes
1 answer
5k views

is it possible to track processes in windows with electron js?

I want to build a windows app using ElectronJS framework. The main feature is to monitor user's process list in Windows. For example, if app finds example.exe it will make api request on my server. ...
Alex Fadeev's user avatar
4 votes
1 answer
3k views

Read Windows command line option in Electron renderer process

I have a deployed Electron App in Windows. I'm trying to add a command line option on the .exe. "C:\Program Files\MyApp.exe" -debug How I can read the debug flag inside my App? I tried with ...
underdog's user avatar
  • 143