I have tried to use the program described here Problems in deleting a Folder during the uninstalation with Inno Setup
after the answers were posted but for some unknown reason to me that code part isn't doing anything. May be related to windows version or if it's on 32 or 64 bit?
Here's the code used by me:
procedure CurUninstallStepChanged (CurUninstallStep: TUninstallStep);
var
mres : integer;
begin
case CurUninstallStep of
usPostUninstall:
begin
mres := MsgBox('Do you want to delete saved games?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2)
if mres = IDYES then
DelTree('ExpandConstant({userdocs}\SpellForce2)', True, True, True);
end;
end;
end;
Any idea that could be useful to me?
Thanks in advance! :)