Your example works, but I am trying to change the Total Commander (x64) icon and it doesn't work. (Interestingly works on x86 Total Commander)
#include <WinAPI.au3>
#include <WinAPIIcons.au3>
#include <WindowsConstants.au3>
Const $sTitle = "[Title:Total Commander (x64);Class:TTOTAL_CMD]"
Do
Sleep(10)
Until WinExists($sTitle)
Local $hWnd = WinGetHandle($sTitle)
Sleep(1000)
_WinSetIcon($hWnd, "shell32.dll", 41)
Msgbox(0, @ScriptName, WinExists($sTitle)) ; checked: Window exists
Func _WinSetIcon($hWnd, $sFile, $iIndex = 0)
Local $hIcon = _WinAPI_ExtractIcon($sFile, $iIndex, True)
_SendMessage($hWnd, $WM_SETICON, 1, $hIcon)
ConsoleWrite(_WinAPI_DestroyIcon($hIcon) & @CRLF)
EndFunc ;==>_WinSetIcon
How to change the icon in Total Commander (x64)?