How to configure Inno Setup to uninstall everything?

后端 未结 9 1226
渐次进展
渐次进展 2020-12-13 14:33

I am new to Inno Setup. Stuck on one issue ~ how to configure the uninstall piece to remove all files, folders, subfolders, and even new files/folders etc. created by applic

9条回答
  •  旧巷少年郎
    2020-12-13 15:03

    Add delete file/folder item in Inno Setup studio. Or directly use the script as follows.

    [Generated code sample]

    [UninstallDelete]
    Type: filesandordirs; Name: "{app}\unnecessary_files"
    

提交回复
热议问题