Reputation: 533
Once I start my application, the application icon comes and sits in the system tray. Keeping application open, I tried to uninstall the application. the application folder gets uninstalled but the icon in the system tray remains and still application runs.
p.s. I use the setup wizard to create the installer.
Upvotes: 1
Views: 1197
Reputation: 2064
use Notification Area Cleaner application. fix everything without problems in windows 8.1
version: 1.0 (32-bit) download (50KB, revised March 07, 2010)
version: 1.0 (64-bit) download (57KB, revised March 14, 2011)
Upvotes: 0
Reputation: 7207
From my experience the only way to remove notify icon from tray area was with:
myNotifyIcon.Visible = false;
This makes notify icon dissapear immediately. Even when I've stopped application completely, without setting notifyIcon's visibility to false, it results in icon staying in tray area as long as mouse pointer wasn't hovered over it.
Try to use this command inside your uninstaller.
Upvotes: 1