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
Another option on Windows would be the following:
To your python code add the following:
import ctypes myappid = 'mycompany.myproduct.subproduct.version' # arbitrary string ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid)