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 know it's not persistent, but you could make an installer, that would schedule a task in the task scheduler on the boot. I don't know how to fix restarting explorer, but I restart explorer very often...
The text was updated successfully, but these errors were encountered:
Hmmm, having an installer that adds it as a boot process is a good idea. I originally tried to modify system files but turns out windows does NOT like you doing that
I was planning at some point to add a thing that monitors explorer for restarts, there just isn’t an easier way that I know of than constantly checking for explorer’s PID which would use resources in the background
Don't modify any system files — risking errors, or even making device unbootable. Monitoring is a good idea, but you have to make it very lightweight. I have never coded anything with hooks so I don't know if it's possible, but you may could hook some process and if it close or open, call this watermark remover.
@reticivis-net Alternatively, you can get the desktop hwnd, use it to get a process handle (GetProcessHandleFromHwnd), then wait on it (OpenProcess(SYNCHRONIZE, ...), WaitForSingleObject).
@reticivis-net Alternatively, you can get the desktop hwnd, use it to get a process handle (GetProcessHandleFromHwnd), then wait on it (OpenProcess(SYNCHRONIZE, ...), WaitForSingleObject).
I know it's not persistent, but you could make an installer, that would schedule a task in the task scheduler on the boot. I don't know how to fix restarting explorer, but I restart explorer very often...
The text was updated successfully, but these errors were encountered: