How to customize meeting window icon

Description
reference this topic: How to customize app icon on Windows
in windows native sdk, I replace zoom icon with my icon through these code.
initParam.uiWindowIconBigID = IDI_ICON_LOGO;
initParam.uiWindowIconSmallID = IDI_ICON_LOGO;
Since IDI_ICON_LOGO is integer value, it’s resource id in VC. I don’t know how to bind a integer to image file in electron sdk. or I can’t replace meeting window icon.

Hi @guan_bj,

Thanks for the post. You may replace the zoomsdk.ico in `lib\node_add_on\node_res.rc with your own icon(.ico) and then rebuild the node files. You may refer to the implementation here: https://github.com/zoom/zoom-sdk-electron/blob/master/lib/node_add_on/win/zoom_native_sdk_wrap_core.cpp#L78

Thanks!