Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
1k views

What can cause Windows to unhook a low level (global) keyboard hook?

We have some global keyboard hooks installed via SetWindowsHookEx with WH_KEYBOARD_LL that appear to randomly get unhooked by Windows. We verified that they hook was no longer attached because ...
6
votes
2answers
818 views

SetWindowsHookEx failing in .NET 4.0 on 32-bit machine with “module not found”?

I have found similar questions on this page, but I can't seem to figure out how to interpret the answers or figure out if they are truly duplicates. Here are the possible duplicates I've found, with ...
5
votes
1answer
395 views

C# low level mouse hook and form event handling

I'm using a simple form generated by VS 2010 which contains 2 buttons, start and stop. Start triggers WH_MOUSE_LL using SetWindowsHookEx, and stop stops the hook. The hook works fine and I mange to ...
3
votes
2answers
336 views

Low level keyboard hook not being called in .NET application

I am writing a keylogger in C# but am having some trouble getting my hook method called from the keyboard events. My code appears correct but for some reason the callback is not happening. Here is ...
2
votes
1answer
366 views

Low level keyboard hook set with SetWindowsHookEx stops calling function in C#

I am creating a program that monitors key presses for controlling iTunes globally. It also has a few WinForms (for displaying track information and editing options). The low-level keyboard hook works ...
2
votes
2answers
218 views

Is it possible to detect when a low-level keyboard hook has been automatically disconnected by Windows?

I am working on a program that uses keyboard hooks. However, when the PC that the program is running on is just slightly overloaded, it causes Windows to disconnect the hook from the program, causing ...
2
votes
1answer
450 views

CreateFile Hook

I am trying to Create a Hook for CreateFile, so when a process tryies to create a file the hookdll we created will notify the user that: "this process xx.exe trying to create xx.exe, Do you want to ...
2
votes
3answers
359 views

system-wide hook for 64-bit operating systems

I want to perform a system-wide hook (using SetWindowHook) on a 64bit operating system. I know that 64bit processes (= proc64) can load only 64bit dlls (= dll64) and 32bit processes (= proc32) can ...
2
votes
2answers
430 views

Window hooks in c#

Im trying to hook up to other windows from csharp. Im using SetWindowsHookEx, but no luck with converting it fom c++ t c#. I found this thread here but it wasnt solved. The problem is that ...
2
votes
3answers
524 views

Why would Windows hooks not receive certain messages?

Microsoft does not recommend DirectInput for keyboard and mouse input. As such, I've written an input manager class that uses SetWindowsHookEx to hook into WndProc and GetMsg. I believe the hooks are ...
2
votes
3answers
451 views

Simple way to hook registry access for specific process

Is there a simple way to hook registry access of a process that my code executes? I know about SetWindowsHookEx and friends, but its just too complex... I still have hopes that there is a way as ...
2
votes
1answer
562 views

SetWindowsHookEx WH_MOUSE freeze on breakpoint in Win7

helos, on WinXP my application has been sucessfully using a global mousehook to retrieve mouseposition and clicks even if it does not have the focus. the hook is in a separate .dll and is being ...
2
votes
1answer
917 views

Windows Global Keyboard Hook - Delphi

I've created a GLOBAL keyboard hook DLL, using source code found on the internet. For the best part it works brilliant, except when it comes to browsers. It picks up every key in the browser except, ...
2
votes
2answers
452 views

Module not found

I've been working on this one quite a bit and haven't gotten any closer to a solution. I juut dug up my old copy of the WindowsHookLib again - It's available with source at ...
1
vote
0answers
18 views

Win32 Hooks DLL injection into Applications Built against “Any CPU”

I am working on a project which captures all User Interactions. MSDN tells (this) SetWindowsHookEx can be used to inject a DLL into another process. A 32-bit DLL cannot be injected into a 64-bit ...
1
vote
1answer
25 views

Questions about SetWindowsHookEx() and hooking

Here is a little background information. I'm working on replacing a dll that has been used in a dll injection technique via the AppInit_DLLs registry entry. Its purpose was to be present in every ...
1
vote
1answer
53 views

Get HMENU from HWND within a Hook

I'm installing a hook within my application to get the standard EDIT context menu (with undo/copy/edit/paste/etc.). I need to insert a new menu item for my application. I've set a windows hook, but I ...
1
vote
1answer
204 views

Horizontal scroll not working mouse_event(MOUSEEVENTF_HWHEEL)

There is no horizontal scroll when I call this method in Delphi 3 under Windows 7: const MOUSEEVENTF_HWHEEL = $1000; mouse_event(MOUSEEVENTF_HWHEEL, 0, 0, 120, 0); Vertical scroll with ...
1
vote
1answer
91 views

prevent hook dll loading

Is there a way to way set process security permissions or some other way to disable Windows from loading global window hook dlls? I don't want to disable SetWindowsHookEx, I just want to disable the ...
1
vote
0answers
262 views

How to inject a DLL into Adobe Reader X

I need to inject a DLL into Adobe Reader X that reads the events sent to the scrollbar (even if it is hidden). I need to do this to be able to find out what page of the document i am on. I have tried ...
1
vote
2answers
292 views

SetWindowsHookEx failing with google chrome. Error code 87 invalid parameter

I am making a tutorial based program and want to be able to hook my code into certain apps to get the tutorial interacting with the app. My hook code works for most apps except google chrome. I have ...
1
vote
1answer
538 views

Hook keyboard from injected DLL using KeyboardProc / SetWindowsHookEx

Note: I am working in plain C. Not C++, not C#. I am working on a mod. I've already written a working DLL-injector, as well as the DLL to be injected. Everything is going well, apart from the ...
1
vote
4answers
346 views

Is there a way for application on Windows 64 bit to execute code both under 64 bit and 32 bit emulation layer?

I am interested whether I can write an application which will be able to call some code without emulation layer and some code inside of 32 bit emulation layer. The main reason for that is that I will ...
1
vote
3answers
619 views

SetWindowsHookEx seems not working for me in C# (WH_KEYBOARD_LL, global)

My application should perform some action whenever user pressed certain keys in windows. Calling SetWindowsHookEx with WH_KEYBOARD_LL option seems to be standard way to achieve this. However in my ...
1
vote
1answer
830 views

How to use SetWindowsHookEx in Vista and hook Admin apps with UAC?

I'm trying to figure out if there's a way to use SetWindowsHookEx and be able to affect apps that are run with Admin rights on Vista, with UAC enabled. This is an app that will need to add a small ...
1
vote
2answers
607 views

Unloading DLL from all processes after unhooking global CBT hook

How do you properly unload a DLL from all processes when the system-wide hook that loaded them gets unloaded? From MSDN: You can release a global hook procedure by using UnhookWindowsHookEx, ...
1
vote
3answers
169 views

How can I keep an event from being delivered to the GUI until my code finished running?

I installed a global mouse hook function like this: mouseEventHook = ::SetWindowsHookEx( WH_MOUSE_LL, mouseEventHookFn, thisModule, 0 ); The hook function looks like this: RESULT CALLBACK ...
1
vote
1answer
2k views

C++ SetWindowsHookEx WH_KEYBOARD_LL Correct Setup

I'm creating a console application in which I'd like to record key presses (like the UP ARROW). I've created a Low Level Keyboard Hook that is supposed to capture all Key Presses in any thread and ...
1
vote
4answers
5k views

SetWindowsHookEx in C#

I'm trying to hook a 3rd party app so that I can draw to its screen. Drawing to the screen is easy and I need no help with it, but I seem to be having issues with using SetWindowsHookEx to handle ...
0
votes
1answer
24 views

Global shell hook in WPF application

I'm trying to catch the event of creating/destroying the specified window of another application. For this purpose I set WM_SHELLHOOK. Here is siplified code from my WPF application: public delegate ...
0
votes
1answer
43 views

SetWindowsHook Global not very Global

I'm playing around with SetWindowsHookEx, specifically I would like be able to find out about any window (on my desktop) thats been activated, via mouse or keyboard. Reading through MSDN docs for ...
0
votes
1answer
53 views

How can I get notification of page load events in Chrome?

I need to be able to monitor navigation events (such as page loads or switching between active tabs) in browsers running on a Windows PC. So far, I can get this to work in IE and Firefox by loading a ...
0
votes
0answers
47 views

trouble trying to hook keyboard messages from a process inside of an injected DLL

I'm really frustrated. I've been trying to use SetWindowsHookEx with either WH_KEYBOARD and WH_KEYBOARD_LL but I get it to work maybe once and then it stops. I'm about to give up and see if I can ...
0
votes
1answer
203 views

PInvoke errors calling external SetWindowsHookEx and GetModuleHandle

I am trying to set windows hooks in my program to an external EXE. This will be used to monitor resizing/minimizing of the window, so I can resize my program similarly, docking to the window. How do ...
0
votes
1answer
98 views

CallWndProc hook not receiving all messages

I am making a little tool like Displayfusion and I need some Hooks to receive messages when Windows move/activate/etc , however I'm stuck.. I am using this project for the CallWndProc hook: ...
0
votes
0answers
226 views

SetWindowsHookEx c++ global hook issue

I am trying to perform a global api hook of NtCreateUserProcess to find out which processes in the user desktop are creating other processes. I am currently using windows 7 x64 home premium. In the ...
0
votes
1answer
16 views

Want to stop the data going into OS/application after read using SetWindowsHookEx

I am developing one simple application which is reading the keystrokes from the OS. I have used API "SetWindowsHookEx" to read the keystroke data. Currently data is read by the hook as well sent into ...
0
votes
0answers
63 views

Using UnhookWindowsHookEx to unhook other process's hooks

I am writing a program to Unhook key loggers (in c#). I know the hookid of the SetWindowsHookEx, as well as the dwThreadId, but I don't have IntPtr of the actual SetWindowsHookEx. How would I go about ...
0
votes
1answer
199 views

SetWindowsHookEx doesn't work with thread Id

Hello and thanks in advance to anyone thatll try to help. I'm trying to set a CBT windows hook, which works well when Im setting it globally, but fails whenever I try to attach it to a single thread. ...
0
votes
0answers
30 views

Application and active time

I am trying to implement a CBT Hook to do one simple thing: Find out what application is active for how long? Active means "user is interacting with the application window". For instance user working ...
0
votes
0answers
371 views

Inject a dll to a specific process using SetWindowsHookEx

// cptnhook.cpp : Defines the exported functions for the DLL application. // #include "stdafx.h" #pragma data_seg (".shared") HHOOK hhk; #pragma data_seg () #pragma ...
0
votes
2answers
412 views

Can I use Global Hooks and Raw Input at the same time?

I tried using Global Hooks using SetWindowsHookEx to get all the the keystrokes. Problem is i cant use Global Hooks and Raw Input at the same time. I'm thinking there must be some issue here because ...
0
votes
1answer
416 views

WM_PAINT Hook using SetWindowsHookEx

Here Goes My Code // hook.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <windows.h> #include <iostream> using namespace std; LRESULT ...
0
votes
2answers
170 views

Best way to intercept pressing of Caps Lock

What is the best way to intercept the Caps Lock button on Windows, for making a program like Launchy? Currently, I'm setting a low-level hook with SetWindowsHookEx, but that's a bit too low-level for ...
0
votes
1answer
285 views

Hooking Win32 windows creation/resize/querying sizes

I'm trying to "stretch" an existing application. The goal is to make an existing application become larger without changing the code of that application. A cosntraint is that the stretched ...
0
votes
0answers
93 views

How to check whether a Windows hook was set

For my unit testing: how can I test whether a Windows hook was set correctly? I am building an eventlogger in C# using this example http://www.codeproject.com/KB/cs/globalhook.aspx THese are the ...
0
votes
1answer
410 views

calling setwindowshookex with WH_GETMESSAGE doesn't work on any process except the injector

I previously asked a question about something similar but I believe this time the circumstances are different. I have a DLL that has standard hook, unhook and msgProc functions. I load this DLL in my ...
0
votes
2answers
419 views

How could I set a global hook by a GUI without UAC prompt on Win7?

Dear all, I want to set a global hook by SetWindowsHookEx. The hook is wrapped in hook.dll and is registered by a GUI window app.exe. Everything works fine on window NT/xp. But on Win7, how could I ...
0
votes
2answers
970 views

SetWindowsHookEx returns 0 when compiling for the .NET 4.0 framework in 32bit machines

I'm trying to set a low level windows keyboard hook to grab three keys pressed even if the application is not in focus. To do this I'm calling SetWindowsHookEx as // Create an instance of HookProc. ...
0
votes
2answers
238 views

Detect application windows

I use CBT Windows Hook to detect window creation/deletion/min-max/move-size events. I works well, but I need to filter whose events coming from normal widgets. Practically I need to being notified by ...

1 2