vote up 4 vote down star
6

What's the simplest way to put a python script into the system tray?

My target platform is Windows. I don't want to see the 'cmd.exe' window.

flag

1 Answer

vote up 9 vote down check

Those are two questions, actually:

  1. Adding a tray icon can be done with Win32 API. Example: SysTrayIcon.py
  2. Hiding the cmd.exe window is as easy as using pythonw.exe instead of python.exe to run your scripts.
link|flag
Works for me. Thanks. – Alterlife Jul 6 at 6:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.