I'm not sure whether I've hit the same bug...
On some PCs (Windows XP) it seems, my program get stuck during init. There is an application shown in taskbar, but no window.
From a fellow developer that reported the issue (I cannot reproduce it here on both my PC and laptop):
It is looping on registry request on joystick (he hasn't got one attached to his PC at the moment).
The key : HKLM\System\CurrentControlSet\Control\MediaResources\Joystick\DINPUT.DLL\CurrentJoystickSettings
From what Process Monitor tells him.
I can provide exe and source code privately if needed, but my initialization looks like this (pseudo-code):
RenderWindow *app = new RenderWindow();
InitLotsOfStuff();
FindSuitableVideoMode();
app->Create(suitableParameters);
In InitLotsofStuff(), there is a call to app->GetInput() (in a constructor to be precise). Maybe that's causing the problem, requesting inputs before the actual window is setup, but it's working on several PCs including mine.