Refresh shell icons: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Adding new author and category links.)
Line 18: Line 18:
FunctionEnd</highlight-nsis>
FunctionEnd</highlight-nsis>


[[Category:Windows Shell Integration Functions]]
[[Category:System Related Functions]]

Revision as of 16:20, 11 November 2005

Author: jerometremblay (talk, contrib)


How To Use

After changing file associations, you can call this macro to refresh the shell immediatly. It calls the shell32 function SHChangeNotify. This will force windows to reload your changes from the registry.

Call RefreshShellIcons

The Function

!define SHCNE_ASSOCCHANGED 0x08000000
!define SHCNF_IDLIST 0
 
Function RefreshShellIcons
  ; By jerome tremblay - april 2003
  System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) v \
  (${SHCNE_ASSOCCHANGED}, ${SHCNF_IDLIST}, 0, 0)'
FunctionEnd