UninstallIcon function (Installer DLL)
Overview
Removes the ICO file from the icon list
Declaration
BOOL __stdcall UninstallIconA(
const char * IconId,
BOOL * RebootNeeded);
BOOL __stdcall UninstallIconW(
const unsigned short * IconId,
BOOL * RebootNeeded);
Parameters
- IconId - ID of the previously installed .ico file, which should be uninstalled.
- RebootNeeded - On return indicates if the system needs to be restarted.
Return values
TRUE / true if the function succeeded or FALSE / false if the function failed.
Description
Use this function to remove previously installed icon (.ICO) file from the list of installed icons. After deinstallation the icon can't be used as a custom icon anymore.
See also
Got questions or comments about this topic? Tell us about them.

