Add a simple option to use start11 menu #408
Replies: 4 comments 9 replies
-
Can you explain how it works? You execute that snippet every time? If so, it's not right. I mean, set the hook every time you open it...? And why should EP load Start11 in Please clarify this a whole lot more, especially seems you keep pushing for inclusion in EP. Also, I am pretty sure I have no license to redistribute Start11's files. But besides that, I still, after all this time, do not understand what the problem with that is... |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
@gailium119 Okay, so the latest pre-relase version (.6) adds a mechanism for chainloading some other module, where you can put whatever code you'd like. A compiled pre-release will be available as soon as it gets built; please test that and tell me how it works. The module has to be called
It produces this output at runtime:
The module is loaded after the main initialization for EP finishes, before control is returned to Also, beware that this gets to run only in the main While we test this, the functionality is subject to change, so the ABI may break between versions, if we/I determine any major architectural, design or security flaws in it. Once we stabilize on some version, it will be carried forward, so updates to EP should mean no need for updating your Thanks |
Beta Was this translation helpful? Give feedback.
-
This command sets auditing for the 'Process Creation' subcategory to enabled:
So when EP restarts Explorer the task will be run. You just need to add an Action in it so that it will run your program or script. |
Beta Was this translation helpful? Give feedback.
-
When researching on Stardock Start11 I found that opening the start11 menu is quite easy:
HMODULE hm = LoadLibraryW(L"start10_64.dll"); void* hook = GetProcAddress(hm,"Hook"); HHOOK hk = SetWindowsHookExW(5, (HOOKPROC)hook, hm, 0);
Beta Was this translation helpful? Give feedback.
All reactions