dll注册-inno setup [Registry] 报毒

问题描述

inno setup [Registry] 报毒

打包一个软件的时候需要写系统注册表,但是这样子会被360报毒。[Registry]
Root: HKCR; Subkey: "CLSID{{44EC053A-400F-11D0-9DCD-00A0C90391D3}InprocServer32"; ValueType: String; ValueData: "{sys}atl.dll";
有没有什么办法可以让杀毒软件不报病毒

解决方案

这个主要是注册了atl.dll。

时间: 2024-09-09 06:31:24

dll注册-inno setup [Registry] 报毒的相关文章

Inno Setup connection to the database and create

原文 Inno Setup connection to the database and create Description: the first half of this program in Inno Setup instance inside there, behind the database backup and restore inside the instance is not easy to find online, I spent a great difficulty sen

以前编写的inno setup脚本,涵盖了自定义安装界面,调用dll等等应用 (转)

; Script generated by the Inno Setup 脚本向导.   ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!      ; 为1的时候表示定义成试用版本   #define VERSION_TYPE ReadIni('Setup.ini', 'SetupType', 'type', '0')      #if VERSION_TYPE == "2"       

注册flash.ocx inno setup (转)

; 脚本由 Inno Setup 脚本向导 生成!   ; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档!         #define MyAppName "xx模块"   #define MyAppName2 "xx模块"   #define MyAppName3 "xx系统"   #define MyAppVersion "2012"   #define IncludeFramework true 

inno setup介绍(转)

使 用 笔 记 1.Inno Setup 是什么?Inno Setup 是一个免费的 Windows 安装程序制作软件.第一次发表是在 1997 年,Inno Setup 今天在功能设置和稳定性上的竞争力可能已经超过一些商业的安装程序制作软件.关键功能: 支持现在所有正在使用的 32 位 Windows 版本: Windows 95,98,2000,Server 2003,XP,Me,NT 4.0 (不需要服务包). 支持创建单个 EXE 格式的安装程序,使你的程序可以很方便地在网络上发表.同时

一个比较完整的Inno Setup 安装脚本

原文:一个比较完整的Inno Setup 安装脚本 增加了对ini文件设置的功能,一个安装包常用的功能都具备了. [Setup]; 注: AppId的值为单独标识该应用程序.; 不要为其他安装程序使用相同的AppId值.; (生成新的GUID,点击 工具|在IDE中生成GUID.)AppId={{A9861883-31C5-4324-BD9A-DC3271EEB675};程序名AppName=ISsample;版本号AppVerName=ISsample 1.0.0.0;发布者名AppPubli

一个比较完整的Inno Setup 安装脚本(转)

一个比较完整的Inno Setup 安装脚本,增加了对ini文件设置的功能,一个安装包常用的功能都具备了. [plain] view plaincopy [Setup]   ; 注: AppId的值为单独标识该应用程序.   ; 不要为其他安装程序使用相同的AppId值.   ; (生成新的GUID,点击 工具|在IDE中生成GUID.)   AppId={{A9861883-31C5-4324-BD9A-DC3271EEB675}   ;程序名   AppName=ISsample   ;版本

INNO Setup 使用笔记(来自网络)

[Setup] AppName={#MyAppName} AppVerName={#MyAppVerName} AppPublisher={#MyAppPublisher} AppPublisherURL={#MyAppURL} AppSupportURL={#MyAppURL} AppUpdatesURL={#MyAppURL} DefaultDirName={pf}\My Programee DefaultGroupName={#MyAppName} InfoBeforeFile=D:\In

Inno Setup使用上的几个问题 (转)

Inno Setup使用上的几个问题: [问题一:Inno Setup 执行REG文件代码?][Run]Filename: "{win}\regedit.exe";Parameters:"/s {tmp}\reg.reg" // 静默参数/S [问题二:安装时,如果已经有同名文件存在,就不更新该文件?][Files]Source: "test.tmp"; DestDir: "{app}"; Flags: onlyifdoesn

用Inno Setup来解决.NetFramework安装问题

前段时间朋友接了一个项目,具体是开发一个安装在局域网内的软件,这个 软件会定时连接局域网内的服务器来更新本地客户端的一些信息,因为在局域网 内存在着多种不同的Windows版本,从WindowsXP.Windows2003及Windows2008到 Windows7等,这个软件采用VS2008/.Net Framework2.0开发,因为有些系统默认 没有安装.Net Framework2.0,所以在运行时需要确保客户机上已经安装上.Net Framework2.0,于是想到将软件打包. 制作软