I\'ve been working on a very simple python/tkinter script (a .pyw file) and I\'d like to change it\'s application icon (the \'file\' icon shown at the explorer window and th
Use
root.iconbitmap(default='ardulan.ico')
But the probleme is that it only replace the icon on the windows not on the taskbar. It's because the py file is executed from python interpreter so windows use his icon and not the tkinter icon.
You have to 'compile' it i think with py2exe, cx_Freeze, py2app ...
http://www.py2exe.org/index.cgi/CustomIcons