qb-0/pyMeow

nimpy.Exception: Unexpected error encountered: Module 'DNF.exe' not found

Closed this issue · 4 comments

self.Process = pyMeow.open_process('DNF.exe', debug=False)
nimpy.Exception: Unexpected error encountered: Module 'DNF.exe' not found

But I can get it through enum-processes
{'name': 'DNF.exe', 'pid': 64524, 'debug': False, 'base': 0, 'handle': 0}
Processes can also read and write, with sufficient permissions. What is the reason for this

I can open the process normally with the previous version, but the latest version of Pymeow will report this error

There hasn't been a change to openProcess. Yet, as you can see, you are missing a handle. Which is probably also the reason why openProcess fails

open_process(process: string|int, debug: bool = false): Process
But just need to pass a process PID or process name, I can open it normally with 32-bit programs, some x64 programs don't work, and I use CE to see if the process has permission to be accessed

qb-0 commented

Related to #59