How do I disable all windows hotkeys?
Solution 1:
Check this reference,
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\NoWinKeys
Set to disable, Reset to enable.
You will also find apps like this one, but if it is a simple registry change,
it is better to skip executables for it.
Solution 2:
Well, ask a question at a time, for the one in the title:
The registry below will work for windows hotkeys, if you are thinking of hotkeys for a particular window (application) then you just have to check the application's settings.
As for hiding title bars, it kind of seems you are looking for something like hideanywindow
If you want to do it yourself (coding) you can try having a go at reading the win32 API
To disable hotkeys:
User Key: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\ Explorer] System Key:
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\ Explorer] Value Name: NoWinKeys Data
Type: REG_DWORD (DWORD Value) Value Data: (0 = disable restriction, 1 = enable restriction)
found at: pctools