You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using RunPE as a library in my project. I load the file bytes myself and added a public function to RunPE to which I can pass the file bytes and arguments. I build RunPE as a class library.
However, when trying to execute a binary, that does not use CommandLineToArgvW, the arguments passed to MY binary will get passed to the binary I want to execute and the first argument passed to StartExecution (which should be the args as a string[]) is ignored.
Is there any way to patch this, so that I can pass arguments programmatically?
The text was updated successfully, but these errors were encountered:
I'm using RunPE as a library in my project. I load the file bytes myself and added a public function to RunPE to which I can pass the file bytes and arguments. I build RunPE as a class library.
However, when trying to execute a binary, that does not use
CommandLineToArgvW
, the arguments passed to MY binary will get passed to the binary I want to execute and the first argument passed toStartExecution
(which should be the args as astring[]
) is ignored.Is there any way to patch this, so that I can pass arguments programmatically?
The text was updated successfully, but these errors were encountered: