Inno Setup refresh desktop

陌路散爱 提交于 2019-12-04 17:07:56
Andreas Rejbrand

You can call any function in the Windows API by calling it in the appropriate DLL. The Pascal DLL syntax is documented here. The documentation of the SHChangeNotify function is found at MSDN as usual. This function is found in Shell32.dll (no surprise!).

[Code]
const
  SHCNE_ASSOCCHANGED = $08000000;
  SHCNF_IDLIST = $00000000;

procedure SHChangeNotify(wEventID: integer; uFlags: cardinal; dwItem1, dwItem2: cardinal);
external 'SHChangeNotify@shell32.dll stdcall';

procedure SendChangeNotification;
begin
  SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, 0, 0);
end;

Now you can call SendChangeNotification anywhere you like, for instance in an event function.

Update

The text above answers your question, how to "refresh the desktop using Inno Setup in the [Code] section". But you know that Inno Setup can refresh the desktop for you, automatically? Simply write

ChangesAssociations=yes

in the [Setup] section.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!