2

can somebody please help me.

I want to get the filename that corresponds to a file handle of an external process.

Currently i managed to do that only on Win32bit and not Win64bit.

Is code signing required to do that in Windows 64bit ?

Thanks !

alexandertr
  • 943
  • 1
  • 9
  • 18

1 Answers1

0

You have to compile your application as AnyCPU (not x86), because on an x64 OS only x64 processes can access other x64 processes.

bytecode77
  • 14,163
  • 30
  • 110
  • 141