4

A balloon tip is stuck/frozen on my screen and it overlaps every other graphical element. How can this be removed without rebooting?

You can see the graphical glitch on the following screen. Actually it's only the shade of the balloon tip:

enter image description here

Related thread, but does not solve my issue:
Menu select item stuck on screen after context or command menu has closed

beta
  • 214
  • 1
  • 3
  • 13
  • 2
    Give this a shot from elevated command prompt --> `Taskkill /f /im "explorer.exe` and then press **Enter**... Then from that same command prompt type in "explorer.exe` and then press **Enter**... if that helps resolve without a reboot please let me know and I'll be happy to add as an answer for you to accept. – Vomit IT - Chunky Mess Style Sep 02 '16 at 07:06
  • Does this happen with *all* balloon tips? A reboot does not fix this? – Jan Doggen Sep 02 '16 at 07:09
  • @PIMP_JUICE_IT: balloon tip is gone, but now my taskbar is gone, too. how can I let it reappear? edit: I just typed `"explorer.exe"` into the command line and everything is back to normal. thx! – beta Sep 02 '16 at 07:18
  • Beta - Cool, I just added this as an answer for you to accept whenever you get to it since you confirmed that my suggestion corrected the problem. Let me know if there are further problems or questions. – Vomit IT - Chunky Mess Style Sep 03 '16 at 03:44

1 Answers1

1

You can see the graphical glitch on the following screen. How can this be removed without rebooting?

To correct a graphical glitch on the Windows desktop that a reboot of the machine typically resolves, you can just use Taskkill to kill Explorer.exe from running in memory, and then start a new instance of Explorer.exe—you can do both of these operations from an elevated command prompt with Windows 7 (see below example).


Command Line

Run these from an elevated Run As Administrator command prompt and be sure to press Enter after each command.

:::: This kills explorer.exe from running in memory
TASKKILL /F /IM "Explorer.exe"
:::: This restarts a new instance of Explorer.exe in memory
Explorer.exe

Further Resources

Vomit IT - Chunky Mess Style
  • 40,038
  • 27
  • 84
  • 117