|
Post by leet on May 6, 2020 7:09:24 GMT -8
The point is that I don't know how to hook into explorer
|
|
|
Post by powerplayer on May 6, 2020 8:20:27 GMT -8
|
|
|
Post by leet on May 6, 2020 9:31:59 GMT -8
No, that's for intercepting WinAPI function calls. I need something that allows me to fully run code in explorer's process
|
|
|
Post by powerplayer on May 6, 2020 11:50:41 GMT -8
No, that's for intercepting WinAPI function calls. I need something that allows me to fully run code in explorer's process U need a dll that gets injected to explorer right? experiment with startisback dlls?
|
|
|
Post by Spitfire_x86 on May 7, 2020 5:29:05 GMT -8
No, that's for intercepting WinAPI function calls. I need something that allows me to fully run code in explorer's process If you set up a remote hook (a class library that implements EasyHook.IEntryPoint and a loader exe that injects it somewhere), anything in IEntryPoint.Run will be executed inside the process you're injecting your library into. API reference: easyhook.github.io/api/html/N_EasyHook.htm
|
|
|
Post by leet on May 7, 2020 14:02:47 GMT -8
I'm having some issues displaying the window correctly .
|
|
|
Post by powerplayer on May 18, 2020 6:33:10 GMT -8
Any updates on the clock?
|
|
|
Post by leet on May 18, 2020 9:31:50 GMT -8
Have been really busy doing other things. Might look into it this evening
|
|
|
Post by powerplayer on Oct 11, 2020 17:32:02 GMT -8
Have been really busy doing other things. Might look into it this evening one more thing they might fool the os to think its an older win10 thus have it working with the registry entry if you manage to trick the system into thinking its an older version you might even get desk.cpl run properly , wont surpise me cause startisback used to be win7explorer for win8 back in the day , it injects the old explorer file into the new one makes the system think its the real thing.
|
|
|
Post by leet on Oct 11, 2020 17:34:27 GMT -8
Have been really busy doing other things. Might look into it this evening one more thing they might fool the os to think its an older win10 thus have it working with the registry entry if you manage to trick the system into thinking its an older version you might even get desk.cpl run properly Nah, they completely removed the code that shows the clock. So there’s no way to let Windows do it for us, we have to show the clock ourselves. I just don’t know how
|
|
|
Post by powerplayer on Oct 12, 2020 4:17:06 GMT -8
Nah, they completely removed the code that shows the clock. So there’s no way to let Windows do it for us, we have to show the clock ourselves. I just don’t know So add an old version of the file with the removed code add it to your program as a wrapper and let the explorer be active with that injected with any luck you might even get 7 taskbar tweaker working with that ...
|
|