Downloade dir madshi's madRes herunter (ist OpenSource) und dann benutze folgendenen Code um eine Resource aus der Anwendung zu löschen.
Delphi-Quellcode:
var
hUpdate: THandle;
begin
hUpdate := madres.BeginUpdateResourceW(PWideChar(WideString(sFilename)), False);
if hUpdate <> INVALID_HANDLE_VALUE then
begin
madres.UpdateResourceW(hUpdate, 'TYP', 'NAME', 0, nil, 0);
madres.EndUpdateResourceW(hUpdate, False);
end;