The simplest solution is to reboot, a logout could also be sufficient.
Here's what I do to get it back without closing all the apps. There are two tasks that have to be killed in the task manager. One is the PWMUIAux.exe, the other is rundll32.exe. The second is a bit tricky as there may be more than one running. To find out which to kill, the command line column has to be enabled in View/Select Columns. The one we're looking for has this in it:
rundll32 C:\PROGRA~1\ThinkPad\UTILIT~1\PWMTR32V.DLL,PwrMgrBkGndMonitor
After killing them both, the rundll32.exe has to be restarted. The exact command line is what you see above.
To make the whole thing automatic, I wrote a short batch file:
Code: Select all
taskkill /f /im pwmuiaux.exe
taskkill /f /fi "modules eq pwmtr32v.dll"
start /b rundll32 C:\PROGRA~1\ThinkPad\UTILIT~1\PWMTR32V.DLL,PwrMgrBkGndMonitorNote that it takes a couple of seconds for the battery meter to reappear after this. It will appear as soon as the rundll restarts the PWMUIAux.
Please let me know if this problem is specific to my system only. In particular tell me if the meter reappears if you go to the task manager, kill the explorer.exe task and restart it by extering explorer.exe in File/New Task dialog. Thanks.





