Browse code

Replaced vdproj Installer Project setup build files with Inno Setup build file. Updated win32 README accordingly.

Micah Snyder (micasnyd) authored on 2018/08/09 21:56:22
Showing 11 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,188 @@
0
+; -- ClamAV-Installer.iss --
1
+; Install ClamAV.
2
+; Will install the correct files and DLLs built for two different 
3
+; for the system architecture (x86 or x64) using a single installer: 
4
+; on a "x86" edition of Windows the x86 version of the program will be
5
+; installed but on a "x64" edition of Windows the x64 version will
6
+; be installed.
7
+
8
+[Setup]
9
+AppName=ClamAV
10
+AppVersion=0.101.0
11
+DefaultDirName={pf}\ClamAV
12
+DefaultGroupName=ClamAV
13
+AppCopyright=2018 Cisco Systems, Inc.
14
+AppPublisher=Cisco Systems, Inc.
15
+AppPublisherURL=https://www.clamav.net/
16
+LicenseFile=..\COPYING
17
+UninstallDisplayIcon={app}\clam.ico
18
+UninstallDisplayName=ClamAV
19
+Compression=lzma2
20
+SolidCompression=yes
21
+OutputDir=.
22
+OutputBaseFilename=ClamAV-0.101.0
23
+WizardImageFile=demon.bmp
24
+WizardSmallImageFile=talos.bmp
25
+
26
+; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
27
+; done in "64-bit mode" on x64, meaning it should use the native
28
+; 64-bit Program Files directory and the 64-bit view of the registry.
29
+; On all other architectures it will install in "32-bit mode".
30
+ArchitecturesInstallIn64BitMode=x64
31
+; Note: We don't set ProcessorsAllowed because we want this
32
+; installation to run on all architectures (including Itanium,
33
+; since it's capable of running 32-bit code too).
34
+
35
+[Files]
36
+; x64 files here
37
+Source: "x64\Release\clambc.exe"; DestDir: "{app}"; DestName: "clambc.exe"; Check: Is64BitInstallMode
38
+Source: "x64\Release\clamconf.exe"; DestDir: "{app}"; DestName: "clamconf.exe"; Check: Is64BitInstallMode
39
+Source: "x64\Release\clamd.exe"; DestDir: "{app}"; DestName: "clamd.exe"; Check: Is64BitInstallMode
40
+Source: "x64\Release\clamdscan.exe"; DestDir: "{app}"; DestName: "clamdscan.exe"; Check: Is64BitInstallMode
41
+Source: "x64\Release\clamscan.exe"; DestDir: "{app}"; DestName: "clamscan.exe"; Check: Is64BitInstallMode
42
+Source: "x64\Release\freshclam.exe"; DestDir: "{app}"; DestName: "freshclam.exe"; Check: Is64BitInstallMode
43
+Source: "x64\Release\libclamav.dll"; DestDir: "{app}"; DestName: "libclamav.dll"; Check: Is64BitInstallMode
44
+Source: "x64\Release\libclamunrar_iface.dll"; DestDir: "{app}"; DestName: "libclamunrar_iface.dll"; Check: Is64BitInstallMode
45
+Source: "x64\Release\libclamunrar.dll"; DestDir: "{app}"; DestName: "libclamunrar.dll"; Check: Is64BitInstallMode
46
+Source: "x64\Release\mspack.dll"; DestDir: "{app}"; DestName: "mspack.dll"; Check: Is64BitInstallMode
47
+Source: "x64\Release\pthreads.dll"; DestDir: "{app}"; DestName: "pthreads.dll"; Check: Is64BitInstallMode
48
+Source: "x64\Release\sigtool.exe"; DestDir: "{app}"; DestName: "sigtool.exe"; Check: Is64BitInstallMode
49
+Source: "libcrypto-1_1-x64.dll"; DestDir: "{app}"; DestName: "libcrypto-1_1-x64.dll"; Check: Is64BitInstallMode
50
+Source: "libssl-1_1-x64.dll"; DestDir: "{app}"; DestName: "libssl-1_1-x64.dll"; Check: Is64BitInstallMode
51
+Source: "C:\clam_dependencies\vcredist\vc_redist.x64.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall; Check: Is64BitInstallMode
52
+
53
+; x86 files here, first one should be marked 'solidbreak'
54
+Source: "Win32\Release\clambc.exe"; DestDir: "{app}"; DestName: "clambc.exe"; Check: not Is64BitInstallMode; Flags: solidbreak
55
+Source: "Win32\Release\clamconf.exe"; DestDir: "{app}"; DestName: "clamconf.exe"; Check: not Is64BitInstallMode
56
+Source: "Win32\Release\clamd.exe"; DestDir: "{app}"; DestName: "clamd.exe"; Check: not Is64BitInstallMode
57
+Source: "Win32\Release\clamdscan.exe"; DestDir: "{app}"; DestName: "clamdscan.exe"; Check: not Is64BitInstallMode
58
+Source: "Win32\Release\clamscan.exe"; DestDir: "{app}"; DestName: "clamscan.exe"; Check: not Is64BitInstallMode
59
+Source: "Win32\Release\freshclam.exe"; DestDir: "{app}"; DestName: "freshclam.exe"; Check: not Is64BitInstallMode
60
+Source: "Win32\Release\libclamav.dll"; DestDir: "{app}"; DestName: "libclamav.dll"; Check: not Is64BitInstallMode
61
+Source: "Win32\Release\libclamunrar_iface.dll"; DestDir: "{app}"; DestName: "libclamunrar_iface.dll"; Check: not Is64BitInstallMode
62
+Source: "Win32\Release\libclamunrar.dll"; DestDir: "{app}"; DestName: "libclamunrar.dll"; Check: not Is64BitInstallMode
63
+Source: "Win32\Release\mspack.dll"; DestDir: "{app}"; DestName: "mspack.dll"; Check: not Is64BitInstallMode
64
+Source: "Win32\Release\pthreads.dll"; DestDir: "{app}"; DestName: "pthreads.dll"; Check: not Is64BitInstallMode
65
+Source: "Win32\Release\sigtool.exe"; DestDir: "{app}"; DestName: "sigtool.exe"; Check: not Is64BitInstallMode
66
+Source: "libcrypto-1_1.dll"; DestDir: "{app}"; DestName: "libcrypto-1_1.dll"; Check: not Is64BitInstallMode
67
+Source: "libssl-1_1.dll"; DestDir: "{app}"; DestName: "libssl-1_1.dll"; Check: not Is64BitInstallMode   
68
+Source: "C:\clam_dependencies\vcredist\vc_redist.x86.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall; Check: not Is64BitInstallMode
69
+
70
+; Place all common files here, first one should be marked 'solidbreak'
71
+Source: "res\clam.ico"; DestDir: "{app}"; DestName: "clam.ico"; Flags: solidbreak
72
+Source: "conf_examples\clamd.conf.sample"; DestDir: "{app}\conf_examples"; DestName: "clamd.conf.sample"
73
+Source: "conf_examples\freshclam.conf.sample"; DestDir: "{app}\conf_examples"; DestName: "freshclam.conf.sample"
74
+Source: "..\COPYING"; DestDir: "{app}\COPYING"; DestName: "COPYING"
75
+Source: "..\COPYING.bzip2"; DestDir: "{app}\COPYING"; DestName: "COPYING.bzip2"
76
+Source: "..\COPYING.file"; DestDir: "{app}\COPYING"; DestName: "COPYING.file"
77
+Source: "..\COPYING.getopt"; DestDir: "{app}\COPYING"; DestName: "COPYING.getopt"
78
+Source: "..\COPYING.LGPL"; DestDir: "{app}\COPYING"; DestName: "COPYING.LGPL"
79
+Source: "..\COPYING.llvm"; DestDir: "{app}\COPYING"; DestName: "COPYING.llvm"
80
+Source: "..\COPYING.lzma"; DestDir: "{app}\COPYING"; DestName: "COPYING.lzma"
81
+Source: "..\COPYING.pcre"; DestDir: "{app}\COPYING"; DestName: "COPYING.pcre"
82
+Source: "..\COPYING.regex"; DestDir: "{app}\COPYING"; DestName: "COPYING.regex"
83
+Source: "..\COPYING.unrar"; DestDir: "{app}\COPYING"; DestName: "COPYING.unrar"
84
+Source: "..\COPYING.YARA"; DestDir: "{app}\COPYING"; DestName: "COPYING.YARA"
85
+Source: "..\COPYING.zlib"; DestDir: "{app}\COPYING"; DestName: "COPYING.zlib"
86
+Source: "..\ChangeLog.md"; DestDir: "{app}\docs"; DestName: "ChangeLog.md"
87
+Source: "..\NEWS.md"; DestDir: "{app}\docs"; DestName: "NEWS.md"              
88
+Source: "..\README.md"; DestDir: "{app}"; DestName: "README.md"
89
+Source: "..\docs\UserManual.md"; DestDir: "{app}\docs"; DestName: "UserManual.md"
90
+Source: "..\docs\UserManual\Configuration.md"; DestDir: "{app}\docs\UserManual"; DestName: "Configuration.md"
91
+Source: "..\docs\UserManual\Installation.md"; DestDir: "{app}\docs\UserManual"; DestName: "Installation.md"
92
+Source: "..\docs\UserManual\Introduction.md"; DestDir: "{app}\docs\UserManual"; DestName: "Introduction.md"
93
+Source: "..\docs\UserManual\libclamav.md"; DestDir: "{app}\docs\UserManual"; DestName: "libclamav.md"
94
+Source: "..\docs\UserManual\PhishSigs.md"; DestDir: "{app}\docs\UserManual"; DestName: "PhishSigs.md"
95
+Source: "..\docs\UserManual\Signatures.md"; DestDir: "{app}\docs\UserManual"; DestName: "Signatures.md"
96
+Source: "..\docs\UserManual\Usage.md"; DestDir: "{app}\docs\UserManual"; DestName: "Usage.md"
97
+Source: "..\docs\UserManual\images\demon.png"; DestDir: "{app}\docs\UserManual\images"; DestName: "demon.png"
98
+
99
+[Dirs]
100
+Name: "{app}\database"
101
+
102
+; The VCRedistNeedsInstall function checks if a given version of VC++ is already installed
103
+; Modify the function with one (or more) of the VC_* constants to suit your version
104
+
105
+[Run]
106
+Filename: "{tmp}\vc_redist.x86.exe"; Parameters: "/q /norestart"; Check: not Is64BitInstallMode and VCRedistNeedsInstall; WorkingDir: {app}\redist; StatusMsg: Installing VC++ 2015 Redistributables...; Flags: shellexec
107
+Filename: "{tmp}\vc_redist.x64.exe"; Parameters: "/q /norestart"; Check: Is64BitInstallMode and VCRedistNeedsInstall; WorkingDir: {app}\redist; StatusMsg: Installing VC++ 2015 Redistributables...; Flags: shellexec
108
+Filename: https://github.com/Cisco-Talos/clamav-devel/blob/dev/0.101/README.md; Description: "View Readme on GitHub"; Flags: postinstall shellexec
109
+
110
+[Code]
111
+#IFDEF UNICODE
112
+  #DEFINE AW "W"
113
+#ELSE
114
+  #DEFINE AW "A"
115
+#ENDIF
116
+type
117
+  INSTALLSTATE = Longint;
118
+const
119
+  INSTALLSTATE_INVALIDARG = -2;  // An invalid parameter was passed to the function.
120
+  INSTALLSTATE_UNKNOWN = -1;     // The product is neither advertised or installed.
121
+  INSTALLSTATE_ADVERTISED = 1;   // The product is advertised but not installed.
122
+  INSTALLSTATE_ABSENT = 2;       // The product is installed for a different user.
123
+  INSTALLSTATE_DEFAULT = 5;      // The product is installed for the current user.
124
+
125
+  VC_2005_REDIST_X86 = '{A49F249F-0C91-497F-86DF-B2585E8E76B7}';
126
+  VC_2005_REDIST_X64 = '{6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A}';
127
+  VC_2005_REDIST_IA64 = '{03ED71EA-F531-4927-AABD-1C31BCE8E187}';
128
+  VC_2005_SP1_REDIST_X86 = '{7299052B-02A4-4627-81F2-1818DA5D550D}';
129
+  VC_2005_SP1_REDIST_X64 = '{071C9B48-7C32-4621-A0AC-3F809523288F}';
130
+  VC_2005_SP1_REDIST_IA64 = '{0F8FB34E-675E-42ED-850B-29D98C2ECE08}';
131
+  VC_2005_SP1_ATL_SEC_UPD_REDIST_X86 = '{837B34E3-7C30-493C-8F6A-2B0F04E2912C}';
132
+  VC_2005_SP1_ATL_SEC_UPD_REDIST_X64 = '{6CE5BAE9-D3CA-4B99-891A-1DC6C118A5FC}';
133
+  VC_2005_SP1_ATL_SEC_UPD_REDIST_IA64 = '{85025851-A784-46D8-950D-05CB3CA43A13}';
134
+
135
+  VC_2008_REDIST_X86 = '{FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4}';
136
+  VC_2008_REDIST_X64 = '{350AA351-21FA-3270-8B7A-835434E766AD}';
137
+  VC_2008_REDIST_IA64 = '{2B547B43-DB50-3139-9EBE-37D419E0F5FA}';
138
+  VC_2008_SP1_REDIST_X86 = '{9A25302D-30C0-39D9-BD6F-21E6EC160475}';
139
+  VC_2008_SP1_REDIST_X64 = '{8220EEFE-38CD-377E-8595-13398D740ACE}';
140
+  VC_2008_SP1_REDIST_IA64 = '{5827ECE1-AEB0-328E-B813-6FC68622C1F9}';
141
+  VC_2008_SP1_ATL_SEC_UPD_REDIST_X86 = '{1F1C2DFC-2D24-3E06-BCB8-725134ADF989}';
142
+  VC_2008_SP1_ATL_SEC_UPD_REDIST_X64 = '{4B6C7001-C7D6-3710-913E-5BC23FCE91E6}';
143
+  VC_2008_SP1_ATL_SEC_UPD_REDIST_IA64 = '{977AD349-C2A8-39DD-9273-285C08987C7B}';
144
+  VC_2008_SP1_MFC_SEC_UPD_REDIST_X86 = '{9BE518E6-ECC6-35A9-88E4-87755C07200F}';
145
+  VC_2008_SP1_MFC_SEC_UPD_REDIST_X64 = '{5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4}';
146
+  VC_2008_SP1_MFC_SEC_UPD_REDIST_IA64 = '{515643D1-4E9E-342F-A75A-D1F16448DC04}';
147
+
148
+  VC_2010_REDIST_X86 = '{196BB40D-1578-3D01-B289-BEFC77A11A1E}';
149
+  VC_2010_REDIST_X64 = '{DA5E371C-6333-3D8A-93A4-6FD5B20BCC6E}';
150
+  VC_2010_REDIST_IA64 = '{C1A35166-4301-38E9-BA67-02823AD72A1B}';
151
+  VC_2010_SP1_REDIST_X86 = '{F0C3E5D1-1ADE-321E-8167-68EF0DE699A5}';
152
+  VC_2010_SP1_REDIST_X64 = '{1D8E6291-B0D5-35EC-8441-6616F567A0F7}';
153
+  VC_2010_SP1_REDIST_IA64 = '{88C73C1C-2DE5-3B01-AFB8-B46EF4AB41CD}';
154
+
155
+  // Microsoft Visual C++ 2012 x86 Minimum Runtime - 11.0.61030.0 (Update 4) 
156
+  VC_2012_REDIST_MIN_UPD4_X86 = '{BD95A8CD-1D9F-35AD-981A-3E7925026EBB}';
157
+  VC_2012_REDIST_MIN_UPD4_X64 = '{CF2BEA3C-26EA-32F8-AA9B-331F7E34BA97}';
158
+  // Microsoft Visual C++ 2012 x86 Additional Runtime - 11.0.61030.0 (Update 4) 
159
+  VC_2012_REDIST_ADD_UPD4_X86 = '{B175520C-86A2-35A7-8619-86DC379688B9}';
160
+  VC_2012_REDIST_ADD_UPD4_X64 = '{37B8F9C7-03FB-3253-8781-2517C99D7C00}';
161
+
162
+  // Visual C++ 2013 Redistributable 12.0.21005
163
+  VC_2013_REDIST_X86_MIN = '{13A4EE12-23EA-3371-91EE-EFB36DDFFF3E}';
164
+  VC_2013_REDIST_X64_MIN = '{A749D8E6-B613-3BE3-8F5F-045C84EBA29B}';
165
+
166
+  VC_2013_REDIST_X86_ADD = '{F8CFEB22-A2E7-3971-9EDA-4B11EDEFC185}';
167
+  VC_2013_REDIST_X64_ADD = '{929FBD26-9020-399B-9A7A-751D61F0B942}';
168
+
169
+  // Visual C++ 2015 Redistributable 14.0.23026
170
+  VC_2015_REDIST_X86_MIN = '{A2563E55-3BEC-3828-8D67-E5E8B9E8B675}';
171
+  VC_2015_REDIST_X64_MIN = '{0D3E9E15-DE7A-300B-96F1-B4AF12B96488}';
172
+
173
+  VC_2015_REDIST_X86_ADD = '{BE960C1C-7BAD-3DE6-8B1A-2616FE532845}';
174
+  VC_2015_REDIST_X64_ADD = '{BC958BD2-5DAC-3862-BB1A-C1BE0790438D}';
175
+
176
+function MsiQueryProductState(szProduct: string): INSTALLSTATE; 
177
+  external 'MsiQueryProductState{#AW}@msi.dll stdcall';
178
+
179
+function VCVersionInstalled(const ProductID: string): Boolean;
180
+begin
181
+  Result := MsiQueryProductState(ProductID) = INSTALLSTATE_DEFAULT;
182
+end;
183
+
184
+function VCRedistNeedsInstall: Boolean;
185
+begin
186
+  Result := not (VCVersionInstalled(VC_2015_REDIST_X86_MIN) or VCVersionInstalled(VC_2015_REDIST_X86_ADD) or VCVersionInstalled(VC_2015_REDIST_X64_MIN) or VCVersionInstalled(VC_2015_REDIST_X64_ADD));
187
+end;
0 188
\ No newline at end of file
... ...
@@ -72,10 +72,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mspack", "mspack.vcxproj",
72 72
 EndProject
73 73
 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openssl", "openssl.vcxproj", "{5661EB2A-7AE6-4C1A-864B-FDDD32F3D45A}"
74 74
 EndProject
75
-Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup-x64", "Setup-x64\Setup-x64.vdproj", "{92C046F5-ED35-4CF1-B016-F7052EFB3AD3}"
76
-EndProject
77
-Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup-x86", "Setup-x86\Setup-x86.vdproj", "{17F29B6A-389D-44DB-AC8B-9349EA7DBACE}"
78
-EndProject
79 75
 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pthreads", "pthreads.vcxproj", "{56424F95-3DE6-429D-8D80-7F57CCE9209C}"
80 76
 EndProject
81 77
 Global
... ...
@@ -222,18 +218,6 @@ Global
222 222
 		{5661EB2A-7AE6-4C1A-864B-FDDD32F3D45A}.Release|Win32.Build.0 = Release|Win32
223 223
 		{5661EB2A-7AE6-4C1A-864B-FDDD32F3D45A}.Release|x64.ActiveCfg = Release|x64
224 224
 		{5661EB2A-7AE6-4C1A-864B-FDDD32F3D45A}.Release|x64.Build.0 = Release|x64
225
-		{92C046F5-ED35-4CF1-B016-F7052EFB3AD3}.Debug|Win32.ActiveCfg = Debug
226
-		{92C046F5-ED35-4CF1-B016-F7052EFB3AD3}.Debug|x64.ActiveCfg = Debug
227
-		{92C046F5-ED35-4CF1-B016-F7052EFB3AD3}.Debug|x64.Build.0 = Debug
228
-		{92C046F5-ED35-4CF1-B016-F7052EFB3AD3}.Release|Win32.ActiveCfg = Release
229
-		{92C046F5-ED35-4CF1-B016-F7052EFB3AD3}.Release|x64.ActiveCfg = Release
230
-		{92C046F5-ED35-4CF1-B016-F7052EFB3AD3}.Release|x64.Build.0 = Release
231
-		{17F29B6A-389D-44DB-AC8B-9349EA7DBACE}.Debug|Win32.ActiveCfg = Debug
232
-		{17F29B6A-389D-44DB-AC8B-9349EA7DBACE}.Debug|Win32.Build.0 = Debug
233
-		{17F29B6A-389D-44DB-AC8B-9349EA7DBACE}.Debug|x64.ActiveCfg = Debug
234
-		{17F29B6A-389D-44DB-AC8B-9349EA7DBACE}.Release|Win32.ActiveCfg = Release
235
-		{17F29B6A-389D-44DB-AC8B-9349EA7DBACE}.Release|Win32.Build.0 = Release
236
-		{17F29B6A-389D-44DB-AC8B-9349EA7DBACE}.Release|x64.ActiveCfg = Release
237 225
 		{56424F95-3DE6-429D-8D80-7F57CCE9209C}.Debug|Win32.ActiveCfg = Debug|Win32
238 226
 		{56424F95-3DE6-429D-8D80-7F57CCE9209C}.Debug|Win32.Build.0 = Debug|Win32
239 227
 		{56424F95-3DE6-429D-8D80-7F57CCE9209C}.Debug|x64.ActiveCfg = Debug|x64
... ...
@@ -1,13 +1,21 @@
1
-ClamAV for Win32
2
-================
1
+# ClamAV for Win32
3 2
 
4
-News
3
+## News
4
+
5
+### Installer Projects
6
+
7
+ClamAV 0.101 removes the old Visual Studio Installer Projects files (Setup-x64.vdproj, Setup-x86.vdproj). In their place we now build an installer using Inno Setup that is capable of installing ClamAV on both 32-bit and 64-bit architectures with one installer.
8
+
9
+For more details, see the instructions below on how to build ClamAV.
10
+
11
+### OpenSSL
5 12
 
6 13
 In order to support more advanced features planned in future releases, ClamAV has switched to using OpenSSL for hashing. The ClamAV Visual Studio project included with ClamAV's source code requires the OpenSSL distributables to be placed in a specific directory. This article will teach you how to compile OpenSSL on a Microsoft Windows system and how to link ClamAV against OpenSSL.
7 14
 
8 15
 [Read More here](http://blog.clamav.net/2014/07/compiling-openssl-for-windows.html "ClamAV Blog")
9 16
 
17
+### Socket and libclamav API input
18
+
10 19
 Starting from version 0.98 the windows version of ClamAV requires all the input to be UTF-8 encoded.
11 20
 
12 21
 This affects:
... ...
@@ -23,89 +31,126 @@ Second, ANSI sequences which are also valid UTF-8 sequences will be handled as U
23 23
 As a side note, console output (stdin and stderr) will always be OEM encoded,
24 24
 even when redirected to a file.
25 25
 
26
-Requirements
26
+## Requirements
27 27
 
28 28
 To build the source code you will need:
29 29
 
30 30
 - [Git for Windows](https://git-scm.com/download/win "Git SCM Windows Downloads") with a git "shell"
31 31
 - [Microsoft Visual Studio 2015](https://www.visualstudio.com/vs/older-downloads/ "Visual Studio Downloads"): the community version is just fine.
32
-  You will need the Microsoft Visual Studio Installer Projects extension
33
-  in order to load and build the Setup x86 and Setup x64 projects that
34
-  build the .msi installers.
35 32
 
36 33
 To build the installer, you also need:
37 34
 
38
-- [Microsoft Visual Studio 2015 Installer Projects plugin](https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.MicrosoftVisualStudio2015InstallerProjects "VS2015 Installer Plugin Download")
35
+- [Inno Setup 5](http://www.jrsoftware.org/isdl.php "Inno Setup installer creation tool")
39 36
 
40 37
 ClamAV is supported for Windows 7+, but Windows 10 is recommended.
41 38
 Visual Studio 2017 should work fine, but we currently work with Visual Studio 2015.
42 39
 
43
-Getting the code
40
+## Getting the code
44 41
 
45
-ClamAV source code is freely available via github at https://github.com/vrtadmin/clamav-devel
42
+ClamAV source code is freely available via github at https://github.com/Cisco-Talos/clamav-devel
46 43
 
47 44
 To obtain a copy of the code, open a Git Bash terminal.  Navigate to a directory where you want to store the code, eg "workspace" and clone the repository using the https web URL.  For example:
48 45
 
49
-1. cd
50
-2. mkdir workspace
51
-3. cd workspace
52
-4. git clone https://github.com/vrtadmin/clamav-devel.git
46
+1. `cd`
47
+2. `mkdir workspace`
48
+3. `cd workspace`
49
+4. `git clone https://github.com/vrtadmin/clamav-devel.git`
53 50
 
54 51
 Step into the win32 directory and open an Explorer window.
55 52
 
56
-1. cd clamav-devel
57
-2. cd win32
58
-3. explorer .
53
+1. `cd clamav-devel`
54
+2. `cd win32`
55
+3. `explorer .`
59 56
 
60 57
 ClamAV for Windows uses the same code base as Unix/Linux based operating systems.  However, Windows specific files for building ClamAV are found under the win32 directory.
61 58
 
62
-Code configuration
59
+## Code configuration
63 60
 
64 61
 After downloading the source code, minimal configuration is required:
65 62
 
66
-1. Run the win32/configure.bat script *from within the git shell*. Skip this step if you are building from an official release tarball.
63
+1. Run the `win32/configure.bat` script *from within the git shell*. Skip this step if you are building from an official release tarball.
67 64
 2. Obtain OpenSSL V1.1.0 or higher.  You will need the headers, libs, and bins for the platform (Win32 or x64) that you're targeting.
68 65
 3. Place the headers and binaries in a directory with the following structure:
69
-├───Win32
70
-│   ├───include
71
-│   │   └───openssl  <-- openssl headers in here
72
-│   └───lib          <-- .DLLs and .LIBs in here
73
-└───x64
74
-    ├───include
75
-    │   └───openssl  <-- openssl headers in here
76
-    └───lib          <-- .DLLs and .LIBs in here
77
-4. Add an environment variable with the name CLAM_DEPENDENCIES and set the value to the path of the above directory.
78
-
79
-Compilation
80
-
81
-Open win32/ClamAV.sln in Visual Studio and build all.
82
-The output directory for the binaries is either /win32/(Win32|x64)/Debug or
83
-/win32/(Win32|x64)/Release depending on the configuration you pick.
84
-
85
-Note: at the time of writing Batch Build is broken in Visual Studio. Use MSBuild instead.
86
-
87
-Special notes
88 66
 
89
-The ClamAV tools in win32 are the same as in unix, so refer to their respective
67
+  ├───vcredist
68
+  │   ├───vc_redist.x64.exe <-- Visual Studio 2015 Redistributables installer (x64)
69
+  │   └───vc_redist.x86.exe <-- Visual Studio 2015 Redistributables installer (x86)
70
+  ├───Win32
71
+  │   ├───include
72
+  │   │   └───openssl  <-- openssl headers in here
73
+  │   └───lib          <-- .DLLs and .LIBs in here
74
+  └───x64
75
+      ├───include
76
+      │   └───openssl  <-- openssl headers in here
77
+      └───lib          <-- .DLLs and .LIBs in here
78
+
79
+4. Add an environment variable with the name `CLAM_DEPENDENCIES` and set the value to the path of the above directory.
80
+5. At present, the Inno Setup script `ClamAV-Installer.iss` requires this directory to be located here in order to build the installer:
81
+
82
+```
83
+    C:\clam_dependencies
84
+```
85
+
86
+## Compilation
87
+
88
+Open `win32/ClamAV.sln` in Visual Studio and build all.
89
+The output directory for the binaries is either `/win32/(Win32|x64)/Debug` or
90
+`/win32/(Win32|x64)/Release` depending on the configuration you pick.
91
+
92
+Alternatively, you can build from the command line (aka `cmd.exe`) by following these steps:
93
+
94
+x64:
95
+```
96
+    call "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat" x64
97
+    setx CLAM_DEPENDENCIES "C:\\clam_dependencies"
98
+    call configure.bat
99
+    devenv ClamAV.sln /Clean "Release|x64" /useenv /ProjectConfig "Release|x64"
100
+    devenv ClamAV.sln /Rebuild "Release|x64" /useenv /ProjectConfig "Release|x64"'''
101
+```
102
+
103
+x86:
104
+```
105
+    reg Query "HKLM\\Hardware\\Description\\System\\CentralProcessor\\0" | find /i "x86" > NUL && set OS=32BIT || set OS=64BIT
106
+    if %OS%==32BIT call "C:\\Program Files\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat" x86
107
+    if %OS%==64BIT call "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat" x86
108
+    setx CLAM_DEPENDENCIES "C:\\clam_dependencies"
109
+    call configure.bat
110
+    devenv ClamAV.sln /Clean "Release|Win32" /useenv /ProjectConfig "Release|Win32"
111
+    devenv ClamAV.sln /Rebuild "Release|Win32" /useenv /ProjectConfig "Release|Win32"'''
112
+```
113
+
114
+To build the installer:
115
+
116
+1. Build ClamAV for both `x64` **and** `Win32`.  The installer requires both versions to be available.
117
+2. Open `win32\ClamAV-Installer.iss` using Inno Setup 5.  
118
+3. Run "Compile". 
119
+
120
+Alternatively, you can invoke the Inno Setup command line installer from cmd.exe:
121
+
122
+```
123
+    "C:\Program Files (x86)\Inno Setup 5\ISCC.exe" .\ClamAV-Installer.iss
124
+```
125
+
126
+After compilation, the installer will be located at `win32\ClamAV-<version>.exe`
127
+
128
+## Special notes
129
+
130
+The ClamAV tools in `win32` are the same as in unix, so refer to their respective
90 131
 manpage for general usage.
91 132
 The major differences are listed below:
92 133
 
93 134
 - Config files path search order:
94
-  1. The content of the registry key
135
+  1. The content of the registry key:
95 136
      "HKEY_LOCAL_MACHINE/Software/ClamAV/ConfDir"
96
-  2. The directory where libclamav.dll is located
137
+  2. The directory where libclamav.dll is located:
138
+     "C:\Program Files\ClamAV"
97 139
   3. "C:\ClamAV"
98 140
 
99 141
 - Database files path search order:
100
-  1. The content of the registry key
142
+  1. The content of the registry key:
101 143
      "HKEY_LOCAL_MACHINE/Software/ClamAV/DataDir"
102
-  2. The directory "database" inside the directory where libclamav.dll is
103
-     located
144
+  2. The directory "database" inside the directory where libclamav.dll is located:
145
+     "C:\Program Files\ClamAV\database"
104 146
   3. "C:\ClamAV\db"
105 147
 
106 148
 - Globbing
... ...
@@ -118,12 +163,12 @@ Please always use the backslash as the path separator.
118 118
 SMB Network shares and UNC paths are supported.
119 119
 
120 120
 - Debug builds
121
-Malloc in debug (as opposed to release) mode fails after allocating some 90k
121
+Malloc in Debug (as opposed to release) mode fails after allocating some 90k
122 122
 chunks; such builds won't be able to handle large databases.
123
-Just do yourself a favour and always build in release mode.
123
+Just do yourself a favour and always build in Release mode.
124 124
 
125 125
 Special thanks
126 126
 --------------
127 127
 
128 128
 Special thanks to Gianluigi Tiesi and Mark Pizzolato for their valuable help in
129
-coding and testing.
130 129
\ No newline at end of file
130
+coding and testing.
131 131
deleted file mode 100644
... ...
@@ -1,2 +0,0 @@
1
-Debug
2
-Release
3 1
deleted file mode 100755
... ...
@@ -1,1747 +0,0 @@
1
-"DeployProject"
2
-{
3
-"VSVersion" = "3:800"
4
-"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
5
-"IsWebType" = "8:FALSE"
6
-"ProjectName" = "8:Setup-x64"
7
-"LanguageId" = "3:1033"
8
-"CodePage" = "3:1252"
9
-"UILanguageId" = "3:1033"
10
-"SccProjectName" = "8:"
11
-"SccLocalPath" = "8:"
12
-"SccAuxPath" = "8:"
13
-"SccProvider" = "8:"
14
-    "Hierarchy"
15
-    {
16
-        "Entry"
17
-        {
18
-        "MsmKey" = "8:_08D9E77C3F9F4D44AA3AD46CC62F7969"
19
-        "OwnerKey" = "8:_UNDEFINED"
20
-        "MsmSig" = "8:_UNDEFINED"
21
-        }
22
-        "Entry"
23
-        {
24
-        "MsmKey" = "8:_09D029E726C24DF7AC697727E8D7205B"
25
-        "OwnerKey" = "8:_UNDEFINED"
26
-        "MsmSig" = "8:_UNDEFINED"
27
-        }
28
-        "Entry"
29
-        {
30
-        "MsmKey" = "8:_1505271DB77846B2B18BDC68521AB227"
31
-        "OwnerKey" = "8:_UNDEFINED"
32
-        "MsmSig" = "8:_UNDEFINED"
33
-        }
34
-        "Entry"
35
-        {
36
-        "MsmKey" = "8:_21B9E79F09E24E719BBAE9DC60DB2F6E"
37
-        "OwnerKey" = "8:_UNDEFINED"
38
-        "MsmSig" = "8:_UNDEFINED"
39
-        }
40
-        "Entry"
41
-        {
42
-        "MsmKey" = "8:_24822DCF98EF4533801D6CC4BE48BB39"
43
-        "OwnerKey" = "8:_UNDEFINED"
44
-        "MsmSig" = "8:_UNDEFINED"
45
-        }
46
-        "Entry"
47
-        {
48
-        "MsmKey" = "8:_2CA10784C309414FAD8F58276E112902"
49
-        "OwnerKey" = "8:_UNDEFINED"
50
-        "MsmSig" = "8:_UNDEFINED"
51
-        }
52
-        "Entry"
53
-        {
54
-        "MsmKey" = "8:_2D34BE4ADCB24E408828FCF0F494C6EB"
55
-        "OwnerKey" = "8:_UNDEFINED"
56
-        "MsmSig" = "8:_UNDEFINED"
57
-        }
58
-        "Entry"
59
-        {
60
-        "MsmKey" = "8:_31D6EE7D636A445AA1F07038549BEE42"
61
-        "OwnerKey" = "8:_UNDEFINED"
62
-        "MsmSig" = "8:_UNDEFINED"
63
-        }
64
-        "Entry"
65
-        {
66
-        "MsmKey" = "8:_34857389255D48929D3E0CB8F34B7C50"
67
-        "OwnerKey" = "8:_UNDEFINED"
68
-        "MsmSig" = "8:_UNDEFINED"
69
-        }
70
-        "Entry"
71
-        {
72
-        "MsmKey" = "8:_3C43DBFD31484DA58EA98AB7D5E1A9B8"
73
-        "OwnerKey" = "8:_UNDEFINED"
74
-        "MsmSig" = "8:_UNDEFINED"
75
-        }
76
-        "Entry"
77
-        {
78
-        "MsmKey" = "8:_5E62992905A04275887C09F8469F522F"
79
-        "OwnerKey" = "8:_UNDEFINED"
80
-        "MsmSig" = "8:_UNDEFINED"
81
-        }
82
-        "Entry"
83
-        {
84
-        "MsmKey" = "8:_671D69A7B15349CF8AE7C0075C51AF53"
85
-        "OwnerKey" = "8:_UNDEFINED"
86
-        "MsmSig" = "8:_UNDEFINED"
87
-        }
88
-        "Entry"
89
-        {
90
-        "MsmKey" = "8:_73A073DB877E4372ACF9FDFF0700894C"
91
-        "OwnerKey" = "8:_UNDEFINED"
92
-        "MsmSig" = "8:_UNDEFINED"
93
-        }
94
-        "Entry"
95
-        {
96
-        "MsmKey" = "8:_74A48CF9FC244B0DAF7EEFBBEA85D7C5"
97
-        "OwnerKey" = "8:_UNDEFINED"
98
-        "MsmSig" = "8:_UNDEFINED"
99
-        }
100
-        "Entry"
101
-        {
102
-        "MsmKey" = "8:_74FEBC94954F4DC8A7C67A7B0DCF07C0"
103
-        "OwnerKey" = "8:_UNDEFINED"
104
-        "MsmSig" = "8:_UNDEFINED"
105
-        }
106
-        "Entry"
107
-        {
108
-        "MsmKey" = "8:_78E45831C6EA4D948B5DB00F3D6DFCE1"
109
-        "OwnerKey" = "8:_UNDEFINED"
110
-        "MsmSig" = "8:_UNDEFINED"
111
-        }
112
-        "Entry"
113
-        {
114
-        "MsmKey" = "8:_8307AB064A6943D688B8633EC4909B40"
115
-        "OwnerKey" = "8:_UNDEFINED"
116
-        "MsmSig" = "8:_UNDEFINED"
117
-        }
118
-        "Entry"
119
-        {
120
-        "MsmKey" = "8:_8A600E8AAC0B4E3FA975E5056E8E6967"
121
-        "OwnerKey" = "8:_UNDEFINED"
122
-        "MsmSig" = "8:_UNDEFINED"
123
-        }
124
-        "Entry"
125
-        {
126
-        "MsmKey" = "8:_AB2BECEF1E204309B221FE8229A9CD3A"
127
-        "OwnerKey" = "8:_UNDEFINED"
128
-        "MsmSig" = "8:_UNDEFINED"
129
-        }
130
-        "Entry"
131
-        {
132
-        "MsmKey" = "8:_C2C4E429FE3740DAB249D4364114BDF6"
133
-        "OwnerKey" = "8:_UNDEFINED"
134
-        "MsmSig" = "8:_UNDEFINED"
135
-        }
136
-        "Entry"
137
-        {
138
-        "MsmKey" = "8:_C2EA2581FE8048FFB9B1DC2F809435EA"
139
-        "OwnerKey" = "8:_UNDEFINED"
140
-        "MsmSig" = "8:_UNDEFINED"
141
-        }
142
-        "Entry"
143
-        {
144
-        "MsmKey" = "8:_CC8A08B2A5A64E62AE23F385687A90E9"
145
-        "OwnerKey" = "8:_UNDEFINED"
146
-        "MsmSig" = "8:_UNDEFINED"
147
-        }
148
-        "Entry"
149
-        {
150
-        "MsmKey" = "8:_DDFB38FF815243D3AF847227DDA7AF91"
151
-        "OwnerKey" = "8:_UNDEFINED"
152
-        "MsmSig" = "8:_UNDEFINED"
153
-        }
154
-        "Entry"
155
-        {
156
-        "MsmKey" = "8:_F167DB9F36B5420F9C9E33C9228608A8"
157
-        "OwnerKey" = "8:_UNDEFINED"
158
-        "MsmSig" = "8:_UNDEFINED"
159
-        }
160
-        "Entry"
161
-        {
162
-        "MsmKey" = "8:_F5FF25980CF24773B898FA660325490A"
163
-        "OwnerKey" = "8:_UNDEFINED"
164
-        "MsmSig" = "8:_UNDEFINED"
165
-        }
166
-    }
167
-    "Configurations"
168
-    {
169
-        "Debug"
170
-        {
171
-        "DisplayName" = "8:Debug"
172
-        "IsDebugOnly" = "11:TRUE"
173
-        "IsReleaseOnly" = "11:FALSE"
174
-        "OutputFilename" = "8:Debug\\ClamAV-0.101.0-x64.msi"
175
-        "PackageFilesAs" = "3:2"
176
-        "PackageFileSize" = "3:-2147483648"
177
-        "CabType" = "3:1"
178
-        "Compression" = "3:2"
179
-        "SignOutput" = "11:FALSE"
180
-        "CertificateFile" = "8:"
181
-        "PrivateKeyFile" = "8:"
182
-        "TimeStampServer" = "8:"
183
-        "InstallerBootstrapper" = "3:2"
184
-            "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
185
-            {
186
-            "Enabled" = "11:TRUE"
187
-            "PromptEnabled" = "11:TRUE"
188
-            "PrerequisitesLocation" = "2:1"
189
-            "Url" = "8:"
190
-            "ComponentsUrl" = "8:"
191
-                "Items"
192
-                {
193
-                    "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Visual.C++.14.0.x64"
194
-                    {
195
-                    "Name" = "8:Visual C++ \"14\" Runtime Libraries (x64)"
196
-                    "ProductCode" = "8:Microsoft.Visual.C++.14.0.x64"
197
-                    }
198
-                }
199
-            }
200
-        }
201
-        "Release"
202
-        {
203
-        "DisplayName" = "8:Release"
204
-        "IsDebugOnly" = "11:FALSE"
205
-        "IsReleaseOnly" = "11:TRUE"
206
-        "OutputFilename" = "8:Release\\ClamAV-0.101.0-x64.msi"
207
-        "PackageFilesAs" = "3:2"
208
-        "PackageFileSize" = "3:-2147483648"
209
-        "CabType" = "3:1"
210
-        "Compression" = "3:2"
211
-        "SignOutput" = "11:FALSE"
212
-        "CertificateFile" = "8:"
213
-        "PrivateKeyFile" = "8:"
214
-        "TimeStampServer" = "8:"
215
-        "InstallerBootstrapper" = "3:2"
216
-            "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
217
-            {
218
-            "Enabled" = "11:TRUE"
219
-            "PromptEnabled" = "11:TRUE"
220
-            "PrerequisitesLocation" = "2:1"
221
-            "Url" = "8:"
222
-            "ComponentsUrl" = "8:"
223
-                "Items"
224
-                {
225
-                    "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Visual.C++.14.0.x64"
226
-                    {
227
-                    "Name" = "8:Visual C++ \"14\" Runtime Libraries (x64)"
228
-                    "ProductCode" = "8:Microsoft.Visual.C++.14.0.x64"
229
-                    }
230
-                }
231
-            }
232
-        }
233
-    }
234
-    "Deployable"
235
-    {
236
-        "CustomAction"
237
-        {
238
-        }
239
-        "DefaultFeature"
240
-        {
241
-        "Name" = "8:DefaultFeature"
242
-        "Title" = "8:"
243
-        "Description" = "8:"
244
-        }
245
-        "ExternalPersistence"
246
-        {
247
-            "LaunchCondition"
248
-            {
249
-                "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_F016F881F2AE4309BA84EDCA78B62478"
250
-                {
251
-                "Name" = "8:.NET Framework"
252
-                "Message" = "8:[VSDNETMSG]"
253
-                "FrameworkVersion" = "8:.NETFramework,Version=v4.0,Profile=Client"
254
-                "AllowLaterVersions" = "11:FALSE"
255
-                "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=131000"
256
-                }
257
-            }
258
-        }
259
-        "File"
260
-        {
261
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_08D9E77C3F9F4D44AA3AD46CC62F7969"
262
-            {
263
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\images\\demon.png"
264
-            "TargetName" = "8:demon.png"
265
-            "Tag" = "8:"
266
-            "Folder" = "8:_D775B3A290494B578A23CD1B182F1326"
267
-            "Condition" = "8:"
268
-            "Transitive" = "11:FALSE"
269
-            "Vital" = "11:TRUE"
270
-            "ReadOnly" = "11:FALSE"
271
-            "Hidden" = "11:FALSE"
272
-            "System" = "11:FALSE"
273
-            "Permanent" = "11:FALSE"
274
-            "SharedLegacy" = "11:FALSE"
275
-            "PackageAs" = "3:1"
276
-            "Register" = "3:1"
277
-            "Exclude" = "11:FALSE"
278
-            "IsDependency" = "11:FALSE"
279
-            "IsolateTo" = "8:"
280
-            }
281
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_09D029E726C24DF7AC697727E8D7205B"
282
-            {
283
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Introduction.md"
284
-            "TargetName" = "8:Introduction.md"
285
-            "Tag" = "8:"
286
-            "Folder" = "8:_5835F31875F64EAC9BA14BE5768229A8"
287
-            "Condition" = "8:"
288
-            "Transitive" = "11:FALSE"
289
-            "Vital" = "11:TRUE"
290
-            "ReadOnly" = "11:FALSE"
291
-            "Hidden" = "11:FALSE"
292
-            "System" = "11:FALSE"
293
-            "Permanent" = "11:FALSE"
294
-            "SharedLegacy" = "11:FALSE"
295
-            "PackageAs" = "3:1"
296
-            "Register" = "3:1"
297
-            "Exclude" = "11:FALSE"
298
-            "IsDependency" = "11:FALSE"
299
-            "IsolateTo" = "8:"
300
-            }
301
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1505271DB77846B2B18BDC68521AB227"
302
-            {
303
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Signatures.md"
304
-            "TargetName" = "8:Signatures.md"
305
-            "Tag" = "8:"
306
-            "Folder" = "8:_5835F31875F64EAC9BA14BE5768229A8"
307
-            "Condition" = "8:"
308
-            "Transitive" = "11:FALSE"
309
-            "Vital" = "11:TRUE"
310
-            "ReadOnly" = "11:FALSE"
311
-            "Hidden" = "11:FALSE"
312
-            "System" = "11:FALSE"
313
-            "Permanent" = "11:FALSE"
314
-            "SharedLegacy" = "11:FALSE"
315
-            "PackageAs" = "3:1"
316
-            "Register" = "3:1"
317
-            "Exclude" = "11:FALSE"
318
-            "IsDependency" = "11:FALSE"
319
-            "IsolateTo" = "8:"
320
-            }
321
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_21B9E79F09E24E719BBAE9DC60DB2F6E"
322
-            {
323
-            "SourcePath" = "8:..\\..\\COPYING.bzip2"
324
-            "TargetName" = "8:COPYING.bzip2"
325
-            "Tag" = "8:"
326
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
327
-            "Condition" = "8:"
328
-            "Transitive" = "11:FALSE"
329
-            "Vital" = "11:TRUE"
330
-            "ReadOnly" = "11:FALSE"
331
-            "Hidden" = "11:FALSE"
332
-            "System" = "11:FALSE"
333
-            "Permanent" = "11:FALSE"
334
-            "SharedLegacy" = "11:FALSE"
335
-            "PackageAs" = "3:1"
336
-            "Register" = "3:1"
337
-            "Exclude" = "11:FALSE"
338
-            "IsDependency" = "11:FALSE"
339
-            "IsolateTo" = "8:"
340
-            }
341
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_24822DCF98EF4533801D6CC4BE48BB39"
342
-            {
343
-            "SourcePath" = "8:..\\..\\ChangeLog.md"
344
-            "TargetName" = "8:ChangeLog.md"
345
-            "Tag" = "8:"
346
-            "Folder" = "8:_985094FA8A8D46499E06D610B4A1A5EF"
347
-            "Condition" = "8:"
348
-            "Transitive" = "11:FALSE"
349
-            "Vital" = "11:TRUE"
350
-            "ReadOnly" = "11:FALSE"
351
-            "Hidden" = "11:FALSE"
352
-            "System" = "11:FALSE"
353
-            "Permanent" = "11:FALSE"
354
-            "SharedLegacy" = "11:FALSE"
355
-            "PackageAs" = "3:1"
356
-            "Register" = "3:1"
357
-            "Exclude" = "11:FALSE"
358
-            "IsDependency" = "11:FALSE"
359
-            "IsolateTo" = "8:"
360
-            }
361
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2CA10784C309414FAD8F58276E112902"
362
-            {
363
-            "SourcePath" = "8:..\\..\\NEWS.md"
364
-            "TargetName" = "8:NEWS.md"
365
-            "Tag" = "8:"
366
-            "Folder" = "8:_985094FA8A8D46499E06D610B4A1A5EF"
367
-            "Condition" = "8:"
368
-            "Transitive" = "11:FALSE"
369
-            "Vital" = "11:TRUE"
370
-            "ReadOnly" = "11:FALSE"
371
-            "Hidden" = "11:FALSE"
372
-            "System" = "11:FALSE"
373
-            "Permanent" = "11:FALSE"
374
-            "SharedLegacy" = "11:FALSE"
375
-            "PackageAs" = "3:1"
376
-            "Register" = "3:1"
377
-            "Exclude" = "11:FALSE"
378
-            "IsDependency" = "11:FALSE"
379
-            "IsolateTo" = "8:"
380
-            }
381
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2D34BE4ADCB24E408828FCF0F494C6EB"
382
-            {
383
-            "SourcePath" = "8:..\\conf_examples\\clamd.conf.sample"
384
-            "TargetName" = "8:clamd.conf.sample"
385
-            "Tag" = "8:"
386
-            "Folder" = "8:_9DF108569FF14FE68E665C908435DE1A"
387
-            "Condition" = "8:"
388
-            "Transitive" = "11:FALSE"
389
-            "Vital" = "11:TRUE"
390
-            "ReadOnly" = "11:FALSE"
391
-            "Hidden" = "11:FALSE"
392
-            "System" = "11:FALSE"
393
-            "Permanent" = "11:FALSE"
394
-            "SharedLegacy" = "11:FALSE"
395
-            "PackageAs" = "3:1"
396
-            "Register" = "3:1"
397
-            "Exclude" = "11:FALSE"
398
-            "IsDependency" = "11:FALSE"
399
-            "IsolateTo" = "8:"
400
-            }
401
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_31D6EE7D636A445AA1F07038549BEE42"
402
-            {
403
-            "SourcePath" = "8:..\\..\\COPYING.lzma"
404
-            "TargetName" = "8:COPYING.lzma"
405
-            "Tag" = "8:"
406
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
407
-            "Condition" = "8:"
408
-            "Transitive" = "11:FALSE"
409
-            "Vital" = "11:TRUE"
410
-            "ReadOnly" = "11:FALSE"
411
-            "Hidden" = "11:FALSE"
412
-            "System" = "11:FALSE"
413
-            "Permanent" = "11:FALSE"
414
-            "SharedLegacy" = "11:FALSE"
415
-            "PackageAs" = "3:1"
416
-            "Register" = "3:1"
417
-            "Exclude" = "11:FALSE"
418
-            "IsDependency" = "11:FALSE"
419
-            "IsolateTo" = "8:"
420
-            }
421
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34857389255D48929D3E0CB8F34B7C50"
422
-            {
423
-            "SourcePath" = "8:..\\..\\COPYING.zlib"
424
-            "TargetName" = "8:COPYING.zlib"
425
-            "Tag" = "8:"
426
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
427
-            "Condition" = "8:"
428
-            "Transitive" = "11:FALSE"
429
-            "Vital" = "11:TRUE"
430
-            "ReadOnly" = "11:FALSE"
431
-            "Hidden" = "11:FALSE"
432
-            "System" = "11:FALSE"
433
-            "Permanent" = "11:FALSE"
434
-            "SharedLegacy" = "11:FALSE"
435
-            "PackageAs" = "3:1"
436
-            "Register" = "3:1"
437
-            "Exclude" = "11:FALSE"
438
-            "IsDependency" = "11:FALSE"
439
-            "IsolateTo" = "8:"
440
-            }
441
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3C43DBFD31484DA58EA98AB7D5E1A9B8"
442
-            {
443
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Installation.md"
444
-            "TargetName" = "8:Installation.md"
445
-            "Tag" = "8:"
446
-            "Folder" = "8:_5835F31875F64EAC9BA14BE5768229A8"
447
-            "Condition" = "8:"
448
-            "Transitive" = "11:FALSE"
449
-            "Vital" = "11:TRUE"
450
-            "ReadOnly" = "11:FALSE"
451
-            "Hidden" = "11:FALSE"
452
-            "System" = "11:FALSE"
453
-            "Permanent" = "11:FALSE"
454
-            "SharedLegacy" = "11:FALSE"
455
-            "PackageAs" = "3:1"
456
-            "Register" = "3:1"
457
-            "Exclude" = "11:FALSE"
458
-            "IsDependency" = "11:FALSE"
459
-            "IsolateTo" = "8:"
460
-            }
461
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5E62992905A04275887C09F8469F522F"
462
-            {
463
-            "SourcePath" = "8:..\\..\\COPYING"
464
-            "TargetName" = "8:COPYING"
465
-            "Tag" = "8:"
466
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
467
-            "Condition" = "8:"
468
-            "Transitive" = "11:FALSE"
469
-            "Vital" = "11:TRUE"
470
-            "ReadOnly" = "11:FALSE"
471
-            "Hidden" = "11:FALSE"
472
-            "System" = "11:FALSE"
473
-            "Permanent" = "11:FALSE"
474
-            "SharedLegacy" = "11:FALSE"
475
-            "PackageAs" = "3:1"
476
-            "Register" = "3:1"
477
-            "Exclude" = "11:FALSE"
478
-            "IsDependency" = "11:FALSE"
479
-            "IsolateTo" = "8:"
480
-            }
481
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_671D69A7B15349CF8AE7C0075C51AF53"
482
-            {
483
-            "SourcePath" = "8:..\\..\\COPYING.regex"
484
-            "TargetName" = "8:COPYING.regex"
485
-            "Tag" = "8:"
486
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
487
-            "Condition" = "8:"
488
-            "Transitive" = "11:FALSE"
489
-            "Vital" = "11:TRUE"
490
-            "ReadOnly" = "11:FALSE"
491
-            "Hidden" = "11:FALSE"
492
-            "System" = "11:FALSE"
493
-            "Permanent" = "11:FALSE"
494
-            "SharedLegacy" = "11:FALSE"
495
-            "PackageAs" = "3:1"
496
-            "Register" = "3:1"
497
-            "Exclude" = "11:FALSE"
498
-            "IsDependency" = "11:FALSE"
499
-            "IsolateTo" = "8:"
500
-            }
501
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_73A073DB877E4372ACF9FDFF0700894C"
502
-            {
503
-            "SourcePath" = "8:..\\..\\COPYING.unrar"
504
-            "TargetName" = "8:COPYING.unrar"
505
-            "Tag" = "8:"
506
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
507
-            "Condition" = "8:"
508
-            "Transitive" = "11:FALSE"
509
-            "Vital" = "11:TRUE"
510
-            "ReadOnly" = "11:FALSE"
511
-            "Hidden" = "11:FALSE"
512
-            "System" = "11:FALSE"
513
-            "Permanent" = "11:FALSE"
514
-            "SharedLegacy" = "11:FALSE"
515
-            "PackageAs" = "3:1"
516
-            "Register" = "3:1"
517
-            "Exclude" = "11:FALSE"
518
-            "IsDependency" = "11:FALSE"
519
-            "IsolateTo" = "8:"
520
-            }
521
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_74A48CF9FC244B0DAF7EEFBBEA85D7C5"
522
-            {
523
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Configuration.md"
524
-            "TargetName" = "8:Configuration.md"
525
-            "Tag" = "8:"
526
-            "Folder" = "8:_5835F31875F64EAC9BA14BE5768229A8"
527
-            "Condition" = "8:"
528
-            "Transitive" = "11:FALSE"
529
-            "Vital" = "11:TRUE"
530
-            "ReadOnly" = "11:FALSE"
531
-            "Hidden" = "11:FALSE"
532
-            "System" = "11:FALSE"
533
-            "Permanent" = "11:FALSE"
534
-            "SharedLegacy" = "11:FALSE"
535
-            "PackageAs" = "3:1"
536
-            "Register" = "3:1"
537
-            "Exclude" = "11:FALSE"
538
-            "IsDependency" = "11:FALSE"
539
-            "IsolateTo" = "8:"
540
-            }
541
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_74FEBC94954F4DC8A7C67A7B0DCF07C0"
542
-            {
543
-            "SourcePath" = "8:..\\..\\COPYING.llvm"
544
-            "TargetName" = "8:COPYING.llvm"
545
-            "Tag" = "8:"
546
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
547
-            "Condition" = "8:"
548
-            "Transitive" = "11:FALSE"
549
-            "Vital" = "11:TRUE"
550
-            "ReadOnly" = "11:FALSE"
551
-            "Hidden" = "11:FALSE"
552
-            "System" = "11:FALSE"
553
-            "Permanent" = "11:FALSE"
554
-            "SharedLegacy" = "11:FALSE"
555
-            "PackageAs" = "3:1"
556
-            "Register" = "3:1"
557
-            "Exclude" = "11:FALSE"
558
-            "IsDependency" = "11:FALSE"
559
-            "IsolateTo" = "8:"
560
-            }
561
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_78E45831C6EA4D948B5DB00F3D6DFCE1"
562
-            {
563
-            "SourcePath" = "8:..\\conf_examples\\freshclam.conf.sample"
564
-            "TargetName" = "8:freshclam.conf.sample"
565
-            "Tag" = "8:"
566
-            "Folder" = "8:_9DF108569FF14FE68E665C908435DE1A"
567
-            "Condition" = "8:"
568
-            "Transitive" = "11:FALSE"
569
-            "Vital" = "11:TRUE"
570
-            "ReadOnly" = "11:FALSE"
571
-            "Hidden" = "11:FALSE"
572
-            "System" = "11:FALSE"
573
-            "Permanent" = "11:FALSE"
574
-            "SharedLegacy" = "11:FALSE"
575
-            "PackageAs" = "3:1"
576
-            "Register" = "3:1"
577
-            "Exclude" = "11:FALSE"
578
-            "IsDependency" = "11:FALSE"
579
-            "IsolateTo" = "8:"
580
-            }
581
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8307AB064A6943D688B8633EC4909B40"
582
-            {
583
-            "SourcePath" = "8:..\\..\\COPYING.LGPL"
584
-            "TargetName" = "8:COPYING.LGPL"
585
-            "Tag" = "8:"
586
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
587
-            "Condition" = "8:"
588
-            "Transitive" = "11:FALSE"
589
-            "Vital" = "11:TRUE"
590
-            "ReadOnly" = "11:FALSE"
591
-            "Hidden" = "11:FALSE"
592
-            "System" = "11:FALSE"
593
-            "Permanent" = "11:FALSE"
594
-            "SharedLegacy" = "11:FALSE"
595
-            "PackageAs" = "3:1"
596
-            "Register" = "3:1"
597
-            "Exclude" = "11:FALSE"
598
-            "IsDependency" = "11:FALSE"
599
-            "IsolateTo" = "8:"
600
-            }
601
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8A600E8AAC0B4E3FA975E5056E8E6967"
602
-            {
603
-            "SourcePath" = "8:..\\..\\COPYING.file"
604
-            "TargetName" = "8:COPYING.file"
605
-            "Tag" = "8:"
606
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
607
-            "Condition" = "8:"
608
-            "Transitive" = "11:FALSE"
609
-            "Vital" = "11:TRUE"
610
-            "ReadOnly" = "11:FALSE"
611
-            "Hidden" = "11:FALSE"
612
-            "System" = "11:FALSE"
613
-            "Permanent" = "11:FALSE"
614
-            "SharedLegacy" = "11:FALSE"
615
-            "PackageAs" = "3:1"
616
-            "Register" = "3:1"
617
-            "Exclude" = "11:FALSE"
618
-            "IsDependency" = "11:FALSE"
619
-            "IsolateTo" = "8:"
620
-            }
621
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AB2BECEF1E204309B221FE8229A9CD3A"
622
-            {
623
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Usage.md"
624
-            "TargetName" = "8:Usage.md"
625
-            "Tag" = "8:"
626
-            "Folder" = "8:_5835F31875F64EAC9BA14BE5768229A8"
627
-            "Condition" = "8:"
628
-            "Transitive" = "11:FALSE"
629
-            "Vital" = "11:TRUE"
630
-            "ReadOnly" = "11:FALSE"
631
-            "Hidden" = "11:FALSE"
632
-            "System" = "11:FALSE"
633
-            "Permanent" = "11:FALSE"
634
-            "SharedLegacy" = "11:FALSE"
635
-            "PackageAs" = "3:1"
636
-            "Register" = "3:1"
637
-            "Exclude" = "11:FALSE"
638
-            "IsDependency" = "11:FALSE"
639
-            "IsolateTo" = "8:"
640
-            }
641
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C2C4E429FE3740DAB249D4364114BDF6"
642
-            {
643
-            "SourcePath" = "8:..\\..\\docs\\UserManual.md"
644
-            "TargetName" = "8:UserManual.md"
645
-            "Tag" = "8:"
646
-            "Folder" = "8:_985094FA8A8D46499E06D610B4A1A5EF"
647
-            "Condition" = "8:"
648
-            "Transitive" = "11:FALSE"
649
-            "Vital" = "11:TRUE"
650
-            "ReadOnly" = "11:FALSE"
651
-            "Hidden" = "11:FALSE"
652
-            "System" = "11:FALSE"
653
-            "Permanent" = "11:FALSE"
654
-            "SharedLegacy" = "11:FALSE"
655
-            "PackageAs" = "3:1"
656
-            "Register" = "3:1"
657
-            "Exclude" = "11:FALSE"
658
-            "IsDependency" = "11:FALSE"
659
-            "IsolateTo" = "8:"
660
-            }
661
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C2EA2581FE8048FFB9B1DC2F809435EA"
662
-            {
663
-            "SourcePath" = "8:..\\..\\COPYING.YARA"
664
-            "TargetName" = "8:COPYING.YARA"
665
-            "Tag" = "8:"
666
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
667
-            "Condition" = "8:"
668
-            "Transitive" = "11:FALSE"
669
-            "Vital" = "11:TRUE"
670
-            "ReadOnly" = "11:FALSE"
671
-            "Hidden" = "11:FALSE"
672
-            "System" = "11:FALSE"
673
-            "Permanent" = "11:FALSE"
674
-            "SharedLegacy" = "11:FALSE"
675
-            "PackageAs" = "3:1"
676
-            "Register" = "3:1"
677
-            "Exclude" = "11:FALSE"
678
-            "IsDependency" = "11:FALSE"
679
-            "IsolateTo" = "8:"
680
-            }
681
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CC8A08B2A5A64E62AE23F385687A90E9"
682
-            {
683
-            "SourcePath" = "8:..\\..\\COPYING.getopt"
684
-            "TargetName" = "8:COPYING.getopt"
685
-            "Tag" = "8:"
686
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
687
-            "Condition" = "8:"
688
-            "Transitive" = "11:FALSE"
689
-            "Vital" = "11:TRUE"
690
-            "ReadOnly" = "11:FALSE"
691
-            "Hidden" = "11:FALSE"
692
-            "System" = "11:FALSE"
693
-            "Permanent" = "11:FALSE"
694
-            "SharedLegacy" = "11:FALSE"
695
-            "PackageAs" = "3:1"
696
-            "Register" = "3:1"
697
-            "Exclude" = "11:FALSE"
698
-            "IsDependency" = "11:FALSE"
699
-            "IsolateTo" = "8:"
700
-            }
701
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DDFB38FF815243D3AF847227DDA7AF91"
702
-            {
703
-            "SourcePath" = "8:..\\..\\COPYING.pcre"
704
-            "TargetName" = "8:COPYING.pcre"
705
-            "Tag" = "8:"
706
-            "Folder" = "8:_B1EECD7690104D83820ED6C1AB405445"
707
-            "Condition" = "8:"
708
-            "Transitive" = "11:FALSE"
709
-            "Vital" = "11:TRUE"
710
-            "ReadOnly" = "11:FALSE"
711
-            "Hidden" = "11:FALSE"
712
-            "System" = "11:FALSE"
713
-            "Permanent" = "11:FALSE"
714
-            "SharedLegacy" = "11:FALSE"
715
-            "PackageAs" = "3:1"
716
-            "Register" = "3:1"
717
-            "Exclude" = "11:FALSE"
718
-            "IsDependency" = "11:FALSE"
719
-            "IsolateTo" = "8:"
720
-            }
721
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F167DB9F36B5420F9C9E33C9228608A8"
722
-            {
723
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\libclamav.md"
724
-            "TargetName" = "8:libclamav.md"
725
-            "Tag" = "8:"
726
-            "Folder" = "8:_5835F31875F64EAC9BA14BE5768229A8"
727
-            "Condition" = "8:"
728
-            "Transitive" = "11:FALSE"
729
-            "Vital" = "11:TRUE"
730
-            "ReadOnly" = "11:FALSE"
731
-            "Hidden" = "11:FALSE"
732
-            "System" = "11:FALSE"
733
-            "Permanent" = "11:FALSE"
734
-            "SharedLegacy" = "11:FALSE"
735
-            "PackageAs" = "3:1"
736
-            "Register" = "3:1"
737
-            "Exclude" = "11:FALSE"
738
-            "IsDependency" = "11:FALSE"
739
-            "IsolateTo" = "8:"
740
-            }
741
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F5FF25980CF24773B898FA660325490A"
742
-            {
743
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\PhishSigs.md"
744
-            "TargetName" = "8:PhishSigs.md"
745
-            "Tag" = "8:"
746
-            "Folder" = "8:_5835F31875F64EAC9BA14BE5768229A8"
747
-            "Condition" = "8:"
748
-            "Transitive" = "11:FALSE"
749
-            "Vital" = "11:TRUE"
750
-            "ReadOnly" = "11:FALSE"
751
-            "Hidden" = "11:FALSE"
752
-            "System" = "11:FALSE"
753
-            "Permanent" = "11:FALSE"
754
-            "SharedLegacy" = "11:FALSE"
755
-            "PackageAs" = "3:1"
756
-            "Register" = "3:1"
757
-            "Exclude" = "11:FALSE"
758
-            "IsDependency" = "11:FALSE"
759
-            "IsolateTo" = "8:"
760
-            }
761
-        }
762
-        "FileType"
763
-        {
764
-        }
765
-        "Folder"
766
-        {
767
-            "{3C67513D-01DD-4637-8A68-80971EB9504F}:_CEC880DBF61041CCA0B367A8647B2589"
768
-            {
769
-            "DefaultLocation" = "8:[ProgramFiles64Folder]\\[ProductName]"
770
-            "Name" = "8:#1925"
771
-            "AlwaysCreate" = "11:FALSE"
772
-            "Condition" = "8:"
773
-            "Transitive" = "11:FALSE"
774
-            "Property" = "8:TARGETDIR"
775
-                "Folders"
776
-                {
777
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_19E668FC663A4F7CBF9DA69A5FA28CDD"
778
-                    {
779
-                    "Name" = "8:database"
780
-                    "AlwaysCreate" = "11:TRUE"
781
-                    "Condition" = "8:"
782
-                    "Transitive" = "11:FALSE"
783
-                    "Property" = "8:_72742E1E77DD4A478291D98182BF8352"
784
-                        "Folders"
785
-                        {
786
-                        }
787
-                    }
788
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_985094FA8A8D46499E06D610B4A1A5EF"
789
-                    {
790
-                    "Name" = "8:docs"
791
-                    "AlwaysCreate" = "11:FALSE"
792
-                    "Condition" = "8:"
793
-                    "Transitive" = "11:FALSE"
794
-                    "Property" = "8:_AAAD6D4187714D0F8E69C9185C22720E"
795
-                        "Folders"
796
-                        {
797
-                            "{9EF0B969-E518-4E46-987F-47570745A589}:_5835F31875F64EAC9BA14BE5768229A8"
798
-                            {
799
-                            "Name" = "8:UserManual"
800
-                            "AlwaysCreate" = "11:FALSE"
801
-                            "Condition" = "8:"
802
-                            "Transitive" = "11:FALSE"
803
-                            "Property" = "8:_3F6D9E9194D54C6CA3BC1BF348EB0F1A"
804
-                                "Folders"
805
-                                {
806
-                                    "{9EF0B969-E518-4E46-987F-47570745A589}:_D775B3A290494B578A23CD1B182F1326"
807
-                                    {
808
-                                    "Name" = "8:images"
809
-                                    "AlwaysCreate" = "11:FALSE"
810
-                                    "Condition" = "8:"
811
-                                    "Transitive" = "11:FALSE"
812
-                                    "Property" = "8:_48D11A4892D14D008E1323D480EF0798"
813
-                                        "Folders"
814
-                                        {
815
-                                        }
816
-                                    }
817
-                                }
818
-                            }
819
-                        }
820
-                    }
821
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_9DF108569FF14FE68E665C908435DE1A"
822
-                    {
823
-                    "Name" = "8:conf_examples"
824
-                    "AlwaysCreate" = "11:FALSE"
825
-                    "Condition" = "8:"
826
-                    "Transitive" = "11:FALSE"
827
-                    "Property" = "8:_2A6147680C63441CA241C77DEAE4C204"
828
-                        "Folders"
829
-                        {
830
-                        }
831
-                    }
832
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_B1EECD7690104D83820ED6C1AB405445"
833
-                    {
834
-                    "Name" = "8:COPYING"
835
-                    "AlwaysCreate" = "11:FALSE"
836
-                    "Condition" = "8:"
837
-                    "Transitive" = "11:FALSE"
838
-                    "Property" = "8:_F8AC476767EA459F87309FCAC540908F"
839
-                        "Folders"
840
-                        {
841
-                        }
842
-                    }
843
-                }
844
-            }
845
-        }
846
-        "LaunchCondition"
847
-        {
848
-        }
849
-        "Locator"
850
-        {
851
-        }
852
-        "MsiBootstrapper"
853
-        {
854
-        "LangId" = "3:1033"
855
-        "RequiresElevation" = "11:FALSE"
856
-        }
857
-        "Product"
858
-        {
859
-        "Name" = "8:Microsoft Visual Studio"
860
-        "ProductName" = "8:ClamAV"
861
-        "ProductCode" = "8:{B29C0EBE-9FAF-4F8C-8044-F6A92F8506D8}"
862
-        "PackageCode" = "8:{421C7F7B-D0C3-491E-A85E-500EFB1C8292}"
863
-        "UpgradeCode" = "8:{D35B7E07-D7B1-404B-A0C3-FBB599A1D58B}"
864
-        "AspNetVersion" = "8:4.0.30319.0"
865
-        "RestartWWWService" = "11:FALSE"
866
-        "RemovePreviousVersions" = "11:TRUE"
867
-        "DetectNewerInstalledVersion" = "11:TRUE"
868
-        "InstallAllUsers" = "11:TRUE"
869
-        "ProductVersion" = "8:0.101.0"
870
-        "Manufacturer" = "8:Cisco Systems, Inc"
871
-        "ARPHELPTELEPHONE" = "8:"
872
-        "ARPHELPLINK" = "8:https://www.clamav.net"
873
-        "Title" = "8:Setup-x64"
874
-        "Subject" = "8:"
875
-        "ARPCONTACT" = "8:Cisco Systems, Inc"
876
-        "Keywords" = "8:"
877
-        "ARPCOMMENTS" = "8:ClamAV"
878
-        "ARPURLINFOABOUT" = "8:https://www.clamav.net"
879
-        "ARPPRODUCTICON" = "8:"
880
-        "ARPIconIndex" = "3:0"
881
-        "SearchPath" = "8:"
882
-        "UseSystemSearchPath" = "11:TRUE"
883
-        "TargetPlatform" = "3:1"
884
-        "PreBuildEvent" = "8:"
885
-        "PostBuildEvent" = "8:"
886
-        "RunPostBuildEvent" = "3:0"
887
-        }
888
-        "Registry"
889
-        {
890
-            "HKLM"
891
-            {
892
-                "Keys"
893
-                {
894
-                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_AF8A87B34E964C4E9C5809616287414A"
895
-                    {
896
-                    "Name" = "8:Software"
897
-                    "Condition" = "8:"
898
-                    "AlwaysCreate" = "11:FALSE"
899
-                    "DeleteAtUninstall" = "11:FALSE"
900
-                    "Transitive" = "11:FALSE"
901
-                        "Keys"
902
-                        {
903
-                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_FE7A200501584D17BAF52FBDBFA00271"
904
-                            {
905
-                            "Name" = "8:[Manufacturer]"
906
-                            "Condition" = "8:"
907
-                            "AlwaysCreate" = "11:FALSE"
908
-                            "DeleteAtUninstall" = "11:FALSE"
909
-                            "Transitive" = "11:FALSE"
910
-                                "Keys"
911
-                                {
912
-                                }
913
-                                "Values"
914
-                                {
915
-                                }
916
-                            }
917
-                        }
918
-                        "Values"
919
-                        {
920
-                        }
921
-                    }
922
-                }
923
-            }
924
-            "HKCU"
925
-            {
926
-                "Keys"
927
-                {
928
-                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_0BE4E86C29D94A4BAB363ED9635303BC"
929
-                    {
930
-                    "Name" = "8:Software"
931
-                    "Condition" = "8:"
932
-                    "AlwaysCreate" = "11:FALSE"
933
-                    "DeleteAtUninstall" = "11:FALSE"
934
-                    "Transitive" = "11:FALSE"
935
-                        "Keys"
936
-                        {
937
-                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_87B820D91C9D4FB9B0BD0BDBF5251EA8"
938
-                            {
939
-                            "Name" = "8:[Manufacturer]"
940
-                            "Condition" = "8:"
941
-                            "AlwaysCreate" = "11:FALSE"
942
-                            "DeleteAtUninstall" = "11:FALSE"
943
-                            "Transitive" = "11:FALSE"
944
-                                "Keys"
945
-                                {
946
-                                }
947
-                                "Values"
948
-                                {
949
-                                }
950
-                            }
951
-                        }
952
-                        "Values"
953
-                        {
954
-                        }
955
-                    }
956
-                }
957
-            }
958
-            "HKCR"
959
-            {
960
-                "Keys"
961
-                {
962
-                }
963
-            }
964
-            "HKU"
965
-            {
966
-                "Keys"
967
-                {
968
-                }
969
-            }
970
-            "HKPU"
971
-            {
972
-                "Keys"
973
-                {
974
-                }
975
-            }
976
-        }
977
-        "Sequences"
978
-        {
979
-        }
980
-        "Shortcut"
981
-        {
982
-        }
983
-        "UserInterface"
984
-        {
985
-            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_1A07977C11C7418E89CA1F5DE3915595"
986
-            {
987
-            "UseDynamicProperties" = "11:FALSE"
988
-            "IsDependency" = "11:FALSE"
989
-            "SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
990
-            }
991
-            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_25503391AE1C43EAB52A70E4ADE51E19"
992
-            {
993
-            "UseDynamicProperties" = "11:FALSE"
994
-            "IsDependency" = "11:FALSE"
995
-            "SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
996
-            }
997
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_2EF417C852DA4FF4AF62279EB3089A03"
998
-            {
999
-            "Name" = "8:#1900"
1000
-            "Sequence" = "3:1"
1001
-            "Attributes" = "3:1"
1002
-                "Dialogs"
1003
-                {
1004
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_59B2EC49918241EE96C6176B2509C088"
1005
-                    {
1006
-                    "Sequence" = "3:300"
1007
-                    "DisplayName" = "8:Confirm Installation"
1008
-                    "UseDynamicProperties" = "11:TRUE"
1009
-                    "IsDependency" = "11:FALSE"
1010
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
1011
-                        "Properties"
1012
-                        {
1013
-                            "BannerBitmap"
1014
-                            {
1015
-                            "Name" = "8:BannerBitmap"
1016
-                            "DisplayName" = "8:#1001"
1017
-                            "Description" = "8:#1101"
1018
-                            "Type" = "3:8"
1019
-                            "ContextData" = "8:Bitmap"
1020
-                            "Attributes" = "3:4"
1021
-                            "Setting" = "3:1"
1022
-                            "UsePlugInResources" = "11:TRUE"
1023
-                            }
1024
-                        }
1025
-                    }
1026
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_EB6B5DC5FA2C4F49A3117B6CE321D72B"
1027
-                    {
1028
-                    "Sequence" = "3:200"
1029
-                    "DisplayName" = "8:Installation Folder"
1030
-                    "UseDynamicProperties" = "11:TRUE"
1031
-                    "IsDependency" = "11:FALSE"
1032
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
1033
-                        "Properties"
1034
-                        {
1035
-                            "BannerBitmap"
1036
-                            {
1037
-                            "Name" = "8:BannerBitmap"
1038
-                            "DisplayName" = "8:#1001"
1039
-                            "Description" = "8:#1101"
1040
-                            "Type" = "3:8"
1041
-                            "ContextData" = "8:Bitmap"
1042
-                            "Attributes" = "3:4"
1043
-                            "Setting" = "3:1"
1044
-                            "UsePlugInResources" = "11:TRUE"
1045
-                            }
1046
-                            "InstallAllUsersVisible"
1047
-                            {
1048
-                            "Name" = "8:InstallAllUsersVisible"
1049
-                            "DisplayName" = "8:#1059"
1050
-                            "Description" = "8:#1159"
1051
-                            "Type" = "3:5"
1052
-                            "ContextData" = "8:1;True=1;False=0"
1053
-                            "Attributes" = "3:0"
1054
-                            "Setting" = "3:0"
1055
-                            "Value" = "3:1"
1056
-                            "DefaultValue" = "3:1"
1057
-                            "UsePlugInResources" = "11:TRUE"
1058
-                            }
1059
-                        }
1060
-                    }
1061
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F54AC0BEF64F49DFAA0BB2D4DC17F706"
1062
-                    {
1063
-                    "Sequence" = "3:100"
1064
-                    "DisplayName" = "8:Welcome"
1065
-                    "UseDynamicProperties" = "11:TRUE"
1066
-                    "IsDependency" = "11:FALSE"
1067
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
1068
-                        "Properties"
1069
-                        {
1070
-                            "BannerBitmap"
1071
-                            {
1072
-                            "Name" = "8:BannerBitmap"
1073
-                            "DisplayName" = "8:#1001"
1074
-                            "Description" = "8:#1101"
1075
-                            "Type" = "3:8"
1076
-                            "ContextData" = "8:Bitmap"
1077
-                            "Attributes" = "3:4"
1078
-                            "Setting" = "3:1"
1079
-                            "UsePlugInResources" = "11:TRUE"
1080
-                            }
1081
-                            "CopyrightWarning"
1082
-                            {
1083
-                            "Name" = "8:CopyrightWarning"
1084
-                            "DisplayName" = "8:#1002"
1085
-                            "Description" = "8:#1102"
1086
-                            "Type" = "3:3"
1087
-                            "ContextData" = "8:"
1088
-                            "Attributes" = "3:0"
1089
-                            "Setting" = "3:1"
1090
-                            "Value" = "8:#1202"
1091
-                            "DefaultValue" = "8:#1202"
1092
-                            "UsePlugInResources" = "11:TRUE"
1093
-                            }
1094
-                            "Welcome"
1095
-                            {
1096
-                            "Name" = "8:Welcome"
1097
-                            "DisplayName" = "8:#1003"
1098
-                            "Description" = "8:#1103"
1099
-                            "Type" = "3:3"
1100
-                            "ContextData" = "8:"
1101
-                            "Attributes" = "3:0"
1102
-                            "Setting" = "3:1"
1103
-                            "Value" = "8:#1203"
1104
-                            "DefaultValue" = "8:#1203"
1105
-                            "UsePlugInResources" = "11:TRUE"
1106
-                            }
1107
-                        }
1108
-                    }
1109
-                }
1110
-            }
1111
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_3892FB2176334EAAAD7A9B7175841738"
1112
-            {
1113
-            "Name" = "8:#1900"
1114
-            "Sequence" = "3:2"
1115
-            "Attributes" = "3:1"
1116
-                "Dialogs"
1117
-                {
1118
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7AAD9A31436B4FF6B759A1EB4AB892B0"
1119
-                    {
1120
-                    "Sequence" = "3:100"
1121
-                    "DisplayName" = "8:Welcome"
1122
-                    "UseDynamicProperties" = "11:TRUE"
1123
-                    "IsDependency" = "11:FALSE"
1124
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
1125
-                        "Properties"
1126
-                        {
1127
-                            "BannerBitmap"
1128
-                            {
1129
-                            "Name" = "8:BannerBitmap"
1130
-                            "DisplayName" = "8:#1001"
1131
-                            "Description" = "8:#1101"
1132
-                            "Type" = "3:8"
1133
-                            "ContextData" = "8:Bitmap"
1134
-                            "Attributes" = "3:4"
1135
-                            "Setting" = "3:1"
1136
-                            "UsePlugInResources" = "11:TRUE"
1137
-                            }
1138
-                            "CopyrightWarning"
1139
-                            {
1140
-                            "Name" = "8:CopyrightWarning"
1141
-                            "DisplayName" = "8:#1002"
1142
-                            "Description" = "8:#1102"
1143
-                            "Type" = "3:3"
1144
-                            "ContextData" = "8:"
1145
-                            "Attributes" = "3:0"
1146
-                            "Setting" = "3:1"
1147
-                            "Value" = "8:#1202"
1148
-                            "DefaultValue" = "8:#1202"
1149
-                            "UsePlugInResources" = "11:TRUE"
1150
-                            }
1151
-                            "Welcome"
1152
-                            {
1153
-                            "Name" = "8:Welcome"
1154
-                            "DisplayName" = "8:#1003"
1155
-                            "Description" = "8:#1103"
1156
-                            "Type" = "3:3"
1157
-                            "ContextData" = "8:"
1158
-                            "Attributes" = "3:0"
1159
-                            "Setting" = "3:1"
1160
-                            "Value" = "8:#1203"
1161
-                            "DefaultValue" = "8:#1203"
1162
-                            "UsePlugInResources" = "11:TRUE"
1163
-                            }
1164
-                        }
1165
-                    }
1166
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8C6A461CDAC248F0A43200E1160C7CD0"
1167
-                    {
1168
-                    "Sequence" = "3:200"
1169
-                    "DisplayName" = "8:Installation Folder"
1170
-                    "UseDynamicProperties" = "11:TRUE"
1171
-                    "IsDependency" = "11:FALSE"
1172
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
1173
-                        "Properties"
1174
-                        {
1175
-                            "BannerBitmap"
1176
-                            {
1177
-                            "Name" = "8:BannerBitmap"
1178
-                            "DisplayName" = "8:#1001"
1179
-                            "Description" = "8:#1101"
1180
-                            "Type" = "3:8"
1181
-                            "ContextData" = "8:Bitmap"
1182
-                            "Attributes" = "3:4"
1183
-                            "Setting" = "3:1"
1184
-                            "UsePlugInResources" = "11:TRUE"
1185
-                            }
1186
-                        }
1187
-                    }
1188
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F36427D27FDC40B4BDCEAB20ED0282C2"
1189
-                    {
1190
-                    "Sequence" = "3:300"
1191
-                    "DisplayName" = "8:Confirm Installation"
1192
-                    "UseDynamicProperties" = "11:TRUE"
1193
-                    "IsDependency" = "11:FALSE"
1194
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
1195
-                        "Properties"
1196
-                        {
1197
-                            "BannerBitmap"
1198
-                            {
1199
-                            "Name" = "8:BannerBitmap"
1200
-                            "DisplayName" = "8:#1001"
1201
-                            "Description" = "8:#1101"
1202
-                            "Type" = "3:8"
1203
-                            "ContextData" = "8:Bitmap"
1204
-                            "Attributes" = "3:4"
1205
-                            "Setting" = "3:1"
1206
-                            "UsePlugInResources" = "11:TRUE"
1207
-                            }
1208
-                        }
1209
-                    }
1210
-                }
1211
-            }
1212
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_76C8822448374830B4E1F67884BB4A08"
1213
-            {
1214
-            "Name" = "8:#1902"
1215
-            "Sequence" = "3:2"
1216
-            "Attributes" = "3:3"
1217
-                "Dialogs"
1218
-                {
1219
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4D47F278DC854A1DB7EB6199986DB696"
1220
-                    {
1221
-                    "Sequence" = "3:100"
1222
-                    "DisplayName" = "8:Finished"
1223
-                    "UseDynamicProperties" = "11:TRUE"
1224
-                    "IsDependency" = "11:FALSE"
1225
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
1226
-                        "Properties"
1227
-                        {
1228
-                            "BannerBitmap"
1229
-                            {
1230
-                            "Name" = "8:BannerBitmap"
1231
-                            "DisplayName" = "8:#1001"
1232
-                            "Description" = "8:#1101"
1233
-                            "Type" = "3:8"
1234
-                            "ContextData" = "8:Bitmap"
1235
-                            "Attributes" = "3:4"
1236
-                            "Setting" = "3:1"
1237
-                            "UsePlugInResources" = "11:TRUE"
1238
-                            }
1239
-                        }
1240
-                    }
1241
-                }
1242
-            }
1243
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_DEF91D87D8124AA08559CDCCA39696AF"
1244
-            {
1245
-            "Name" = "8:#1902"
1246
-            "Sequence" = "3:1"
1247
-            "Attributes" = "3:3"
1248
-                "Dialogs"
1249
-                {
1250
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_090C3A5C6EBA43E2A80E808D84075B00"
1251
-                    {
1252
-                    "Sequence" = "3:100"
1253
-                    "DisplayName" = "8:Finished"
1254
-                    "UseDynamicProperties" = "11:TRUE"
1255
-                    "IsDependency" = "11:FALSE"
1256
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
1257
-                        "Properties"
1258
-                        {
1259
-                            "BannerBitmap"
1260
-                            {
1261
-                            "Name" = "8:BannerBitmap"
1262
-                            "DisplayName" = "8:#1001"
1263
-                            "Description" = "8:#1101"
1264
-                            "Type" = "3:8"
1265
-                            "ContextData" = "8:Bitmap"
1266
-                            "Attributes" = "3:4"
1267
-                            "Setting" = "3:1"
1268
-                            "UsePlugInResources" = "11:TRUE"
1269
-                            }
1270
-                            "UpdateText"
1271
-                            {
1272
-                            "Name" = "8:UpdateText"
1273
-                            "DisplayName" = "8:#1058"
1274
-                            "Description" = "8:#1158"
1275
-                            "Type" = "3:15"
1276
-                            "ContextData" = "8:"
1277
-                            "Attributes" = "3:0"
1278
-                            "Setting" = "3:1"
1279
-                            "Value" = "8:#1258"
1280
-                            "DefaultValue" = "8:#1258"
1281
-                            "UsePlugInResources" = "11:TRUE"
1282
-                            }
1283
-                        }
1284
-                    }
1285
-                }
1286
-            }
1287
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F2E1B1C392BA4A82BF438C2092EEA331"
1288
-            {
1289
-            "Name" = "8:#1901"
1290
-            "Sequence" = "3:1"
1291
-            "Attributes" = "3:2"
1292
-                "Dialogs"
1293
-                {
1294
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_917BEB1126A64708B1DC92A48CF40C71"
1295
-                    {
1296
-                    "Sequence" = "3:100"
1297
-                    "DisplayName" = "8:Progress"
1298
-                    "UseDynamicProperties" = "11:TRUE"
1299
-                    "IsDependency" = "11:FALSE"
1300
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
1301
-                        "Properties"
1302
-                        {
1303
-                            "BannerBitmap"
1304
-                            {
1305
-                            "Name" = "8:BannerBitmap"
1306
-                            "DisplayName" = "8:#1001"
1307
-                            "Description" = "8:#1101"
1308
-                            "Type" = "3:8"
1309
-                            "ContextData" = "8:Bitmap"
1310
-                            "Attributes" = "3:4"
1311
-                            "Setting" = "3:1"
1312
-                            "UsePlugInResources" = "11:TRUE"
1313
-                            }
1314
-                            "ShowProgress"
1315
-                            {
1316
-                            "Name" = "8:ShowProgress"
1317
-                            "DisplayName" = "8:#1009"
1318
-                            "Description" = "8:#1109"
1319
-                            "Type" = "3:5"
1320
-                            "ContextData" = "8:1;True=1;False=0"
1321
-                            "Attributes" = "3:0"
1322
-                            "Setting" = "3:0"
1323
-                            "Value" = "3:1"
1324
-                            "DefaultValue" = "3:1"
1325
-                            "UsePlugInResources" = "11:TRUE"
1326
-                            }
1327
-                        }
1328
-                    }
1329
-                }
1330
-            }
1331
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F4F0A6969653444186A8778665C84281"
1332
-            {
1333
-            "Name" = "8:#1901"
1334
-            "Sequence" = "3:2"
1335
-            "Attributes" = "3:2"
1336
-                "Dialogs"
1337
-                {
1338
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F503CBC7CAD24707A19981E9C4375E83"
1339
-                    {
1340
-                    "Sequence" = "3:100"
1341
-                    "DisplayName" = "8:Progress"
1342
-                    "UseDynamicProperties" = "11:TRUE"
1343
-                    "IsDependency" = "11:FALSE"
1344
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
1345
-                        "Properties"
1346
-                        {
1347
-                            "BannerBitmap"
1348
-                            {
1349
-                            "Name" = "8:BannerBitmap"
1350
-                            "DisplayName" = "8:#1001"
1351
-                            "Description" = "8:#1101"
1352
-                            "Type" = "3:8"
1353
-                            "ContextData" = "8:Bitmap"
1354
-                            "Attributes" = "3:4"
1355
-                            "Setting" = "3:1"
1356
-                            "UsePlugInResources" = "11:TRUE"
1357
-                            }
1358
-                            "ShowProgress"
1359
-                            {
1360
-                            "Name" = "8:ShowProgress"
1361
-                            "DisplayName" = "8:#1009"
1362
-                            "Description" = "8:#1109"
1363
-                            "Type" = "3:5"
1364
-                            "ContextData" = "8:1;True=1;False=0"
1365
-                            "Attributes" = "3:0"
1366
-                            "Setting" = "3:0"
1367
-                            "Value" = "3:1"
1368
-                            "DefaultValue" = "3:1"
1369
-                            "UsePlugInResources" = "11:TRUE"
1370
-                            }
1371
-                        }
1372
-                    }
1373
-                }
1374
-            }
1375
-        }
1376
-        "MergeModule"
1377
-        {
1378
-        }
1379
-        "ProjectOutput"
1380
-        {
1381
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_100F44CE4D674C19BC393A9DB8DF1961"
1382
-            {
1383
-            "SourcePath" = "8:..\\x64\\Release\\clamd.exe"
1384
-            "TargetName" = "8:"
1385
-            "Tag" = "8:"
1386
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1387
-            "Condition" = "8:"
1388
-            "Transitive" = "11:FALSE"
1389
-            "Vital" = "11:TRUE"
1390
-            "ReadOnly" = "11:FALSE"
1391
-            "Hidden" = "11:FALSE"
1392
-            "System" = "11:FALSE"
1393
-            "Permanent" = "11:FALSE"
1394
-            "SharedLegacy" = "11:FALSE"
1395
-            "PackageAs" = "3:1"
1396
-            "Register" = "3:1"
1397
-            "Exclude" = "11:FALSE"
1398
-            "IsDependency" = "11:FALSE"
1399
-            "IsolateTo" = "8:"
1400
-            "ProjectOutputGroupRegister" = "3:1"
1401
-            "OutputConfiguration" = "8:Release|x64"
1402
-            "OutputGroupCanonicalName" = "8:Built"
1403
-            "OutputProjectGuid" = "8:{128DA45B-0628-42BB-BA90-8F836CA7FF25}"
1404
-            "ShowKeyOutput" = "11:TRUE"
1405
-                "ExcludeFilters"
1406
-                {
1407
-                }
1408
-            }
1409
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_1B3FB1759960476AA82BB9EDFD0C4940"
1410
-            {
1411
-            "SourcePath" = "8:..\\x64\\Release\\libclamunrar.dll"
1412
-            "TargetName" = "8:"
1413
-            "Tag" = "8:"
1414
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1415
-            "Condition" = "8:"
1416
-            "Transitive" = "11:FALSE"
1417
-            "Vital" = "11:TRUE"
1418
-            "ReadOnly" = "11:FALSE"
1419
-            "Hidden" = "11:FALSE"
1420
-            "System" = "11:FALSE"
1421
-            "Permanent" = "11:FALSE"
1422
-            "SharedLegacy" = "11:FALSE"
1423
-            "PackageAs" = "3:1"
1424
-            "Register" = "3:1"
1425
-            "Exclude" = "11:FALSE"
1426
-            "IsDependency" = "11:FALSE"
1427
-            "IsolateTo" = "8:"
1428
-            "ProjectOutputGroupRegister" = "3:1"
1429
-            "OutputConfiguration" = "8:Release|x64"
1430
-            "OutputGroupCanonicalName" = "8:Built"
1431
-            "OutputProjectGuid" = "8:{B1406D09-59CE-4EEA-9F08-FECCF3A7A4A7}"
1432
-            "ShowKeyOutput" = "11:TRUE"
1433
-                "ExcludeFilters"
1434
-                {
1435
-                }
1436
-            }
1437
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_415EA53B442A4A61A4C5D8CD655D0263"
1438
-            {
1439
-            "SourcePath" = "8:..\\x64\\Release\\libclamav.dll"
1440
-            "TargetName" = "8:"
1441
-            "Tag" = "8:"
1442
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1443
-            "Condition" = "8:"
1444
-            "Transitive" = "11:FALSE"
1445
-            "Vital" = "11:TRUE"
1446
-            "ReadOnly" = "11:FALSE"
1447
-            "Hidden" = "11:FALSE"
1448
-            "System" = "11:FALSE"
1449
-            "Permanent" = "11:FALSE"
1450
-            "SharedLegacy" = "11:FALSE"
1451
-            "PackageAs" = "3:1"
1452
-            "Register" = "3:1"
1453
-            "Exclude" = "11:FALSE"
1454
-            "IsDependency" = "11:FALSE"
1455
-            "IsolateTo" = "8:"
1456
-            "ProjectOutputGroupRegister" = "3:1"
1457
-            "OutputConfiguration" = "8:Release|x64"
1458
-            "OutputGroupCanonicalName" = "8:Built"
1459
-            "OutputProjectGuid" = "8:{09D341E9-7372-46E9-B0D7-CAAF77984190}"
1460
-            "ShowKeyOutput" = "11:TRUE"
1461
-                "ExcludeFilters"
1462
-                {
1463
-                }
1464
-            }
1465
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_42C639FDEF7D4006AE7072A9174C8EE0"
1466
-            {
1467
-            "SourcePath" = "8:..\\x64\\Release\\pthreads.dll"
1468
-            "TargetName" = "8:"
1469
-            "Tag" = "8:"
1470
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1471
-            "Condition" = "8:"
1472
-            "Transitive" = "11:FALSE"
1473
-            "Vital" = "11:TRUE"
1474
-            "ReadOnly" = "11:FALSE"
1475
-            "Hidden" = "11:FALSE"
1476
-            "System" = "11:FALSE"
1477
-            "Permanent" = "11:FALSE"
1478
-            "SharedLegacy" = "11:FALSE"
1479
-            "PackageAs" = "3:1"
1480
-            "Register" = "3:1"
1481
-            "Exclude" = "11:FALSE"
1482
-            "IsDependency" = "11:FALSE"
1483
-            "IsolateTo" = "8:"
1484
-            "ProjectOutputGroupRegister" = "3:1"
1485
-            "OutputConfiguration" = "8:Release|x64"
1486
-            "OutputGroupCanonicalName" = "8:Built"
1487
-            "OutputProjectGuid" = "8:{56424F95-3DE6-429D-8D80-7F57CCE9209C}"
1488
-            "ShowKeyOutput" = "11:TRUE"
1489
-                "ExcludeFilters"
1490
-                {
1491
-                }
1492
-            }
1493
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_731B68E02941424E9C887845FA10B801"
1494
-            {
1495
-            "SourcePath" = "8:..\\x64\\Release\\sigtool.exe"
1496
-            "TargetName" = "8:"
1497
-            "Tag" = "8:"
1498
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1499
-            "Condition" = "8:"
1500
-            "Transitive" = "11:FALSE"
1501
-            "Vital" = "11:TRUE"
1502
-            "ReadOnly" = "11:FALSE"
1503
-            "Hidden" = "11:FALSE"
1504
-            "System" = "11:FALSE"
1505
-            "Permanent" = "11:FALSE"
1506
-            "SharedLegacy" = "11:FALSE"
1507
-            "PackageAs" = "3:1"
1508
-            "Register" = "3:1"
1509
-            "Exclude" = "11:FALSE"
1510
-            "IsDependency" = "11:FALSE"
1511
-            "IsolateTo" = "8:"
1512
-            "ProjectOutputGroupRegister" = "3:1"
1513
-            "OutputConfiguration" = "8:Release|x64"
1514
-            "OutputGroupCanonicalName" = "8:Built"
1515
-            "OutputProjectGuid" = "8:{05957B93-39F9-45EC-87BD-86B7AF571557}"
1516
-            "ShowKeyOutput" = "11:TRUE"
1517
-                "ExcludeFilters"
1518
-                {
1519
-                }
1520
-            }
1521
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_733555771FF340A899E04B7FC103F729"
1522
-            {
1523
-            "SourcePath" = "8:..\\x64\\Release\\clamdscan.exe"
1524
-            "TargetName" = "8:"
1525
-            "Tag" = "8:"
1526
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1527
-            "Condition" = "8:"
1528
-            "Transitive" = "11:FALSE"
1529
-            "Vital" = "11:TRUE"
1530
-            "ReadOnly" = "11:FALSE"
1531
-            "Hidden" = "11:FALSE"
1532
-            "System" = "11:FALSE"
1533
-            "Permanent" = "11:FALSE"
1534
-            "SharedLegacy" = "11:FALSE"
1535
-            "PackageAs" = "3:1"
1536
-            "Register" = "3:1"
1537
-            "Exclude" = "11:FALSE"
1538
-            "IsDependency" = "11:FALSE"
1539
-            "IsolateTo" = "8:"
1540
-            "ProjectOutputGroupRegister" = "3:1"
1541
-            "OutputConfiguration" = "8:Release|x64"
1542
-            "OutputGroupCanonicalName" = "8:Built"
1543
-            "OutputProjectGuid" = "8:{094B13E4-321B-479B-919F-FB84A0F0DA1F}"
1544
-            "ShowKeyOutput" = "11:TRUE"
1545
-                "ExcludeFilters"
1546
-                {
1547
-                }
1548
-            }
1549
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_99670E15C7D347558F2F149FD3A27D35"
1550
-            {
1551
-            "SourcePath" = "8:..\\x64\\Release\\mspack.dll"
1552
-            "TargetName" = "8:"
1553
-            "Tag" = "8:"
1554
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1555
-            "Condition" = "8:"
1556
-            "Transitive" = "11:FALSE"
1557
-            "Vital" = "11:TRUE"
1558
-            "ReadOnly" = "11:FALSE"
1559
-            "Hidden" = "11:FALSE"
1560
-            "System" = "11:FALSE"
1561
-            "Permanent" = "11:FALSE"
1562
-            "SharedLegacy" = "11:FALSE"
1563
-            "PackageAs" = "3:1"
1564
-            "Register" = "3:1"
1565
-            "Exclude" = "11:FALSE"
1566
-            "IsDependency" = "11:FALSE"
1567
-            "IsolateTo" = "8:"
1568
-            "ProjectOutputGroupRegister" = "3:1"
1569
-            "OutputConfiguration" = "8:Release|x64"
1570
-            "OutputGroupCanonicalName" = "8:Built"
1571
-            "OutputProjectGuid" = "8:{AA443662-4AED-4F50-95E4-9B5BB5429E9E}"
1572
-            "ShowKeyOutput" = "11:TRUE"
1573
-                "ExcludeFilters"
1574
-                {
1575
-                }
1576
-            }
1577
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A290BF3A9E0D4179A9310845896B2BDA"
1578
-            {
1579
-            "SourcePath" = "8:..\\x64\\Release\\freshclam.exe"
1580
-            "TargetName" = "8:"
1581
-            "Tag" = "8:"
1582
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1583
-            "Condition" = "8:"
1584
-            "Transitive" = "11:FALSE"
1585
-            "Vital" = "11:TRUE"
1586
-            "ReadOnly" = "11:FALSE"
1587
-            "Hidden" = "11:FALSE"
1588
-            "System" = "11:FALSE"
1589
-            "Permanent" = "11:FALSE"
1590
-            "SharedLegacy" = "11:FALSE"
1591
-            "PackageAs" = "3:1"
1592
-            "Register" = "3:1"
1593
-            "Exclude" = "11:FALSE"
1594
-            "IsDependency" = "11:FALSE"
1595
-            "IsolateTo" = "8:"
1596
-            "ProjectOutputGroupRegister" = "3:1"
1597
-            "OutputConfiguration" = "8:Release|x64"
1598
-            "OutputGroupCanonicalName" = "8:Built"
1599
-            "OutputProjectGuid" = "8:{C4015FC8-0417-4D8E-8CF9-FDA1BF37A6FE}"
1600
-            "ShowKeyOutput" = "11:TRUE"
1601
-                "ExcludeFilters"
1602
-                {
1603
-                }
1604
-            }
1605
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B287F283DE06421284AC4C22D36FF734"
1606
-            {
1607
-            "SourcePath" = "8:..\\x64\\Release\\libclamunrar_iface.dll"
1608
-            "TargetName" = "8:"
1609
-            "Tag" = "8:"
1610
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1611
-            "Condition" = "8:"
1612
-            "Transitive" = "11:FALSE"
1613
-            "Vital" = "11:TRUE"
1614
-            "ReadOnly" = "11:FALSE"
1615
-            "Hidden" = "11:FALSE"
1616
-            "System" = "11:FALSE"
1617
-            "Permanent" = "11:FALSE"
1618
-            "SharedLegacy" = "11:FALSE"
1619
-            "PackageAs" = "3:1"
1620
-            "Register" = "3:1"
1621
-            "Exclude" = "11:FALSE"
1622
-            "IsDependency" = "11:FALSE"
1623
-            "IsolateTo" = "8:"
1624
-            "ProjectOutputGroupRegister" = "3:1"
1625
-            "OutputConfiguration" = "8:Release|x64"
1626
-            "OutputGroupCanonicalName" = "8:Built"
1627
-            "OutputProjectGuid" = "8:{2E93DF6C-3C8A-4768-9539-12FB67417224}"
1628
-            "ShowKeyOutput" = "11:TRUE"
1629
-                "ExcludeFilters"
1630
-                {
1631
-                }
1632
-            }
1633
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B97BA16A67EE4A62A8D1F7B0E0198974"
1634
-            {
1635
-            "SourcePath" = "8:..\\x64\\Release\\clamscan.exe"
1636
-            "TargetName" = "8:"
1637
-            "Tag" = "8:"
1638
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1639
-            "Condition" = "8:"
1640
-            "Transitive" = "11:FALSE"
1641
-            "Vital" = "11:TRUE"
1642
-            "ReadOnly" = "11:FALSE"
1643
-            "Hidden" = "11:FALSE"
1644
-            "System" = "11:FALSE"
1645
-            "Permanent" = "11:FALSE"
1646
-            "SharedLegacy" = "11:FALSE"
1647
-            "PackageAs" = "3:1"
1648
-            "Register" = "3:1"
1649
-            "Exclude" = "11:FALSE"
1650
-            "IsDependency" = "11:FALSE"
1651
-            "IsolateTo" = "8:"
1652
-            "ProjectOutputGroupRegister" = "3:1"
1653
-            "OutputConfiguration" = "8:Release|x64"
1654
-            "OutputGroupCanonicalName" = "8:Built"
1655
-            "OutputProjectGuid" = "8:{F0D57765-2E9C-4E55-8E1D-037C0CF00FD3}"
1656
-            "ShowKeyOutput" = "11:TRUE"
1657
-                "ExcludeFilters"
1658
-                {
1659
-                }
1660
-            }
1661
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_CF7C82C279884DF4B3BA86D5F49CD898"
1662
-            {
1663
-            "SourcePath" = "8:"
1664
-            "TargetName" = "8:"
1665
-            "Tag" = "8:"
1666
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1667
-            "Condition" = "8:"
1668
-            "Transitive" = "11:FALSE"
1669
-            "Vital" = "11:TRUE"
1670
-            "ReadOnly" = "11:FALSE"
1671
-            "Hidden" = "11:FALSE"
1672
-            "System" = "11:FALSE"
1673
-            "Permanent" = "11:FALSE"
1674
-            "SharedLegacy" = "11:FALSE"
1675
-            "PackageAs" = "3:1"
1676
-            "Register" = "3:1"
1677
-            "Exclude" = "11:FALSE"
1678
-            "IsDependency" = "11:FALSE"
1679
-            "IsolateTo" = "8:"
1680
-            "ProjectOutputGroupRegister" = "3:1"
1681
-            "OutputConfiguration" = "8:Release|x64"
1682
-            "OutputGroupCanonicalName" = "8:ContentFiles"
1683
-            "OutputProjectGuid" = "8:{5661EB2A-7AE6-4C1A-864B-FDDD32F3D45A}"
1684
-            "ShowKeyOutput" = "11:TRUE"
1685
-                "ExcludeFilters"
1686
-                {
1687
-                }
1688
-            }
1689
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F9CF18C5992E4ACA9B022F985E8F3B35"
1690
-            {
1691
-            "SourcePath" = "8:..\\x64\\Release\\clamconf.exe"
1692
-            "TargetName" = "8:"
1693
-            "Tag" = "8:"
1694
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1695
-            "Condition" = "8:"
1696
-            "Transitive" = "11:FALSE"
1697
-            "Vital" = "11:TRUE"
1698
-            "ReadOnly" = "11:FALSE"
1699
-            "Hidden" = "11:FALSE"
1700
-            "System" = "11:FALSE"
1701
-            "Permanent" = "11:FALSE"
1702
-            "SharedLegacy" = "11:FALSE"
1703
-            "PackageAs" = "3:1"
1704
-            "Register" = "3:1"
1705
-            "Exclude" = "11:FALSE"
1706
-            "IsDependency" = "11:FALSE"
1707
-            "IsolateTo" = "8:"
1708
-            "ProjectOutputGroupRegister" = "3:1"
1709
-            "OutputConfiguration" = "8:Release|x64"
1710
-            "OutputGroupCanonicalName" = "8:Built"
1711
-            "OutputProjectGuid" = "8:{390D68E1-5228-40A8-9BE4-DD19026001B7}"
1712
-            "ShowKeyOutput" = "11:TRUE"
1713
-                "ExcludeFilters"
1714
-                {
1715
-                }
1716
-            }
1717
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_FD32D8B800DB4CFF8939BA5ED607C754"
1718
-            {
1719
-            "SourcePath" = "8:..\\x64\\Release\\clambc.exe"
1720
-            "TargetName" = "8:"
1721
-            "Tag" = "8:"
1722
-            "Folder" = "8:_CEC880DBF61041CCA0B367A8647B2589"
1723
-            "Condition" = "8:"
1724
-            "Transitive" = "11:FALSE"
1725
-            "Vital" = "11:TRUE"
1726
-            "ReadOnly" = "11:FALSE"
1727
-            "Hidden" = "11:FALSE"
1728
-            "System" = "11:FALSE"
1729
-            "Permanent" = "11:FALSE"
1730
-            "SharedLegacy" = "11:FALSE"
1731
-            "PackageAs" = "3:1"
1732
-            "Register" = "3:1"
1733
-            "Exclude" = "11:FALSE"
1734
-            "IsDependency" = "11:FALSE"
1735
-            "IsolateTo" = "8:"
1736
-            "ProjectOutputGroupRegister" = "3:1"
1737
-            "OutputConfiguration" = "8:Release|x64"
1738
-            "OutputGroupCanonicalName" = "8:Built"
1739
-            "OutputProjectGuid" = "8:{30BC968B-C4F7-4598-A672-AC69375C9155}"
1740
-            "ShowKeyOutput" = "11:TRUE"
1741
-                "ExcludeFilters"
1742
-                {
1743
-                }
1744
-            }
1745
-        }
1746
-    }
1747
-}
1748 1
deleted file mode 100644
... ...
@@ -1,2 +0,0 @@
1
-Debug
2
-Release
3 1
deleted file mode 100755
... ...
@@ -1,1807 +0,0 @@
1
-"DeployProject"
2
-{
3
-"VSVersion" = "3:800"
4
-"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
5
-"IsWebType" = "8:FALSE"
6
-"ProjectName" = "8:Setup-x86"
7
-"LanguageId" = "3:1033"
8
-"CodePage" = "3:1252"
9
-"UILanguageId" = "3:1033"
10
-"SccProjectName" = "8:"
11
-"SccLocalPath" = "8:"
12
-"SccAuxPath" = "8:"
13
-"SccProvider" = "8:"
14
-    "Hierarchy"
15
-    {
16
-        "Entry"
17
-        {
18
-        "MsmKey" = "8:_0BAEAA09548C4551BB507ED0A287BFF7"
19
-        "OwnerKey" = "8:_UNDEFINED"
20
-        "MsmSig" = "8:_UNDEFINED"
21
-        }
22
-        "Entry"
23
-        {
24
-        "MsmKey" = "8:_0CCE4417A8574A869386DCD0D292DBC8"
25
-        "OwnerKey" = "8:_UNDEFINED"
26
-        "MsmSig" = "8:_UNDEFINED"
27
-        }
28
-        "Entry"
29
-        {
30
-        "MsmKey" = "8:_16125625C5AD4097ABC5161C62CAD8D9"
31
-        "OwnerKey" = "8:_UNDEFINED"
32
-        "MsmSig" = "8:_UNDEFINED"
33
-        }
34
-        "Entry"
35
-        {
36
-        "MsmKey" = "8:_1F73BA3E7A3D486393E6D49E29169412"
37
-        "OwnerKey" = "8:_UNDEFINED"
38
-        "MsmSig" = "8:_UNDEFINED"
39
-        }
40
-        "Entry"
41
-        {
42
-        "MsmKey" = "8:_200E5A9B790A4626B1AC9E22CF7867FA"
43
-        "OwnerKey" = "8:_UNDEFINED"
44
-        "MsmSig" = "8:_UNDEFINED"
45
-        }
46
-        "Entry"
47
-        {
48
-        "MsmKey" = "8:_2342B5377228431286E9ED6A5962B891"
49
-        "OwnerKey" = "8:_UNDEFINED"
50
-        "MsmSig" = "8:_UNDEFINED"
51
-        }
52
-        "Entry"
53
-        {
54
-        "MsmKey" = "8:_2CD72BA3C9744CEBA8FE795FF419F336"
55
-        "OwnerKey" = "8:_UNDEFINED"
56
-        "MsmSig" = "8:_UNDEFINED"
57
-        }
58
-        "Entry"
59
-        {
60
-        "MsmKey" = "8:_331C77A17663463FB06247657718AAF3"
61
-        "OwnerKey" = "8:_UNDEFINED"
62
-        "MsmSig" = "8:_UNDEFINED"
63
-        }
64
-        "Entry"
65
-        {
66
-        "MsmKey" = "8:_3D8905CACB1B4C45B76D8C27DA8AB71F"
67
-        "OwnerKey" = "8:_UNDEFINED"
68
-        "MsmSig" = "8:_UNDEFINED"
69
-        }
70
-        "Entry"
71
-        {
72
-        "MsmKey" = "8:_42F8A365EFB3407780B0CF0C3E9BB441"
73
-        "OwnerKey" = "8:_UNDEFINED"
74
-        "MsmSig" = "8:_UNDEFINED"
75
-        }
76
-        "Entry"
77
-        {
78
-        "MsmKey" = "8:_49EB8577CD164925A62E7C391F0E755D"
79
-        "OwnerKey" = "8:_UNDEFINED"
80
-        "MsmSig" = "8:_UNDEFINED"
81
-        }
82
-        "Entry"
83
-        {
84
-        "MsmKey" = "8:_54231A6C72614F64B976357EA837F8B8"
85
-        "OwnerKey" = "8:_UNDEFINED"
86
-        "MsmSig" = "8:_UNDEFINED"
87
-        }
88
-        "Entry"
89
-        {
90
-        "MsmKey" = "8:_555A18D4E1A14F0B86F24C668B83C1D3"
91
-        "OwnerKey" = "8:_UNDEFINED"
92
-        "MsmSig" = "8:_UNDEFINED"
93
-        }
94
-        "Entry"
95
-        {
96
-        "MsmKey" = "8:_5FE155819306476DBA0496B696392858"
97
-        "OwnerKey" = "8:_UNDEFINED"
98
-        "MsmSig" = "8:_UNDEFINED"
99
-        }
100
-        "Entry"
101
-        {
102
-        "MsmKey" = "8:_6306B6539BED497CB50AC4612E9420C7"
103
-        "OwnerKey" = "8:_UNDEFINED"
104
-        "MsmSig" = "8:_UNDEFINED"
105
-        }
106
-        "Entry"
107
-        {
108
-        "MsmKey" = "8:_6C6B36F197484980BF0CEF1638C65FC5"
109
-        "OwnerKey" = "8:_UNDEFINED"
110
-        "MsmSig" = "8:_UNDEFINED"
111
-        }
112
-        "Entry"
113
-        {
114
-        "MsmKey" = "8:_7DCD50FBC5504FBFB541E8A190A4464C"
115
-        "OwnerKey" = "8:_UNDEFINED"
116
-        "MsmSig" = "8:_UNDEFINED"
117
-        }
118
-        "Entry"
119
-        {
120
-        "MsmKey" = "8:_804DCFCA56414A3AA48420638EF83B21"
121
-        "OwnerKey" = "8:_UNDEFINED"
122
-        "MsmSig" = "8:_UNDEFINED"
123
-        }
124
-        "Entry"
125
-        {
126
-        "MsmKey" = "8:_A755B4F338534024A98E759B89892712"
127
-        "OwnerKey" = "8:_UNDEFINED"
128
-        "MsmSig" = "8:_UNDEFINED"
129
-        }
130
-        "Entry"
131
-        {
132
-        "MsmKey" = "8:_C3A5D70F7FCF44708766BEA16F3F576C"
133
-        "OwnerKey" = "8:_UNDEFINED"
134
-        "MsmSig" = "8:_UNDEFINED"
135
-        }
136
-        "Entry"
137
-        {
138
-        "MsmKey" = "8:_C679644CB15A4F7B8B3C4FF17F634993"
139
-        "OwnerKey" = "8:_UNDEFINED"
140
-        "MsmSig" = "8:_UNDEFINED"
141
-        }
142
-        "Entry"
143
-        {
144
-        "MsmKey" = "8:_CD983B6E4679449E8D8C297B20882C67"
145
-        "OwnerKey" = "8:_UNDEFINED"
146
-        "MsmSig" = "8:_UNDEFINED"
147
-        }
148
-        "Entry"
149
-        {
150
-        "MsmKey" = "8:_D36DF193A9BE41309EDD22935298DE5D"
151
-        "OwnerKey" = "8:_UNDEFINED"
152
-        "MsmSig" = "8:_UNDEFINED"
153
-        }
154
-        "Entry"
155
-        {
156
-        "MsmKey" = "8:_DCBCD72CF1974BE4AB4ABF554A5BA684"
157
-        "OwnerKey" = "8:_UNDEFINED"
158
-        "MsmSig" = "8:_UNDEFINED"
159
-        }
160
-        "Entry"
161
-        {
162
-        "MsmKey" = "8:_E551BAA55D614DBBBA72E34AE23083C6"
163
-        "OwnerKey" = "8:_UNDEFINED"
164
-        "MsmSig" = "8:_UNDEFINED"
165
-        }
166
-        "Entry"
167
-        {
168
-        "MsmKey" = "8:_E67CE00D0DA44213B01704B946FAEBD2"
169
-        "OwnerKey" = "8:_UNDEFINED"
170
-        "MsmSig" = "8:_UNDEFINED"
171
-        }
172
-        "Entry"
173
-        {
174
-        "MsmKey" = "8:_F106160510B6472C8B8833F57DC829B7"
175
-        "OwnerKey" = "8:_UNDEFINED"
176
-        "MsmSig" = "8:_UNDEFINED"
177
-        }
178
-    }
179
-    "Configurations"
180
-    {
181
-        "Debug"
182
-        {
183
-        "DisplayName" = "8:Debug"
184
-        "IsDebugOnly" = "11:TRUE"
185
-        "IsReleaseOnly" = "11:FALSE"
186
-        "OutputFilename" = "8:Debug\\ClamAV-0.101.0-x86.msi"
187
-        "PackageFilesAs" = "3:2"
188
-        "PackageFileSize" = "3:-2147483648"
189
-        "CabType" = "3:1"
190
-        "Compression" = "3:2"
191
-        "SignOutput" = "11:FALSE"
192
-        "CertificateFile" = "8:"
193
-        "PrivateKeyFile" = "8:"
194
-        "TimeStampServer" = "8:"
195
-        "InstallerBootstrapper" = "3:2"
196
-            "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
197
-            {
198
-            "Enabled" = "11:TRUE"
199
-            "PromptEnabled" = "11:TRUE"
200
-            "PrerequisitesLocation" = "2:1"
201
-            "Url" = "8:"
202
-            "ComponentsUrl" = "8:"
203
-                "Items"
204
-                {
205
-                    "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Visual.C++.14.0.x86"
206
-                    {
207
-                    "Name" = "8:Visual C++ \"14\" Runtime Libraries (x86)"
208
-                    "ProductCode" = "8:Microsoft.Visual.C++.14.0.x86"
209
-                    }
210
-                }
211
-            }
212
-        }
213
-        "Release"
214
-        {
215
-        "DisplayName" = "8:Release"
216
-        "IsDebugOnly" = "11:FALSE"
217
-        "IsReleaseOnly" = "11:TRUE"
218
-        "OutputFilename" = "8:Release\\ClamAV-0.101.0-x86.msi"
219
-        "PackageFilesAs" = "3:2"
220
-        "PackageFileSize" = "3:-2147483648"
221
-        "CabType" = "3:1"
222
-        "Compression" = "3:2"
223
-        "SignOutput" = "11:FALSE"
224
-        "CertificateFile" = "8:"
225
-        "PrivateKeyFile" = "8:"
226
-        "TimeStampServer" = "8:"
227
-        "InstallerBootstrapper" = "3:2"
228
-            "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
229
-            {
230
-            "Enabled" = "11:TRUE"
231
-            "PromptEnabled" = "11:TRUE"
232
-            "PrerequisitesLocation" = "2:1"
233
-            "Url" = "8:"
234
-            "ComponentsUrl" = "8:"
235
-                "Items"
236
-                {
237
-                    "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Visual.C++.14.0.x86"
238
-                    {
239
-                    "Name" = "8:Visual C++ \"14\" Runtime Libraries (x86)"
240
-                    "ProductCode" = "8:Microsoft.Visual.C++.14.0.x86"
241
-                    }
242
-                }
243
-            }
244
-        }
245
-    }
246
-    "Deployable"
247
-    {
248
-        "CustomAction"
249
-        {
250
-        }
251
-        "DefaultFeature"
252
-        {
253
-        "Name" = "8:DefaultFeature"
254
-        "Title" = "8:"
255
-        "Description" = "8:"
256
-        }
257
-        "ExternalPersistence"
258
-        {
259
-            "LaunchCondition"
260
-            {
261
-            }
262
-        }
263
-        "File"
264
-        {
265
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0BAEAA09548C4551BB507ED0A287BFF7"
266
-            {
267
-            "SourcePath" = "8:..\\..\\COPYING.LGPL"
268
-            "TargetName" = "8:COPYING.LGPL"
269
-            "Tag" = "8:"
270
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
271
-            "Condition" = "8:"
272
-            "Transitive" = "11:FALSE"
273
-            "Vital" = "11:TRUE"
274
-            "ReadOnly" = "11:FALSE"
275
-            "Hidden" = "11:FALSE"
276
-            "System" = "11:FALSE"
277
-            "Permanent" = "11:FALSE"
278
-            "SharedLegacy" = "11:FALSE"
279
-            "PackageAs" = "3:1"
280
-            "Register" = "3:1"
281
-            "Exclude" = "11:FALSE"
282
-            "IsDependency" = "11:FALSE"
283
-            "IsolateTo" = "8:"
284
-            }
285
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0CCE4417A8574A869386DCD0D292DBC8"
286
-            {
287
-            "SourcePath" = "8:..\\..\\COPYING.getopt"
288
-            "TargetName" = "8:COPYING.getopt"
289
-            "Tag" = "8:"
290
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
291
-            "Condition" = "8:"
292
-            "Transitive" = "11:FALSE"
293
-            "Vital" = "11:TRUE"
294
-            "ReadOnly" = "11:FALSE"
295
-            "Hidden" = "11:FALSE"
296
-            "System" = "11:FALSE"
297
-            "Permanent" = "11:FALSE"
298
-            "SharedLegacy" = "11:FALSE"
299
-            "PackageAs" = "3:1"
300
-            "Register" = "3:1"
301
-            "Exclude" = "11:FALSE"
302
-            "IsDependency" = "11:FALSE"
303
-            "IsolateTo" = "8:"
304
-            }
305
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_16125625C5AD4097ABC5161C62CAD8D9"
306
-            {
307
-            "SourcePath" = "8:..\\..\\COPYING.YARA"
308
-            "TargetName" = "8:COPYING.YARA"
309
-            "Tag" = "8:"
310
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
311
-            "Condition" = "8:"
312
-            "Transitive" = "11:FALSE"
313
-            "Vital" = "11:TRUE"
314
-            "ReadOnly" = "11:FALSE"
315
-            "Hidden" = "11:FALSE"
316
-            "System" = "11:FALSE"
317
-            "Permanent" = "11:FALSE"
318
-            "SharedLegacy" = "11:FALSE"
319
-            "PackageAs" = "3:1"
320
-            "Register" = "3:1"
321
-            "Exclude" = "11:FALSE"
322
-            "IsDependency" = "11:FALSE"
323
-            "IsolateTo" = "8:"
324
-            }
325
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1F73BA3E7A3D486393E6D49E29169412"
326
-            {
327
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Installation.md"
328
-            "TargetName" = "8:Installation.md"
329
-            "Tag" = "8:"
330
-            "Folder" = "8:_C4FFE139008240A6A12B98C320C8EF49"
331
-            "Condition" = "8:"
332
-            "Transitive" = "11:FALSE"
333
-            "Vital" = "11:TRUE"
334
-            "ReadOnly" = "11:FALSE"
335
-            "Hidden" = "11:FALSE"
336
-            "System" = "11:FALSE"
337
-            "Permanent" = "11:FALSE"
338
-            "SharedLegacy" = "11:FALSE"
339
-            "PackageAs" = "3:1"
340
-            "Register" = "3:1"
341
-            "Exclude" = "11:FALSE"
342
-            "IsDependency" = "11:FALSE"
343
-            "IsolateTo" = "8:"
344
-            }
345
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2342B5377228431286E9ED6A5962B891"
346
-            {
347
-            "SourcePath" = "8:..\\..\\COPYING.regex"
348
-            "TargetName" = "8:COPYING.regex"
349
-            "Tag" = "8:"
350
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
351
-            "Condition" = "8:"
352
-            "Transitive" = "11:FALSE"
353
-            "Vital" = "11:TRUE"
354
-            "ReadOnly" = "11:FALSE"
355
-            "Hidden" = "11:FALSE"
356
-            "System" = "11:FALSE"
357
-            "Permanent" = "11:FALSE"
358
-            "SharedLegacy" = "11:FALSE"
359
-            "PackageAs" = "3:1"
360
-            "Register" = "3:1"
361
-            "Exclude" = "11:FALSE"
362
-            "IsDependency" = "11:FALSE"
363
-            "IsolateTo" = "8:"
364
-            }
365
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2CD72BA3C9744CEBA8FE795FF419F336"
366
-            {
367
-            "SourcePath" = "8:..\\..\\COPYING.file"
368
-            "TargetName" = "8:COPYING.file"
369
-            "Tag" = "8:"
370
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
371
-            "Condition" = "8:"
372
-            "Transitive" = "11:FALSE"
373
-            "Vital" = "11:TRUE"
374
-            "ReadOnly" = "11:FALSE"
375
-            "Hidden" = "11:FALSE"
376
-            "System" = "11:FALSE"
377
-            "Permanent" = "11:FALSE"
378
-            "SharedLegacy" = "11:FALSE"
379
-            "PackageAs" = "3:1"
380
-            "Register" = "3:1"
381
-            "Exclude" = "11:FALSE"
382
-            "IsDependency" = "11:FALSE"
383
-            "IsolateTo" = "8:"
384
-            }
385
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_331C77A17663463FB06247657718AAF3"
386
-            {
387
-            "SourcePath" = "8:..\\..\\ChangeLog.md"
388
-            "TargetName" = "8:ChangeLog.md"
389
-            "Tag" = "8:"
390
-            "Folder" = "8:_EAD6125678F546619DBA2D127EF17280"
391
-            "Condition" = "8:"
392
-            "Transitive" = "11:FALSE"
393
-            "Vital" = "11:TRUE"
394
-            "ReadOnly" = "11:FALSE"
395
-            "Hidden" = "11:FALSE"
396
-            "System" = "11:FALSE"
397
-            "Permanent" = "11:FALSE"
398
-            "SharedLegacy" = "11:FALSE"
399
-            "PackageAs" = "3:1"
400
-            "Register" = "3:1"
401
-            "Exclude" = "11:FALSE"
402
-            "IsDependency" = "11:FALSE"
403
-            "IsolateTo" = "8:"
404
-            }
405
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3D8905CACB1B4C45B76D8C27DA8AB71F"
406
-            {
407
-            "SourcePath" = "8:..\\conf_examples\\clamd.conf.sample"
408
-            "TargetName" = "8:clamd.conf.sample"
409
-            "Tag" = "8:"
410
-            "Folder" = "8:_26AB14DD8389433BB16AFBF9E7EAC70F"
411
-            "Condition" = "8:"
412
-            "Transitive" = "11:FALSE"
413
-            "Vital" = "11:TRUE"
414
-            "ReadOnly" = "11:FALSE"
415
-            "Hidden" = "11:FALSE"
416
-            "System" = "11:FALSE"
417
-            "Permanent" = "11:FALSE"
418
-            "SharedLegacy" = "11:FALSE"
419
-            "PackageAs" = "3:1"
420
-            "Register" = "3:1"
421
-            "Exclude" = "11:FALSE"
422
-            "IsDependency" = "11:FALSE"
423
-            "IsolateTo" = "8:"
424
-            }
425
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_42F8A365EFB3407780B0CF0C3E9BB441"
426
-            {
427
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\libclamav.md"
428
-            "TargetName" = "8:libclamav.md"
429
-            "Tag" = "8:"
430
-            "Folder" = "8:_C4FFE139008240A6A12B98C320C8EF49"
431
-            "Condition" = "8:"
432
-            "Transitive" = "11:FALSE"
433
-            "Vital" = "11:TRUE"
434
-            "ReadOnly" = "11:FALSE"
435
-            "Hidden" = "11:FALSE"
436
-            "System" = "11:FALSE"
437
-            "Permanent" = "11:FALSE"
438
-            "SharedLegacy" = "11:FALSE"
439
-            "PackageAs" = "3:1"
440
-            "Register" = "3:1"
441
-            "Exclude" = "11:FALSE"
442
-            "IsDependency" = "11:FALSE"
443
-            "IsolateTo" = "8:"
444
-            }
445
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_49EB8577CD164925A62E7C391F0E755D"
446
-            {
447
-            "SourcePath" = "8:..\\..\\COPYING.lzma"
448
-            "TargetName" = "8:COPYING.lzma"
449
-            "Tag" = "8:"
450
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
451
-            "Condition" = "8:"
452
-            "Transitive" = "11:FALSE"
453
-            "Vital" = "11:TRUE"
454
-            "ReadOnly" = "11:FALSE"
455
-            "Hidden" = "11:FALSE"
456
-            "System" = "11:FALSE"
457
-            "Permanent" = "11:FALSE"
458
-            "SharedLegacy" = "11:FALSE"
459
-            "PackageAs" = "3:1"
460
-            "Register" = "3:1"
461
-            "Exclude" = "11:FALSE"
462
-            "IsDependency" = "11:FALSE"
463
-            "IsolateTo" = "8:"
464
-            }
465
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_54231A6C72614F64B976357EA837F8B8"
466
-            {
467
-            "SourcePath" = "8:..\\..\\docs\\UserManual.md"
468
-            "TargetName" = "8:UserManual.md"
469
-            "Tag" = "8:"
470
-            "Folder" = "8:_EAD6125678F546619DBA2D127EF17280"
471
-            "Condition" = "8:"
472
-            "Transitive" = "11:FALSE"
473
-            "Vital" = "11:TRUE"
474
-            "ReadOnly" = "11:FALSE"
475
-            "Hidden" = "11:FALSE"
476
-            "System" = "11:FALSE"
477
-            "Permanent" = "11:FALSE"
478
-            "SharedLegacy" = "11:FALSE"
479
-            "PackageAs" = "3:1"
480
-            "Register" = "3:1"
481
-            "Exclude" = "11:FALSE"
482
-            "IsDependency" = "11:FALSE"
483
-            "IsolateTo" = "8:"
484
-            }
485
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_555A18D4E1A14F0B86F24C668B83C1D3"
486
-            {
487
-            "SourcePath" = "8:..\\..\\COPYING.zlib"
488
-            "TargetName" = "8:COPYING.zlib"
489
-            "Tag" = "8:"
490
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
491
-            "Condition" = "8:"
492
-            "Transitive" = "11:FALSE"
493
-            "Vital" = "11:TRUE"
494
-            "ReadOnly" = "11:FALSE"
495
-            "Hidden" = "11:FALSE"
496
-            "System" = "11:FALSE"
497
-            "Permanent" = "11:FALSE"
498
-            "SharedLegacy" = "11:FALSE"
499
-            "PackageAs" = "3:1"
500
-            "Register" = "3:1"
501
-            "Exclude" = "11:FALSE"
502
-            "IsDependency" = "11:FALSE"
503
-            "IsolateTo" = "8:"
504
-            }
505
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5FE155819306476DBA0496B696392858"
506
-            {
507
-            "SourcePath" = "8:..\\..\\COPYING.llvm"
508
-            "TargetName" = "8:COPYING.llvm"
509
-            "Tag" = "8:"
510
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
511
-            "Condition" = "8:"
512
-            "Transitive" = "11:FALSE"
513
-            "Vital" = "11:TRUE"
514
-            "ReadOnly" = "11:FALSE"
515
-            "Hidden" = "11:FALSE"
516
-            "System" = "11:FALSE"
517
-            "Permanent" = "11:FALSE"
518
-            "SharedLegacy" = "11:FALSE"
519
-            "PackageAs" = "3:1"
520
-            "Register" = "3:1"
521
-            "Exclude" = "11:FALSE"
522
-            "IsDependency" = "11:FALSE"
523
-            "IsolateTo" = "8:"
524
-            }
525
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6306B6539BED497CB50AC4612E9420C7"
526
-            {
527
-            "SourcePath" = "8:..\\..\\NEWS.md"
528
-            "TargetName" = "8:NEWS.md"
529
-            "Tag" = "8:"
530
-            "Folder" = "8:_EAD6125678F546619DBA2D127EF17280"
531
-            "Condition" = "8:"
532
-            "Transitive" = "11:FALSE"
533
-            "Vital" = "11:TRUE"
534
-            "ReadOnly" = "11:FALSE"
535
-            "Hidden" = "11:FALSE"
536
-            "System" = "11:FALSE"
537
-            "Permanent" = "11:FALSE"
538
-            "SharedLegacy" = "11:FALSE"
539
-            "PackageAs" = "3:1"
540
-            "Register" = "3:1"
541
-            "Exclude" = "11:FALSE"
542
-            "IsDependency" = "11:FALSE"
543
-            "IsolateTo" = "8:"
544
-            }
545
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6C6B36F197484980BF0CEF1638C65FC5"
546
-            {
547
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Introduction.md"
548
-            "TargetName" = "8:Introduction.md"
549
-            "Tag" = "8:"
550
-            "Folder" = "8:_C4FFE139008240A6A12B98C320C8EF49"
551
-            "Condition" = "8:"
552
-            "Transitive" = "11:FALSE"
553
-            "Vital" = "11:TRUE"
554
-            "ReadOnly" = "11:FALSE"
555
-            "Hidden" = "11:FALSE"
556
-            "System" = "11:FALSE"
557
-            "Permanent" = "11:FALSE"
558
-            "SharedLegacy" = "11:FALSE"
559
-            "PackageAs" = "3:1"
560
-            "Register" = "3:1"
561
-            "Exclude" = "11:FALSE"
562
-            "IsDependency" = "11:FALSE"
563
-            "IsolateTo" = "8:"
564
-            }
565
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7DCD50FBC5504FBFB541E8A190A4464C"
566
-            {
567
-            "SourcePath" = "8:..\\conf_examples\\freshclam.conf.sample"
568
-            "TargetName" = "8:freshclam.conf.sample"
569
-            "Tag" = "8:"
570
-            "Folder" = "8:_26AB14DD8389433BB16AFBF9E7EAC70F"
571
-            "Condition" = "8:"
572
-            "Transitive" = "11:FALSE"
573
-            "Vital" = "11:TRUE"
574
-            "ReadOnly" = "11:FALSE"
575
-            "Hidden" = "11:FALSE"
576
-            "System" = "11:FALSE"
577
-            "Permanent" = "11:FALSE"
578
-            "SharedLegacy" = "11:FALSE"
579
-            "PackageAs" = "3:1"
580
-            "Register" = "3:1"
581
-            "Exclude" = "11:FALSE"
582
-            "IsDependency" = "11:FALSE"
583
-            "IsolateTo" = "8:"
584
-            }
585
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_804DCFCA56414A3AA48420638EF83B21"
586
-            {
587
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Usage.md"
588
-            "TargetName" = "8:Usage.md"
589
-            "Tag" = "8:"
590
-            "Folder" = "8:_C4FFE139008240A6A12B98C320C8EF49"
591
-            "Condition" = "8:"
592
-            "Transitive" = "11:FALSE"
593
-            "Vital" = "11:TRUE"
594
-            "ReadOnly" = "11:FALSE"
595
-            "Hidden" = "11:FALSE"
596
-            "System" = "11:FALSE"
597
-            "Permanent" = "11:FALSE"
598
-            "SharedLegacy" = "11:FALSE"
599
-            "PackageAs" = "3:1"
600
-            "Register" = "3:1"
601
-            "Exclude" = "11:FALSE"
602
-            "IsDependency" = "11:FALSE"
603
-            "IsolateTo" = "8:"
604
-            }
605
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A755B4F338534024A98E759B89892712"
606
-            {
607
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\PhishSigs.md"
608
-            "TargetName" = "8:PhishSigs.md"
609
-            "Tag" = "8:"
610
-            "Folder" = "8:_C4FFE139008240A6A12B98C320C8EF49"
611
-            "Condition" = "8:"
612
-            "Transitive" = "11:FALSE"
613
-            "Vital" = "11:TRUE"
614
-            "ReadOnly" = "11:FALSE"
615
-            "Hidden" = "11:FALSE"
616
-            "System" = "11:FALSE"
617
-            "Permanent" = "11:FALSE"
618
-            "SharedLegacy" = "11:FALSE"
619
-            "PackageAs" = "3:1"
620
-            "Register" = "3:1"
621
-            "Exclude" = "11:FALSE"
622
-            "IsDependency" = "11:FALSE"
623
-            "IsolateTo" = "8:"
624
-            }
625
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C3A5D70F7FCF44708766BEA16F3F576C"
626
-            {
627
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Configuration.md"
628
-            "TargetName" = "8:Configuration.md"
629
-            "Tag" = "8:"
630
-            "Folder" = "8:_C4FFE139008240A6A12B98C320C8EF49"
631
-            "Condition" = "8:"
632
-            "Transitive" = "11:FALSE"
633
-            "Vital" = "11:TRUE"
634
-            "ReadOnly" = "11:FALSE"
635
-            "Hidden" = "11:FALSE"
636
-            "System" = "11:FALSE"
637
-            "Permanent" = "11:FALSE"
638
-            "SharedLegacy" = "11:FALSE"
639
-            "PackageAs" = "3:1"
640
-            "Register" = "3:1"
641
-            "Exclude" = "11:FALSE"
642
-            "IsDependency" = "11:FALSE"
643
-            "IsolateTo" = "8:"
644
-            }
645
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C679644CB15A4F7B8B3C4FF17F634993"
646
-            {
647
-            "SourcePath" = "8:..\\..\\COPYING.pcre"
648
-            "TargetName" = "8:COPYING.pcre"
649
-            "Tag" = "8:"
650
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
651
-            "Condition" = "8:"
652
-            "Transitive" = "11:FALSE"
653
-            "Vital" = "11:TRUE"
654
-            "ReadOnly" = "11:FALSE"
655
-            "Hidden" = "11:FALSE"
656
-            "System" = "11:FALSE"
657
-            "Permanent" = "11:FALSE"
658
-            "SharedLegacy" = "11:FALSE"
659
-            "PackageAs" = "3:1"
660
-            "Register" = "3:1"
661
-            "Exclude" = "11:FALSE"
662
-            "IsDependency" = "11:FALSE"
663
-            "IsolateTo" = "8:"
664
-            }
665
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CD983B6E4679449E8D8C297B20882C67"
666
-            {
667
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\images\\demon.png"
668
-            "TargetName" = "8:demon.png"
669
-            "Tag" = "8:"
670
-            "Folder" = "8:_8B0A21221A52411786F37320471363FC"
671
-            "Condition" = "8:"
672
-            "Transitive" = "11:FALSE"
673
-            "Vital" = "11:TRUE"
674
-            "ReadOnly" = "11:FALSE"
675
-            "Hidden" = "11:FALSE"
676
-            "System" = "11:FALSE"
677
-            "Permanent" = "11:FALSE"
678
-            "SharedLegacy" = "11:FALSE"
679
-            "PackageAs" = "3:1"
680
-            "Register" = "3:1"
681
-            "Exclude" = "11:FALSE"
682
-            "IsDependency" = "11:FALSE"
683
-            "IsolateTo" = "8:"
684
-            }
685
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_DCBCD72CF1974BE4AB4ABF554A5BA684"
686
-            {
687
-            "SourcePath" = "8:..\\..\\docs\\UserManual\\Signatures.md"
688
-            "TargetName" = "8:Signatures.md"
689
-            "Tag" = "8:"
690
-            "Folder" = "8:_C4FFE139008240A6A12B98C320C8EF49"
691
-            "Condition" = "8:"
692
-            "Transitive" = "11:FALSE"
693
-            "Vital" = "11:TRUE"
694
-            "ReadOnly" = "11:FALSE"
695
-            "Hidden" = "11:FALSE"
696
-            "System" = "11:FALSE"
697
-            "Permanent" = "11:FALSE"
698
-            "SharedLegacy" = "11:FALSE"
699
-            "PackageAs" = "3:1"
700
-            "Register" = "3:1"
701
-            "Exclude" = "11:FALSE"
702
-            "IsDependency" = "11:FALSE"
703
-            "IsolateTo" = "8:"
704
-            }
705
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E551BAA55D614DBBBA72E34AE23083C6"
706
-            {
707
-            "SourcePath" = "8:..\\..\\COPYING.unrar"
708
-            "TargetName" = "8:COPYING.unrar"
709
-            "Tag" = "8:"
710
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
711
-            "Condition" = "8:"
712
-            "Transitive" = "11:FALSE"
713
-            "Vital" = "11:TRUE"
714
-            "ReadOnly" = "11:FALSE"
715
-            "Hidden" = "11:FALSE"
716
-            "System" = "11:FALSE"
717
-            "Permanent" = "11:FALSE"
718
-            "SharedLegacy" = "11:FALSE"
719
-            "PackageAs" = "3:1"
720
-            "Register" = "3:1"
721
-            "Exclude" = "11:FALSE"
722
-            "IsDependency" = "11:FALSE"
723
-            "IsolateTo" = "8:"
724
-            }
725
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E67CE00D0DA44213B01704B946FAEBD2"
726
-            {
727
-            "SourcePath" = "8:..\\..\\COPYING"
728
-            "TargetName" = "8:COPYING"
729
-            "Tag" = "8:"
730
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
731
-            "Condition" = "8:"
732
-            "Transitive" = "11:FALSE"
733
-            "Vital" = "11:TRUE"
734
-            "ReadOnly" = "11:FALSE"
735
-            "Hidden" = "11:FALSE"
736
-            "System" = "11:FALSE"
737
-            "Permanent" = "11:FALSE"
738
-            "SharedLegacy" = "11:FALSE"
739
-            "PackageAs" = "3:1"
740
-            "Register" = "3:1"
741
-            "Exclude" = "11:FALSE"
742
-            "IsDependency" = "11:FALSE"
743
-            "IsolateTo" = "8:"
744
-            }
745
-            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F106160510B6472C8B8833F57DC829B7"
746
-            {
747
-            "SourcePath" = "8:..\\..\\COPYING.bzip2"
748
-            "TargetName" = "8:COPYING.bzip2"
749
-            "Tag" = "8:"
750
-            "Folder" = "8:_CC739FAEDF984CEAB76629333F010ECC"
751
-            "Condition" = "8:"
752
-            "Transitive" = "11:FALSE"
753
-            "Vital" = "11:TRUE"
754
-            "ReadOnly" = "11:FALSE"
755
-            "Hidden" = "11:FALSE"
756
-            "System" = "11:FALSE"
757
-            "Permanent" = "11:FALSE"
758
-            "SharedLegacy" = "11:FALSE"
759
-            "PackageAs" = "3:1"
760
-            "Register" = "3:1"
761
-            "Exclude" = "11:FALSE"
762
-            "IsDependency" = "11:FALSE"
763
-            "IsolateTo" = "8:"
764
-            }
765
-        }
766
-        "FileType"
767
-        {
768
-        }
769
-        "Folder"
770
-        {
771
-            "{3C67513D-01DD-4637-8A68-80971EB9504F}:_008B7C8409804955AA838A24FDF47F97"
772
-            {
773
-            "DefaultLocation" = "8:[ProgramFilesFolder]\\[ProductName]"
774
-            "Name" = "8:#1925"
775
-            "AlwaysCreate" = "11:FALSE"
776
-            "Condition" = "8:"
777
-            "Transitive" = "11:FALSE"
778
-            "Property" = "8:TARGETDIR"
779
-                "Folders"
780
-                {
781
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_26AB14DD8389433BB16AFBF9E7EAC70F"
782
-                    {
783
-                    "Name" = "8:conf_examples"
784
-                    "AlwaysCreate" = "11:FALSE"
785
-                    "Condition" = "8:"
786
-                    "Transitive" = "11:FALSE"
787
-                    "Property" = "8:_99BC5FBAB8594EBCACB427923E143C9A"
788
-                        "Folders"
789
-                        {
790
-                        }
791
-                    }
792
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_B0E7A7A5078542369C1E71A917BB4AC9"
793
-                    {
794
-                    "Name" = "8:database"
795
-                    "AlwaysCreate" = "11:TRUE"
796
-                    "Condition" = "8:"
797
-                    "Transitive" = "11:FALSE"
798
-                    "Property" = "8:_5E0BEF3D17F043E8A105AAB628D574C8"
799
-                        "Folders"
800
-                        {
801
-                        }
802
-                    }
803
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_CC739FAEDF984CEAB76629333F010ECC"
804
-                    {
805
-                    "Name" = "8:COPYING"
806
-                    "AlwaysCreate" = "11:FALSE"
807
-                    "Condition" = "8:"
808
-                    "Transitive" = "11:FALSE"
809
-                    "Property" = "8:_49644FA00D0E41ADA61D253F3199A8EB"
810
-                        "Folders"
811
-                        {
812
-                        }
813
-                    }
814
-                    "{9EF0B969-E518-4E46-987F-47570745A589}:_EAD6125678F546619DBA2D127EF17280"
815
-                    {
816
-                    "Name" = "8:docs"
817
-                    "AlwaysCreate" = "11:FALSE"
818
-                    "Condition" = "8:"
819
-                    "Transitive" = "11:FALSE"
820
-                    "Property" = "8:_1661C5602DA74009BDB48BF7D9D153A0"
821
-                        "Folders"
822
-                        {
823
-                            "{9EF0B969-E518-4E46-987F-47570745A589}:_C4FFE139008240A6A12B98C320C8EF49"
824
-                            {
825
-                            "Name" = "8:UserManual"
826
-                            "AlwaysCreate" = "11:FALSE"
827
-                            "Condition" = "8:"
828
-                            "Transitive" = "11:FALSE"
829
-                            "Property" = "8:_20C722F56D624B988AB148FD85EC6206"
830
-                                "Folders"
831
-                                {
832
-                                    "{9EF0B969-E518-4E46-987F-47570745A589}:_8B0A21221A52411786F37320471363FC"
833
-                                    {
834
-                                    "Name" = "8:images"
835
-                                    "AlwaysCreate" = "11:FALSE"
836
-                                    "Condition" = "8:"
837
-                                    "Transitive" = "11:FALSE"
838
-                                    "Property" = "8:_0F3CE8C90DE94F369EC17995E3E9CC86"
839
-                                        "Folders"
840
-                                        {
841
-                                        }
842
-                                    }
843
-                                }
844
-                            }
845
-                        }
846
-                    }
847
-                }
848
-            }
849
-        }
850
-        "LaunchCondition"
851
-        {
852
-        }
853
-        "Locator"
854
-        {
855
-        }
856
-        "MsiBootstrapper"
857
-        {
858
-        "LangId" = "3:1033"
859
-        "RequiresElevation" = "11:FALSE"
860
-        }
861
-        "Product"
862
-        {
863
-        "Name" = "8:Microsoft Visual Studio"
864
-        "ProductName" = "8:ClamAV"
865
-        "ProductCode" = "8:{60806B56-966E-462B-9570-D670279C9386}"
866
-        "PackageCode" = "8:{940EEE13-53FB-42AD-B8B1-06B2DABC609F}"
867
-        "UpgradeCode" = "8:{8C7E41DE-9820-4B16-9949-43B1B267AC37}"
868
-        "AspNetVersion" = "8:4.0.30319.0"
869
-        "RestartWWWService" = "11:FALSE"
870
-        "RemovePreviousVersions" = "11:TRUE"
871
-        "DetectNewerInstalledVersion" = "11:TRUE"
872
-        "InstallAllUsers" = "11:TRUE"
873
-        "ProductVersion" = "8:0.101.0"
874
-        "Manufacturer" = "8:Cisco Systems, Inc"
875
-        "ARPHELPTELEPHONE" = "8:"
876
-        "ARPHELPLINK" = "8:https://www.clamav.net"
877
-        "Title" = "8:Setup-x86"
878
-        "Subject" = "8:"
879
-        "ARPCONTACT" = "8:Cisco Systems, Inc"
880
-        "Keywords" = "8:"
881
-        "ARPCOMMENTS" = "8:ClamAV"
882
-        "ARPURLINFOABOUT" = "8:https://www.clamav.net"
883
-        "ARPPRODUCTICON" = "8:"
884
-        "ARPIconIndex" = "3:0"
885
-        "SearchPath" = "8:"
886
-        "UseSystemSearchPath" = "11:TRUE"
887
-        "TargetPlatform" = "3:0"
888
-        "PreBuildEvent" = "8:"
889
-        "PostBuildEvent" = "8:"
890
-        "RunPostBuildEvent" = "3:0"
891
-        }
892
-        "Registry"
893
-        {
894
-            "HKLM"
895
-            {
896
-                "Keys"
897
-                {
898
-                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5769AA2DF79045E486CA326C2F9A09CC"
899
-                    {
900
-                    "Name" = "8:Software"
901
-                    "Condition" = "8:"
902
-                    "AlwaysCreate" = "11:FALSE"
903
-                    "DeleteAtUninstall" = "11:FALSE"
904
-                    "Transitive" = "11:FALSE"
905
-                        "Keys"
906
-                        {
907
-                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_61CF80BB02024FECA95C765A831430EE"
908
-                            {
909
-                            "Name" = "8:[Manufacturer]"
910
-                            "Condition" = "8:"
911
-                            "AlwaysCreate" = "11:FALSE"
912
-                            "DeleteAtUninstall" = "11:FALSE"
913
-                            "Transitive" = "11:FALSE"
914
-                                "Keys"
915
-                                {
916
-                                }
917
-                                "Values"
918
-                                {
919
-                                }
920
-                            }
921
-                        }
922
-                        "Values"
923
-                        {
924
-                        }
925
-                    }
926
-                }
927
-            }
928
-            "HKCU"
929
-            {
930
-                "Keys"
931
-                {
932
-                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_831A5949AF174FDB8EE564573CAFF8CB"
933
-                    {
934
-                    "Name" = "8:Software"
935
-                    "Condition" = "8:"
936
-                    "AlwaysCreate" = "11:FALSE"
937
-                    "DeleteAtUninstall" = "11:FALSE"
938
-                    "Transitive" = "11:FALSE"
939
-                        "Keys"
940
-                        {
941
-                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_DE40AEE323CB4A349ADE1D67B08BFFE8"
942
-                            {
943
-                            "Name" = "8:[Manufacturer]"
944
-                            "Condition" = "8:"
945
-                            "AlwaysCreate" = "11:FALSE"
946
-                            "DeleteAtUninstall" = "11:FALSE"
947
-                            "Transitive" = "11:FALSE"
948
-                                "Keys"
949
-                                {
950
-                                }
951
-                                "Values"
952
-                                {
953
-                                }
954
-                            }
955
-                        }
956
-                        "Values"
957
-                        {
958
-                        }
959
-                    }
960
-                }
961
-            }
962
-            "HKCR"
963
-            {
964
-                "Keys"
965
-                {
966
-                }
967
-            }
968
-            "HKU"
969
-            {
970
-                "Keys"
971
-                {
972
-                }
973
-            }
974
-            "HKPU"
975
-            {
976
-                "Keys"
977
-                {
978
-                }
979
-            }
980
-        }
981
-        "Sequences"
982
-        {
983
-        }
984
-        "Shortcut"
985
-        {
986
-        }
987
-        "UserInterface"
988
-        {
989
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_21844C6D52E248E49224AF9A006BCA03"
990
-            {
991
-            "Name" = "8:#1900"
992
-            "Sequence" = "3:2"
993
-            "Attributes" = "3:1"
994
-                "Dialogs"
995
-                {
996
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_317FA931E4D64DAF8E6888B8A0300D9E"
997
-                    {
998
-                    "Sequence" = "3:300"
999
-                    "DisplayName" = "8:Confirm Installation"
1000
-                    "UseDynamicProperties" = "11:TRUE"
1001
-                    "IsDependency" = "11:FALSE"
1002
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
1003
-                        "Properties"
1004
-                        {
1005
-                            "BannerBitmap"
1006
-                            {
1007
-                            "Name" = "8:BannerBitmap"
1008
-                            "DisplayName" = "8:#1001"
1009
-                            "Description" = "8:#1101"
1010
-                            "Type" = "3:8"
1011
-                            "ContextData" = "8:Bitmap"
1012
-                            "Attributes" = "3:4"
1013
-                            "Setting" = "3:1"
1014
-                            "UsePlugInResources" = "11:TRUE"
1015
-                            }
1016
-                        }
1017
-                    }
1018
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D0CBD549EEE8486EB47398A03FF7994E"
1019
-                    {
1020
-                    "Sequence" = "3:100"
1021
-                    "DisplayName" = "8:Welcome"
1022
-                    "UseDynamicProperties" = "11:TRUE"
1023
-                    "IsDependency" = "11:FALSE"
1024
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
1025
-                        "Properties"
1026
-                        {
1027
-                            "BannerBitmap"
1028
-                            {
1029
-                            "Name" = "8:BannerBitmap"
1030
-                            "DisplayName" = "8:#1001"
1031
-                            "Description" = "8:#1101"
1032
-                            "Type" = "3:8"
1033
-                            "ContextData" = "8:Bitmap"
1034
-                            "Attributes" = "3:4"
1035
-                            "Setting" = "3:1"
1036
-                            "UsePlugInResources" = "11:TRUE"
1037
-                            }
1038
-                            "CopyrightWarning"
1039
-                            {
1040
-                            "Name" = "8:CopyrightWarning"
1041
-                            "DisplayName" = "8:#1002"
1042
-                            "Description" = "8:#1102"
1043
-                            "Type" = "3:3"
1044
-                            "ContextData" = "8:"
1045
-                            "Attributes" = "3:0"
1046
-                            "Setting" = "3:1"
1047
-                            "Value" = "8:#1202"
1048
-                            "DefaultValue" = "8:#1202"
1049
-                            "UsePlugInResources" = "11:TRUE"
1050
-                            }
1051
-                            "Welcome"
1052
-                            {
1053
-                            "Name" = "8:Welcome"
1054
-                            "DisplayName" = "8:#1003"
1055
-                            "Description" = "8:#1103"
1056
-                            "Type" = "3:3"
1057
-                            "ContextData" = "8:"
1058
-                            "Attributes" = "3:0"
1059
-                            "Setting" = "3:1"
1060
-                            "Value" = "8:#1203"
1061
-                            "DefaultValue" = "8:#1203"
1062
-                            "UsePlugInResources" = "11:TRUE"
1063
-                            }
1064
-                        }
1065
-                    }
1066
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F02DEAE323E3445082D1029D028630CC"
1067
-                    {
1068
-                    "Sequence" = "3:200"
1069
-                    "DisplayName" = "8:Installation Folder"
1070
-                    "UseDynamicProperties" = "11:TRUE"
1071
-                    "IsDependency" = "11:FALSE"
1072
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
1073
-                        "Properties"
1074
-                        {
1075
-                            "BannerBitmap"
1076
-                            {
1077
-                            "Name" = "8:BannerBitmap"
1078
-                            "DisplayName" = "8:#1001"
1079
-                            "Description" = "8:#1101"
1080
-                            "Type" = "3:8"
1081
-                            "ContextData" = "8:Bitmap"
1082
-                            "Attributes" = "3:4"
1083
-                            "Setting" = "3:1"
1084
-                            "UsePlugInResources" = "11:TRUE"
1085
-                            }
1086
-                        }
1087
-                    }
1088
-                }
1089
-            }
1090
-            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_3413193F4240492FA72D8D65E4913047"
1091
-            {
1092
-            "UseDynamicProperties" = "11:FALSE"
1093
-            "IsDependency" = "11:FALSE"
1094
-            "SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
1095
-            }
1096
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_3C91202A169F4D7FBBBB10B37A9EE5A0"
1097
-            {
1098
-            "Name" = "8:#1902"
1099
-            "Sequence" = "3:2"
1100
-            "Attributes" = "3:3"
1101
-                "Dialogs"
1102
-                {
1103
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_06B3E08935224C788A33AEF86916B24C"
1104
-                    {
1105
-                    "Sequence" = "3:100"
1106
-                    "DisplayName" = "8:Finished"
1107
-                    "UseDynamicProperties" = "11:TRUE"
1108
-                    "IsDependency" = "11:FALSE"
1109
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
1110
-                        "Properties"
1111
-                        {
1112
-                            "BannerBitmap"
1113
-                            {
1114
-                            "Name" = "8:BannerBitmap"
1115
-                            "DisplayName" = "8:#1001"
1116
-                            "Description" = "8:#1101"
1117
-                            "Type" = "3:8"
1118
-                            "ContextData" = "8:Bitmap"
1119
-                            "Attributes" = "3:4"
1120
-                            "Setting" = "3:1"
1121
-                            "UsePlugInResources" = "11:TRUE"
1122
-                            }
1123
-                        }
1124
-                    }
1125
-                }
1126
-            }
1127
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_69C7691A97354080895B84BCE9396A8D"
1128
-            {
1129
-            "Name" = "8:#1902"
1130
-            "Sequence" = "3:1"
1131
-            "Attributes" = "3:3"
1132
-                "Dialogs"
1133
-                {
1134
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B5696A1D1F1C4552BE31CA69A1D466E0"
1135
-                    {
1136
-                    "Sequence" = "3:100"
1137
-                    "DisplayName" = "8:Finished"
1138
-                    "UseDynamicProperties" = "11:TRUE"
1139
-                    "IsDependency" = "11:FALSE"
1140
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
1141
-                        "Properties"
1142
-                        {
1143
-                            "BannerBitmap"
1144
-                            {
1145
-                            "Name" = "8:BannerBitmap"
1146
-                            "DisplayName" = "8:#1001"
1147
-                            "Description" = "8:#1101"
1148
-                            "Type" = "3:8"
1149
-                            "ContextData" = "8:Bitmap"
1150
-                            "Attributes" = "3:4"
1151
-                            "Setting" = "3:1"
1152
-                            "UsePlugInResources" = "11:TRUE"
1153
-                            }
1154
-                            "UpdateText"
1155
-                            {
1156
-                            "Name" = "8:UpdateText"
1157
-                            "DisplayName" = "8:#1058"
1158
-                            "Description" = "8:#1158"
1159
-                            "Type" = "3:15"
1160
-                            "ContextData" = "8:"
1161
-                            "Attributes" = "3:0"
1162
-                            "Setting" = "3:1"
1163
-                            "Value" = "8:#1258"
1164
-                            "DefaultValue" = "8:#1258"
1165
-                            "UsePlugInResources" = "11:TRUE"
1166
-                            }
1167
-                        }
1168
-                    }
1169
-                }
1170
-            }
1171
-            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_B3AC2E72EC714833BC6C27C7ABCC2C8B"
1172
-            {
1173
-            "UseDynamicProperties" = "11:FALSE"
1174
-            "IsDependency" = "11:FALSE"
1175
-            "SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
1176
-            }
1177
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B63B2D39440C49BB854E72151002A267"
1178
-            {
1179
-            "Name" = "8:#1901"
1180
-            "Sequence" = "3:2"
1181
-            "Attributes" = "3:2"
1182
-                "Dialogs"
1183
-                {
1184
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_5A9C1074F73247F693BC837FD73AD507"
1185
-                    {
1186
-                    "Sequence" = "3:100"
1187
-                    "DisplayName" = "8:Progress"
1188
-                    "UseDynamicProperties" = "11:TRUE"
1189
-                    "IsDependency" = "11:FALSE"
1190
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
1191
-                        "Properties"
1192
-                        {
1193
-                            "BannerBitmap"
1194
-                            {
1195
-                            "Name" = "8:BannerBitmap"
1196
-                            "DisplayName" = "8:#1001"
1197
-                            "Description" = "8:#1101"
1198
-                            "Type" = "3:8"
1199
-                            "ContextData" = "8:Bitmap"
1200
-                            "Attributes" = "3:4"
1201
-                            "Setting" = "3:1"
1202
-                            "UsePlugInResources" = "11:TRUE"
1203
-                            }
1204
-                            "ShowProgress"
1205
-                            {
1206
-                            "Name" = "8:ShowProgress"
1207
-                            "DisplayName" = "8:#1009"
1208
-                            "Description" = "8:#1109"
1209
-                            "Type" = "3:5"
1210
-                            "ContextData" = "8:1;True=1;False=0"
1211
-                            "Attributes" = "3:0"
1212
-                            "Setting" = "3:0"
1213
-                            "Value" = "3:1"
1214
-                            "DefaultValue" = "3:1"
1215
-                            "UsePlugInResources" = "11:TRUE"
1216
-                            }
1217
-                        }
1218
-                    }
1219
-                }
1220
-            }
1221
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C529BFB5E49842779C66AAB6047CE84E"
1222
-            {
1223
-            "Name" = "8:#1900"
1224
-            "Sequence" = "3:1"
1225
-            "Attributes" = "3:1"
1226
-                "Dialogs"
1227
-                {
1228
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2129FF1140AD4589BA5A5CFCCB01C1F4"
1229
-                    {
1230
-                    "Sequence" = "3:300"
1231
-                    "DisplayName" = "8:Confirm Installation"
1232
-                    "UseDynamicProperties" = "11:TRUE"
1233
-                    "IsDependency" = "11:FALSE"
1234
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
1235
-                        "Properties"
1236
-                        {
1237
-                            "BannerBitmap"
1238
-                            {
1239
-                            "Name" = "8:BannerBitmap"
1240
-                            "DisplayName" = "8:#1001"
1241
-                            "Description" = "8:#1101"
1242
-                            "Type" = "3:8"
1243
-                            "ContextData" = "8:Bitmap"
1244
-                            "Attributes" = "3:4"
1245
-                            "Setting" = "3:1"
1246
-                            "UsePlugInResources" = "11:TRUE"
1247
-                            }
1248
-                        }
1249
-                    }
1250
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_9ACA81AD3FE844F5A7D6C385732E5254"
1251
-                    {
1252
-                    "Sequence" = "3:100"
1253
-                    "DisplayName" = "8:Welcome"
1254
-                    "UseDynamicProperties" = "11:TRUE"
1255
-                    "IsDependency" = "11:FALSE"
1256
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
1257
-                        "Properties"
1258
-                        {
1259
-                            "BannerBitmap"
1260
-                            {
1261
-                            "Name" = "8:BannerBitmap"
1262
-                            "DisplayName" = "8:#1001"
1263
-                            "Description" = "8:#1101"
1264
-                            "Type" = "3:8"
1265
-                            "ContextData" = "8:Bitmap"
1266
-                            "Attributes" = "3:4"
1267
-                            "Setting" = "3:1"
1268
-                            "UsePlugInResources" = "11:TRUE"
1269
-                            }
1270
-                            "CopyrightWarning"
1271
-                            {
1272
-                            "Name" = "8:CopyrightWarning"
1273
-                            "DisplayName" = "8:#1002"
1274
-                            "Description" = "8:#1102"
1275
-                            "Type" = "3:3"
1276
-                            "ContextData" = "8:"
1277
-                            "Attributes" = "3:0"
1278
-                            "Setting" = "3:1"
1279
-                            "Value" = "8:#1202"
1280
-                            "DefaultValue" = "8:#1202"
1281
-                            "UsePlugInResources" = "11:TRUE"
1282
-                            }
1283
-                            "Welcome"
1284
-                            {
1285
-                            "Name" = "8:Welcome"
1286
-                            "DisplayName" = "8:#1003"
1287
-                            "Description" = "8:#1103"
1288
-                            "Type" = "3:3"
1289
-                            "ContextData" = "8:"
1290
-                            "Attributes" = "3:0"
1291
-                            "Setting" = "3:1"
1292
-                            "Value" = "8:#1203"
1293
-                            "DefaultValue" = "8:#1203"
1294
-                            "UsePlugInResources" = "11:TRUE"
1295
-                            }
1296
-                        }
1297
-                    }
1298
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_9C1500A0B1E842FAAF8C8A594D11F539"
1299
-                    {
1300
-                    "Sequence" = "3:200"
1301
-                    "DisplayName" = "8:Installation Folder"
1302
-                    "UseDynamicProperties" = "11:TRUE"
1303
-                    "IsDependency" = "11:FALSE"
1304
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
1305
-                        "Properties"
1306
-                        {
1307
-                            "BannerBitmap"
1308
-                            {
1309
-                            "Name" = "8:BannerBitmap"
1310
-                            "DisplayName" = "8:#1001"
1311
-                            "Description" = "8:#1101"
1312
-                            "Type" = "3:8"
1313
-                            "ContextData" = "8:Bitmap"
1314
-                            "Attributes" = "3:4"
1315
-                            "Setting" = "3:1"
1316
-                            "UsePlugInResources" = "11:TRUE"
1317
-                            }
1318
-                            "InstallAllUsersVisible"
1319
-                            {
1320
-                            "Name" = "8:InstallAllUsersVisible"
1321
-                            "DisplayName" = "8:#1059"
1322
-                            "Description" = "8:#1159"
1323
-                            "Type" = "3:5"
1324
-                            "ContextData" = "8:1;True=1;False=0"
1325
-                            "Attributes" = "3:0"
1326
-                            "Setting" = "3:0"
1327
-                            "Value" = "3:1"
1328
-                            "DefaultValue" = "3:1"
1329
-                            "UsePlugInResources" = "11:TRUE"
1330
-                            }
1331
-                        }
1332
-                    }
1333
-                }
1334
-            }
1335
-            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_CAE0677542C74131B919AF34638D4C8E"
1336
-            {
1337
-            "Name" = "8:#1901"
1338
-            "Sequence" = "3:1"
1339
-            "Attributes" = "3:2"
1340
-                "Dialogs"
1341
-                {
1342
-                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B16180BA822A4F29BF1FD0ED6DBDC894"
1343
-                    {
1344
-                    "Sequence" = "3:100"
1345
-                    "DisplayName" = "8:Progress"
1346
-                    "UseDynamicProperties" = "11:TRUE"
1347
-                    "IsDependency" = "11:FALSE"
1348
-                    "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
1349
-                        "Properties"
1350
-                        {
1351
-                            "BannerBitmap"
1352
-                            {
1353
-                            "Name" = "8:BannerBitmap"
1354
-                            "DisplayName" = "8:#1001"
1355
-                            "Description" = "8:#1101"
1356
-                            "Type" = "3:8"
1357
-                            "ContextData" = "8:Bitmap"
1358
-                            "Attributes" = "3:4"
1359
-                            "Setting" = "3:1"
1360
-                            "UsePlugInResources" = "11:TRUE"
1361
-                            }
1362
-                            "ShowProgress"
1363
-                            {
1364
-                            "Name" = "8:ShowProgress"
1365
-                            "DisplayName" = "8:#1009"
1366
-                            "Description" = "8:#1109"
1367
-                            "Type" = "3:5"
1368
-                            "ContextData" = "8:1;True=1;False=0"
1369
-                            "Attributes" = "3:0"
1370
-                            "Setting" = "3:0"
1371
-                            "Value" = "3:1"
1372
-                            "DefaultValue" = "3:1"
1373
-                            "UsePlugInResources" = "11:TRUE"
1374
-                            }
1375
-                        }
1376
-                    }
1377
-                }
1378
-            }
1379
-        }
1380
-        "MergeModule"
1381
-        {
1382
-        }
1383
-        "ProjectOutput"
1384
-        {
1385
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_200E5A9B790A4626B1AC9E22CF7867FA"
1386
-            {
1387
-            "SourcePath" = "8:"
1388
-            "TargetName" = "8:"
1389
-            "Tag" = "8:"
1390
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1391
-            "Condition" = "8:"
1392
-            "Transitive" = "11:FALSE"
1393
-            "Vital" = "11:TRUE"
1394
-            "ReadOnly" = "11:FALSE"
1395
-            "Hidden" = "11:FALSE"
1396
-            "System" = "11:FALSE"
1397
-            "Permanent" = "11:FALSE"
1398
-            "SharedLegacy" = "11:FALSE"
1399
-            "PackageAs" = "3:1"
1400
-            "Register" = "3:1"
1401
-            "Exclude" = "11:FALSE"
1402
-            "IsDependency" = "11:FALSE"
1403
-            "IsolateTo" = "8:"
1404
-            "ProjectOutputGroupRegister" = "3:1"
1405
-            "OutputConfiguration" = "8:Release|Win32"
1406
-            "OutputGroupCanonicalName" = "8:Built"
1407
-            "OutputProjectGuid" = "8:{56424F95-3DE6-429D-8D80-7F57CCE9209C}"
1408
-            "ShowKeyOutput" = "11:TRUE"
1409
-                "ExcludeFilters"
1410
-                {
1411
-                }
1412
-            }
1413
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_387A42E360574480B5E9A670DA1D2080"
1414
-            {
1415
-            "SourcePath" = "8:"
1416
-            "TargetName" = "8:"
1417
-            "Tag" = "8:"
1418
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1419
-            "Condition" = "8:"
1420
-            "Transitive" = "11:FALSE"
1421
-            "Vital" = "11:TRUE"
1422
-            "ReadOnly" = "11:FALSE"
1423
-            "Hidden" = "11:FALSE"
1424
-            "System" = "11:FALSE"
1425
-            "Permanent" = "11:FALSE"
1426
-            "SharedLegacy" = "11:FALSE"
1427
-            "PackageAs" = "3:1"
1428
-            "Register" = "3:1"
1429
-            "Exclude" = "11:FALSE"
1430
-            "IsDependency" = "11:FALSE"
1431
-            "IsolateTo" = "8:"
1432
-            "ProjectOutputGroupRegister" = "3:1"
1433
-            "OutputConfiguration" = "8:Release|Win32"
1434
-            "OutputGroupCanonicalName" = "8:ContentFiles"
1435
-            "OutputProjectGuid" = "8:{5661EB2A-7AE6-4C1A-864B-FDDD32F3D45A}"
1436
-            "ShowKeyOutput" = "11:TRUE"
1437
-                "ExcludeFilters"
1438
-                {
1439
-                }
1440
-            }
1441
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_496BC429C8634F319EDC2B16CD2B65A7"
1442
-            {
1443
-            "SourcePath" = "8:"
1444
-            "TargetName" = "8:"
1445
-            "Tag" = "8:"
1446
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1447
-            "Condition" = "8:"
1448
-            "Transitive" = "11:FALSE"
1449
-            "Vital" = "11:TRUE"
1450
-            "ReadOnly" = "11:FALSE"
1451
-            "Hidden" = "11:FALSE"
1452
-            "System" = "11:FALSE"
1453
-            "Permanent" = "11:FALSE"
1454
-            "SharedLegacy" = "11:FALSE"
1455
-            "PackageAs" = "3:1"
1456
-            "Register" = "3:1"
1457
-            "Exclude" = "11:FALSE"
1458
-            "IsDependency" = "11:FALSE"
1459
-            "IsolateTo" = "8:"
1460
-            "ProjectOutputGroupRegister" = "3:1"
1461
-            "OutputConfiguration" = "8:Release|Win32"
1462
-            "OutputGroupCanonicalName" = "8:Built"
1463
-            "OutputProjectGuid" = "8:{2E93DF6C-3C8A-4768-9539-12FB67417224}"
1464
-            "ShowKeyOutput" = "11:TRUE"
1465
-                "ExcludeFilters"
1466
-                {
1467
-                }
1468
-            }
1469
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_63B247CBBFF64A7BAC8112788B7539CF"
1470
-            {
1471
-            "SourcePath" = "8:"
1472
-            "TargetName" = "8:"
1473
-            "Tag" = "8:"
1474
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1475
-            "Condition" = "8:"
1476
-            "Transitive" = "11:FALSE"
1477
-            "Vital" = "11:TRUE"
1478
-            "ReadOnly" = "11:FALSE"
1479
-            "Hidden" = "11:FALSE"
1480
-            "System" = "11:FALSE"
1481
-            "Permanent" = "11:FALSE"
1482
-            "SharedLegacy" = "11:FALSE"
1483
-            "PackageAs" = "3:1"
1484
-            "Register" = "3:1"
1485
-            "Exclude" = "11:FALSE"
1486
-            "IsDependency" = "11:FALSE"
1487
-            "IsolateTo" = "8:"
1488
-            "ProjectOutputGroupRegister" = "3:1"
1489
-            "OutputConfiguration" = "8:Release|Win32"
1490
-            "OutputGroupCanonicalName" = "8:Built"
1491
-            "OutputProjectGuid" = "8:{09D341E9-7372-46E9-B0D7-CAAF77984190}"
1492
-            "ShowKeyOutput" = "11:TRUE"
1493
-                "ExcludeFilters"
1494
-                {
1495
-                }
1496
-            }
1497
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_78107854CA534404A70107F59092D6E6"
1498
-            {
1499
-            "SourcePath" = "8:"
1500
-            "TargetName" = "8:"
1501
-            "Tag" = "8:"
1502
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1503
-            "Condition" = "8:"
1504
-            "Transitive" = "11:FALSE"
1505
-            "Vital" = "11:TRUE"
1506
-            "ReadOnly" = "11:FALSE"
1507
-            "Hidden" = "11:FALSE"
1508
-            "System" = "11:FALSE"
1509
-            "Permanent" = "11:FALSE"
1510
-            "SharedLegacy" = "11:FALSE"
1511
-            "PackageAs" = "3:1"
1512
-            "Register" = "3:1"
1513
-            "Exclude" = "11:FALSE"
1514
-            "IsDependency" = "11:FALSE"
1515
-            "IsolateTo" = "8:"
1516
-            "ProjectOutputGroupRegister" = "3:1"
1517
-            "OutputConfiguration" = "8:Release|Win32"
1518
-            "OutputGroupCanonicalName" = "8:Built"
1519
-            "OutputProjectGuid" = "8:{F0D57765-2E9C-4E55-8E1D-037C0CF00FD3}"
1520
-            "ShowKeyOutput" = "11:TRUE"
1521
-                "ExcludeFilters"
1522
-                {
1523
-                }
1524
-            }
1525
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_833453E67F9C47E69305BAFFABBFDAE6"
1526
-            {
1527
-            "SourcePath" = "8:"
1528
-            "TargetName" = "8:"
1529
-            "Tag" = "8:"
1530
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1531
-            "Condition" = "8:"
1532
-            "Transitive" = "11:FALSE"
1533
-            "Vital" = "11:TRUE"
1534
-            "ReadOnly" = "11:FALSE"
1535
-            "Hidden" = "11:FALSE"
1536
-            "System" = "11:FALSE"
1537
-            "Permanent" = "11:FALSE"
1538
-            "SharedLegacy" = "11:FALSE"
1539
-            "PackageAs" = "3:1"
1540
-            "Register" = "3:1"
1541
-            "Exclude" = "11:FALSE"
1542
-            "IsDependency" = "11:FALSE"
1543
-            "IsolateTo" = "8:"
1544
-            "ProjectOutputGroupRegister" = "3:1"
1545
-            "OutputConfiguration" = "8:Release|Win32"
1546
-            "OutputGroupCanonicalName" = "8:Built"
1547
-            "OutputProjectGuid" = "8:{3AE8051D-A188-4B11-95A4-14B8F0C290CB}"
1548
-            "ShowKeyOutput" = "11:TRUE"
1549
-                "ExcludeFilters"
1550
-                {
1551
-                }
1552
-            }
1553
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_847A29961A444AA58BEE1B1C58B417FC"
1554
-            {
1555
-            "SourcePath" = "8:"
1556
-            "TargetName" = "8:"
1557
-            "Tag" = "8:"
1558
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1559
-            "Condition" = "8:"
1560
-            "Transitive" = "11:FALSE"
1561
-            "Vital" = "11:TRUE"
1562
-            "ReadOnly" = "11:FALSE"
1563
-            "Hidden" = "11:FALSE"
1564
-            "System" = "11:FALSE"
1565
-            "Permanent" = "11:FALSE"
1566
-            "SharedLegacy" = "11:FALSE"
1567
-            "PackageAs" = "3:1"
1568
-            "Register" = "3:1"
1569
-            "Exclude" = "11:FALSE"
1570
-            "IsDependency" = "11:FALSE"
1571
-            "IsolateTo" = "8:"
1572
-            "ProjectOutputGroupRegister" = "3:1"
1573
-            "OutputConfiguration" = "8:Release|Win32"
1574
-            "OutputGroupCanonicalName" = "8:Built"
1575
-            "OutputProjectGuid" = "8:{094B13E4-321B-479B-919F-FB84A0F0DA1F}"
1576
-            "ShowKeyOutput" = "11:TRUE"
1577
-                "ExcludeFilters"
1578
-                {
1579
-                }
1580
-            }
1581
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_88289A3775B34A85BF03FC1738C769E1"
1582
-            {
1583
-            "SourcePath" = "8:"
1584
-            "TargetName" = "8:"
1585
-            "Tag" = "8:"
1586
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1587
-            "Condition" = "8:"
1588
-            "Transitive" = "11:FALSE"
1589
-            "Vital" = "11:TRUE"
1590
-            "ReadOnly" = "11:FALSE"
1591
-            "Hidden" = "11:FALSE"
1592
-            "System" = "11:FALSE"
1593
-            "Permanent" = "11:FALSE"
1594
-            "SharedLegacy" = "11:FALSE"
1595
-            "PackageAs" = "3:1"
1596
-            "Register" = "3:1"
1597
-            "Exclude" = "11:FALSE"
1598
-            "IsDependency" = "11:FALSE"
1599
-            "IsolateTo" = "8:"
1600
-            "ProjectOutputGroupRegister" = "3:1"
1601
-            "OutputConfiguration" = "8:Release|Win32"
1602
-            "OutputGroupCanonicalName" = "8:Built"
1603
-            "OutputProjectGuid" = "8:{B1406D09-59CE-4EEA-9F08-FECCF3A7A4A7}"
1604
-            "ShowKeyOutput" = "11:TRUE"
1605
-                "ExcludeFilters"
1606
-                {
1607
-                }
1608
-            }
1609
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8FA6BB4B32B54B209B94F7B7B75548A8"
1610
-            {
1611
-            "SourcePath" = "8:"
1612
-            "TargetName" = "8:"
1613
-            "Tag" = "8:"
1614
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1615
-            "Condition" = "8:"
1616
-            "Transitive" = "11:FALSE"
1617
-            "Vital" = "11:TRUE"
1618
-            "ReadOnly" = "11:FALSE"
1619
-            "Hidden" = "11:FALSE"
1620
-            "System" = "11:FALSE"
1621
-            "Permanent" = "11:FALSE"
1622
-            "SharedLegacy" = "11:FALSE"
1623
-            "PackageAs" = "3:1"
1624
-            "Register" = "3:1"
1625
-            "Exclude" = "11:FALSE"
1626
-            "IsDependency" = "11:FALSE"
1627
-            "IsolateTo" = "8:"
1628
-            "ProjectOutputGroupRegister" = "3:1"
1629
-            "OutputConfiguration" = "8:Release|Win32"
1630
-            "OutputGroupCanonicalName" = "8:Built"
1631
-            "OutputProjectGuid" = "8:{AA443662-4AED-4F50-95E4-9B5BB5429E9E}"
1632
-            "ShowKeyOutput" = "11:TRUE"
1633
-                "ExcludeFilters"
1634
-                {
1635
-                }
1636
-            }
1637
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9AA073D9857242A19E1099B7A1C08731"
1638
-            {
1639
-            "SourcePath" = "8:"
1640
-            "TargetName" = "8:"
1641
-            "Tag" = "8:"
1642
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1643
-            "Condition" = "8:"
1644
-            "Transitive" = "11:FALSE"
1645
-            "Vital" = "11:TRUE"
1646
-            "ReadOnly" = "11:FALSE"
1647
-            "Hidden" = "11:FALSE"
1648
-            "System" = "11:FALSE"
1649
-            "Permanent" = "11:FALSE"
1650
-            "SharedLegacy" = "11:FALSE"
1651
-            "PackageAs" = "3:1"
1652
-            "Register" = "3:1"
1653
-            "Exclude" = "11:FALSE"
1654
-            "IsDependency" = "11:FALSE"
1655
-            "IsolateTo" = "8:"
1656
-            "ProjectOutputGroupRegister" = "3:1"
1657
-            "OutputConfiguration" = "8:Release|Win32"
1658
-            "OutputGroupCanonicalName" = "8:Built"
1659
-            "OutputProjectGuid" = "8:{C4015FC8-0417-4D8E-8CF9-FDA1BF37A6FE}"
1660
-            "ShowKeyOutput" = "11:TRUE"
1661
-                "ExcludeFilters"
1662
-                {
1663
-                }
1664
-            }
1665
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A0594F88DE664D2AB23CB6FB2E2B68B5"
1666
-            {
1667
-            "SourcePath" = "8:"
1668
-            "TargetName" = "8:"
1669
-            "Tag" = "8:"
1670
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1671
-            "Condition" = "8:"
1672
-            "Transitive" = "11:FALSE"
1673
-            "Vital" = "11:TRUE"
1674
-            "ReadOnly" = "11:FALSE"
1675
-            "Hidden" = "11:FALSE"
1676
-            "System" = "11:FALSE"
1677
-            "Permanent" = "11:FALSE"
1678
-            "SharedLegacy" = "11:FALSE"
1679
-            "PackageAs" = "3:1"
1680
-            "Register" = "3:1"
1681
-            "Exclude" = "11:FALSE"
1682
-            "IsDependency" = "11:FALSE"
1683
-            "IsolateTo" = "8:"
1684
-            "ProjectOutputGroupRegister" = "3:1"
1685
-            "OutputConfiguration" = "8:Release|Win32"
1686
-            "OutputGroupCanonicalName" = "8:Built"
1687
-            "OutputProjectGuid" = "8:{C4015FC8-0417-4D8E-8CF9-FDA1BF37A6FE}"
1688
-            "ShowKeyOutput" = "11:TRUE"
1689
-                "ExcludeFilters"
1690
-                {
1691
-                }
1692
-            }
1693
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A083598862C34CD49DB3AE5C5990C447"
1694
-            {
1695
-            "SourcePath" = "8:"
1696
-            "TargetName" = "8:"
1697
-            "Tag" = "8:"
1698
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1699
-            "Condition" = "8:"
1700
-            "Transitive" = "11:FALSE"
1701
-            "Vital" = "11:TRUE"
1702
-            "ReadOnly" = "11:FALSE"
1703
-            "Hidden" = "11:FALSE"
1704
-            "System" = "11:FALSE"
1705
-            "Permanent" = "11:FALSE"
1706
-            "SharedLegacy" = "11:FALSE"
1707
-            "PackageAs" = "3:1"
1708
-            "Register" = "3:1"
1709
-            "Exclude" = "11:FALSE"
1710
-            "IsDependency" = "11:FALSE"
1711
-            "IsolateTo" = "8:"
1712
-            "ProjectOutputGroupRegister" = "3:1"
1713
-            "OutputConfiguration" = "8:Release|Win32"
1714
-            "OutputGroupCanonicalName" = "8:Built"
1715
-            "OutputProjectGuid" = "8:{390D68E1-5228-40A8-9BE4-DD19026001B7}"
1716
-            "ShowKeyOutput" = "11:TRUE"
1717
-                "ExcludeFilters"
1718
-                {
1719
-                }
1720
-            }
1721
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_AEF6886E5C354138A30118E682E074D7"
1722
-            {
1723
-            "SourcePath" = "8:"
1724
-            "TargetName" = "8:"
1725
-            "Tag" = "8:"
1726
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1727
-            "Condition" = "8:"
1728
-            "Transitive" = "11:FALSE"
1729
-            "Vital" = "11:TRUE"
1730
-            "ReadOnly" = "11:FALSE"
1731
-            "Hidden" = "11:FALSE"
1732
-            "System" = "11:FALSE"
1733
-            "Permanent" = "11:FALSE"
1734
-            "SharedLegacy" = "11:FALSE"
1735
-            "PackageAs" = "3:1"
1736
-            "Register" = "3:1"
1737
-            "Exclude" = "11:FALSE"
1738
-            "IsDependency" = "11:FALSE"
1739
-            "IsolateTo" = "8:"
1740
-            "ProjectOutputGroupRegister" = "3:1"
1741
-            "OutputConfiguration" = "8:Release|Win32"
1742
-            "OutputGroupCanonicalName" = "8:Built"
1743
-            "OutputProjectGuid" = "8:{05957B93-39F9-45EC-87BD-86B7AF571557}"
1744
-            "ShowKeyOutput" = "11:TRUE"
1745
-                "ExcludeFilters"
1746
-                {
1747
-                }
1748
-            }
1749
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D36DF193A9BE41309EDD22935298DE5D"
1750
-            {
1751
-            "SourcePath" = "8:"
1752
-            "TargetName" = "8:"
1753
-            "Tag" = "8:"
1754
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1755
-            "Condition" = "8:"
1756
-            "Transitive" = "11:FALSE"
1757
-            "Vital" = "11:TRUE"
1758
-            "ReadOnly" = "11:FALSE"
1759
-            "Hidden" = "11:FALSE"
1760
-            "System" = "11:FALSE"
1761
-            "Permanent" = "11:FALSE"
1762
-            "SharedLegacy" = "11:FALSE"
1763
-            "PackageAs" = "3:1"
1764
-            "Register" = "3:1"
1765
-            "Exclude" = "11:FALSE"
1766
-            "IsDependency" = "11:FALSE"
1767
-            "IsolateTo" = "8:"
1768
-            "ProjectOutputGroupRegister" = "3:1"
1769
-            "OutputConfiguration" = "8:Release|Win32"
1770
-            "OutputGroupCanonicalName" = "8:Built"
1771
-            "OutputProjectGuid" = "8:{128DA45B-0628-42BB-BA90-8F836CA7FF25}"
1772
-            "ShowKeyOutput" = "11:TRUE"
1773
-                "ExcludeFilters"
1774
-                {
1775
-                }
1776
-            }
1777
-            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DD33F58659DB4141BC4B1C1E541A2273"
1778
-            {
1779
-            "SourcePath" = "8:"
1780
-            "TargetName" = "8:"
1781
-            "Tag" = "8:"
1782
-            "Folder" = "8:_008B7C8409804955AA838A24FDF47F97"
1783
-            "Condition" = "8:"
1784
-            "Transitive" = "11:FALSE"
1785
-            "Vital" = "11:TRUE"
1786
-            "ReadOnly" = "11:FALSE"
1787
-            "Hidden" = "11:FALSE"
1788
-            "System" = "11:FALSE"
1789
-            "Permanent" = "11:FALSE"
1790
-            "SharedLegacy" = "11:FALSE"
1791
-            "PackageAs" = "3:1"
1792
-            "Register" = "3:1"
1793
-            "Exclude" = "11:FALSE"
1794
-            "IsDependency" = "11:FALSE"
1795
-            "IsolateTo" = "8:"
1796
-            "ProjectOutputGroupRegister" = "3:1"
1797
-            "OutputConfiguration" = "8:Release|Win32"
1798
-            "OutputGroupCanonicalName" = "8:Built"
1799
-            "OutputProjectGuid" = "8:{30BC968B-C4F7-4598-A672-AC69375C9155}"
1800
-            "ShowKeyOutput" = "11:TRUE"
1801
-                "ExcludeFilters"
1802
-                {
1803
-                }
1804
-            }
1805
-        }
1806
-    }
1807
-}
1808 1
deleted file mode 100644
1809 2
Binary files a/win32/UpgradeLog.htm and /dev/null differ
1810 3
deleted file mode 100644
1811 4
Binary files a/win32/UpgradeLog2.htm and /dev/null differ
1812 5
new file mode 100644
1813 6
Binary files /dev/null and b/win32/demon.bmp differ
1814 7
new file mode 100644
1815 8
Binary files /dev/null and b/win32/talos.bmp differ