Questions tagged [windows-process]

50 questions
0
votes
0 answers

Reading memory with Pymem (MultiThreading problem?)

Hi I am currently working on Reinforcement-Learning project using Python, the problem is that I need to read a memory address to access game variables for example Speed of Car or Track Progress. Everything is working fine I also tried to create 2…
0
votes
0 answers

C# exe - multiple users sharing one instance of exe file

I am experiencing some issues with running exe file by multiple users. We have 10 users, all connecting via remote desktop to the same computer (server) under different user accounts. When user opens document in Document management application and…
Tjasa
  • 1
  • 1
0
votes
0 answers

Getting "Image File" info as displayed by Process Explorer, in C#

I am Working with a Windows project that manages a python program as a System.Diagnostics.Process object through an C# WPF GUI. Somehow, the PyQt5-based sub-process does not quit after the process object is killed and my main program exits, now as a…
Jason M
  • 411
  • 5
  • 19
0
votes
1 answer

There is a crash at CcInitializeCacheMap

/* typedef struct _HRFS_VOLUME_CONTROL_BLOCK { FSRTL_ADVANCED_FCB_HEADER VolumeFileHeader; ULONG nodeType; FAST_MUTEX AdvancedFcbHeaderMutex; .... }; */ DumpFileObject(*(pVolDev->fileObject)); Vcb =…
Overflow
  • 1
  • 1
0
votes
2 answers

How to start / stop Java process in the Command Prompt?

I have Java 1.8.0 running in Windows. How can i start/stop this process in the Command Prompt?
tomsmithweb
  • 371
  • 2
  • 6
  • 20
0
votes
1 answer

Where should a Windows service, running as Local System, store a private key in the file system?

I need to generate and store a sensitive file (assume that it is not a traditional PKCS format) private key and keep it accessible to the running service. Normally, when running as a service account (AD User), I would store the file under the user's…
0
votes
0 answers

Getting information of Process Close Reason

Suppose I have an Application.exe running on Windows. I want to log "My process was killed.", if someone else kills my process using task manager etc. How can I get the process closure information? Search results did not return any useful…
Barış Akkurt
  • 2,255
  • 3
  • 22
  • 37
0
votes
1 answer

Why is jumping to the same address working with "technique" A but not with B?

First things first: I have here a few lines of a hack that I wrote: Here is the definition of a makro luaL_openlib which is actually a function pointer to 0x0090DE00: /* Type definitions for function signatures */ typedef int (luaL__openlib)…
Stefan Falk
  • 23,898
  • 50
  • 191
  • 378
0
votes
1 answer

RegOpenCurrentUser(KEY_WRITE) on newly created user

After i successfully create a new user, add user to built-in admins group, i would like to edit the newly created user's registry (this program is an elevated-as-admin program). I called NetUserAdd(), NetLocalGroupAddMembers(), LogonUser(), and…
Andy
  • 12,859
  • 5
  • 41
  • 56
0
votes
1 answer

Is there a limit on the number of processes, which can be started in an ASP.NET application?

I have a signalr server which is hosted in IIS. There is a function in the hub which starts 600 processes in windows and then kills them. //start 600 processes for (int i = 0; i < 600; i++) { try { …
F.Gu
  • 3
  • 1
0
votes
0 answers

Stop all processes and services from accessing a specific folder in Windows (and keep them out)

in Windows Server 2008 I need to stop every process accessing a specific folder in order to apply some changes. Then i need to restore all the stopped processes. Is there any tool that can do that? Would it be possible to do it using a .bat or .vbs…
0
votes
1 answer

Hooking into a running process to monitor its status

I'm new to C# hooking and am looking for a little information on where to do my research. I figured there are some folks here who may have done this before that might have a good idea of where to start! My overall goal is simple- to create a C#…
C Smith
  • 778
  • 2
  • 14
  • 31
0
votes
1 answer

Communication between processes in Windows

What project (C#) type would you suggest for this situation? Having one application for communicating with distance server from one side (I have API for communication with that server) and communication with lots of different applications (call them…
Vasoli
  • 77
  • 7
0
votes
1 answer

InterProcess Communication using Pipes and Files

I am learning Windows System Programming. I have come across "IPC using Anonymous Pipes " and "IPC using files". But I get confused between "IPC using Anonymous Pipes" and "IPC using Named Pipes". As far as I know "Named Pipes" usually appears as…
suraj_fale
  • 978
  • 2
  • 21
  • 53
0
votes
1 answer

WIA driver close,OK,Cancel button handling

I am working on some modifications in WIA driver( VC6). My modifications are done in the property sheet, the only area we can modify. But I have to do some changes in a bin file when the user clicks on the OK , Cancel or Close Button which is part…
Mash
  • 13
  • 2
  • 6