cookies - C# Hiding a process (Process doesn't hide) -
i'm trying hide process before , after start it, doesn't seem work @ all. can explain this?
system.diagnostics.processstartinfo startinfo = new system.diagnostics.processstartinfo("rundll32.exe", "inetcpl.cpl,clearmytracksbyprocess 2"); startinfo.windowstyle = processwindowstyle.hidden; process.start(startinfo); startinfo.windowstyle = processwindowstyle.hidden;
if trying hide process not showing in task manager example, need 1 of following:
- api hooking. (ring-3)
- altering
eprocess
structure of targeted process. (ring-0)
i hope understood question correctly, cause question , posted snippet not match really.
Comments
Post a Comment