当前位置: 代码迷 >> 综合 >> inno setup打包工具相关
  详细解决方案

inno setup打包工具相关

热度:49   发布时间:2023-12-21 21:08:54.0


0,

安装卸载过程中,添加命令:http://blog.csdn.net/warrially/article/details/8544565


1,

软件使用方法: http://blog.csdn.net/g710710/article/details/7217424



2,

Inno Setup打包添加和去除管理员权限

添加管理员权限

1、在[Setup]节点添加 PrivilegesRequired=admin

2、进入安装目录,找到文件SetupLdr.e32,这是一个二进制配置文件,需要用到ResHacker.exe这个工具修改

   找到<requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges>,

     修改为<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/></requestedPrivileges>

 

删除管理员权限

1、在[Setup]节点添加 PrivilegesRequired=none 或者 PrivilegesRequired=lowest

2、在[Setup]节点修改 DefaultDirName(安装路径)的值,默认可能是DefaultDirName={pf}\{#MyAppName},

  不要带{pf}, {win}, {sys}这些变量值,比如设置成DefaultDirName={localappdata}\{#MyAppName}



  相关解决方案