1. Check registry entry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\SensLogn
2. Verify if the following entry is correct:
| Name | Data type | Data value | ||
| Asynchronous | DWORD | 00000001 | ||
| DLLName | String | WlNotify.dll | ||
| Impersonate | DWORD | 00000001 | ||
| Lock | String | SensLockEvent | ||
| Logoff | String | SensLogoffEvent | ||
| Logon | String | SensLogonEvent | ||
| MaxWait | DWORD | 00000258 | ||
| Safe | DWORD | 00000001 | ||
| Shutdown | String | SensShutdownEvent | ||
| StartScreenSaver | String | SensStartScreenSaverEvent | ||
| StartShell | String | SensStartShellEvent | ||
| Startup | String | SensStartupEvent | ||
| StopScreenSaver | String | SensStopScreenSaverEvent | ||
| Unlock | String | SensUnlockEvent |
Alternatively you can copy and paste the code below and save it as SensLogn.reg and run it afterwards.
<- – - – - – - – - – - – SOF – - – - – - – - – - – - >
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\SensLogn]
“DLLName”=”WlNotify.dll”
“Lock”=”SensLockEvent”
“Logon”=”SensLogonEvent”
“Logoff”=”SensLogoffEvent”
“Safe”=dword:00000001
“MaxWait”=dword:00000258
“StartScreenSaver”=”SensStartScreenSaverEvent”
“StopScreenSaver”=”SensStopScreenSaverEvent”
“Startup”=”SensStartupEvent”
“Shutdown”=”SensShutdownEvent”
“StartShell”=”SensStartShellEvent”
“PostShell”=”SensPostShellEvent”
“Disconnect”=”SensDisconnectEvent”
“Reconnect”=”SensReconnectEvent”
“Unlock”=”SensUnlockEvent”
“Impersonate”=dword:00000001
“Asynchronous”=dword:00000001
<- – - – - – - – - – - – EOF – - – - – - – - – - – - >