IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Outils Delphi Discussion :

[Inno Setup] Message Could no call proc Runtime Error (at 17:1404)


Sujet :

Outils Delphi

  1. #1
    Membre habitué
    Profil pro
    Inscrit en
    Avril 2003
    Messages
    439
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2003
    Messages : 439
    Points : 161
    Points
    161
    Par défaut [Inno Setup] Message Could no call proc Runtime Error (at 17:1404)
    Bonjour,

    J'ai envoyé cet installeur (script joint) à mes utilisateurs (40 environ), mais seulement certains d'entre eux (4) ont ce message.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    [Setup]
    AppName=Concorde Performance System
    AppVersion=3.0.0.192
    VersionInfoProductVersion=3.0.0.192
    DefaultDirName={pf}\Concorde Performance System
    DefaultGroupName=Concorde Performance System
    SourceDir=D:\Projet Delphi\CPS TEST
    LicenseFile =EULA.rtf
    AppCopyright=Copyright© 2011-2016 Pierre Chassang
    ;A voir image
     
     
    [Types]
    Name: fullinstall ; Description: Full installation
     
     
    [Tasks]
    Name: desktopicon; Description: Create a &desktop icon
    Name: quicklaunchicon; Description: Create a &Quick Launch icon
     
     
    [Dirs]
    Name: {app}\Data; Attribs: hidden
    Name: {app}\Images
    Name: {app}\ConcordeDesCalc
    Name: {app}\Documentation
    Name: {app}\WX
    Name: {app}\SavedFlight
     
    [Files]
    ;****************************** EXE's ***********************************************
    Source: D:\Projet Delphi\CPS TEST\CPS.EXE; DestDir: {app}; 
    ;FS9
    Source: D:\Projet Delphi\CPS TEST\CFM.EXE; DestDir: {code:FSPath9}; Check: IsSim9Installed; 
    Source: D:\Projet Delphi\CPS TEST\CDC.EXE; DestDir: {code:FSPath9}; Check: IsSim9Installed;
    ;FSX 
    Source: D:\Projet Delphi\CPS TEST\CFM.EXE; DestDir: {code:FSPathX}; Check: IsSimXInstalled;
    Source: D:\Projet Delphi\CPS TEST\CDC.EXE; DestDir: {code:FSPathX}; Check: IsSimXInstalled;
    ;P3D
    Source: D:\Projet Delphi\CPS TEST\CFM.EXE; DestDir: {code:FSPathP3D}; Check: IsSimP3DInstalled;
    Source: D:\Projet Delphi\CPS TEST\CDC.EXE; DestDir: {code:FSPathP3D}; Check: IsSimP3DInstalled;
    ;****************************** DLL *************************************************
    ;FS9
    Source: D:\Projet Delphi\CPS TEST\CPS.dll; DestDir:{code:FSPath9}\Modules; Check: IsSim9Installed;
    ;FSX
    Source: D:\Projet Delphi\CPS TEST\CPSModulesStart.dll; DestDir:{code:FSPathX}; Check: IsSimXInstalled; 
    ;P3D
    Source: D:\Projet Delphi\CPS TEST\CPSModulesStart.dll; DestDir:{code:FSPathP3D}; Check: IsSimP3DInstalled;
    ;****************************** DATABASE ********************************************
    Source: D:\Projet Delphi\CPS TEST\Database.tdb; DestDir: {app}
    ;****************************** EULA ************************************************
    Source: D:\Projet Delphi\CPS TEST\EULA.rtf; DestDir: {app}
    ;****************************** DATA ************************************************
    Source: D:\Projet Delphi\CPS TEST\Data\ALTERNATE1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\ALTERNATE2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\ALTERNATE3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\ALTERNATEX2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\ALTERNATEY1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\ALTERNATEY3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\BLST9.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\BLST11.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\COARF1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\COARF2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\COARF3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\COARF4.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\COART1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\COART2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\COART3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CODEF1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CODEF2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CODEF3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CODEF4.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CODET1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CODET2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CODET3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\CORINCLB.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\D380+10ISA.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\D380-10ISA.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\DAP.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\DELTAV.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\DISTRIBUTION.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\FuelBias.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\HOLD.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\HOLD1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\HOLD2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\INDEXFUEL.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\LatestVersion.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\LDGLONGA.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\LDGLONGM.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\LDGV.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\LINHLD1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\LINHLD2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\LINHLD3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\MAFCS.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\P7FT.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\SubVp50-600.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\SubVp600-1700.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\SubVp1700-2200.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\SubVp2200-2500.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TrFAtt53.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP600S1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP600S2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP600S3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP1700S1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP1700S2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP1700S3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP1700S4.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2200S1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2200S2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2200S3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2200S4.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2500S1.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2500S2.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2500S3.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP2500S4.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP17001.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP17002.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP17003.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP27001.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP27002.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP27003.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP40001.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP40002.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\TRIP40003.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\VpSup400-1700.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\VpSup1700-2700.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\VpSup2700-3700.txt; DestDir: {app}\Data
    Source: D:\Projet Delphi\CPS TEST\Data\VZRCVMIN.txt; DestDir: {app}\Data
    ;****************************** WX **************************************************
    Source: D:\Projet Delphi\CPS TEST\WX\csv.bat;         DestDir: {app}\WX
    Source: D:\Projet Delphi\CPS TEST\WX\degrib.exe;      DestDir: {app}\WX
    ;****************************** IMAGES **********************************************
    Source: D:\Projet Delphi\CPS TEST\Images\Arrow.png; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Balance.bmp; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\b-w_world.png; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Chart1.bmp; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\CleAMolette.ico; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\CPT.PNG; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Export.ico; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\formA.png; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\formD2.jpg; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\FORME.PNG; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\FORME-1.bmp; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Map.bmp; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\NoChart.pdf; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Fuel.png; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Tanks.PNG; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Zoom+.ico; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\Zoom-.ico; DestDir: {app}\Images
    Source: D:\Projet Delphi\CPS TEST\Images\WX.ico; DestDir: {app}\Images
    ;****************************** DOCUMENTATION ***************************************
    Source: D:\Projet Delphi\CPS TEST\Documentation\Change Log.txt; DestDir: {app}\Documentation
    Source: D:\Projet Delphi\CPS TEST\Documentation\CPS 3.0 User Manual.pdf; DestDir: {app}\Documentation
    Source: D:\Projet Delphi\CPS TEST\Documentation\CFM 3.0 User Manual.pdf; DestDir: {app}\Documentation
    Source: D:\Projet Delphi\CPS TEST\Documentation\CDC 3.0 User Manual.pdf; DestDir: {app}\Documentation
    ;****************************** AUTOSAVE CLEANER *************************************
    Source: D:\Projet Delphi\CPS TEST\AutoSaveCleaner\AutoSaveCleaner.exe; DestDir: {app}\AutoSaveCleaner
    Source: D:\Projet Delphi\CPS TEST\AutoSaveCleaner\AutoSaveCleaner.txt; DestDir: {app}\AutoSaveCleaner
    Source: D:\Projet Delphi\CPS TEST\AutoSaveCleaner\Data.dat; DestDir: {app}\AutoSaveCleaner
     
    [Icons]                                  
    Name: {commondesktop}\Concorde Performance System; Filename: {app}\CPS.EXE; WorkingDir: {app}; IconFilename: {app}\CPS.EXE
    Name: {group}\Concorde Performance System; Filename: {app}\CPS.EXE; WorkingDir: {app}; IconFilename: {app}\CPS.EXE
    Name: {group}\Change Log.txt; Filename: {app}\Documentation\Change Log.txt
    Name: {group}\ReadMe.txt; Filename: {app}\Documentation\ReadMe.txt
    Name: {group}\AutoSaveCleaner; Filename: {app}\AutoSaveCleaner\AutoSaveCleaner.exe; WorkingDir: {app}\AutoSaveCleaner; IconFilename: {app}\AutoSaveCleaner\AutoSaveCleaner.exe
     
    [CustomMessages]
    CreateDesktopIcon=Create a &desktop icon
     
    [Registry]
    Root: HKCU; Subkey: "Software\CPS-Pierre Chassang";Flags: uninsdeletekeyifempty
    Root: HKCU; Subkey: "Software\CPS-Pierre Chassang\CPS"; ValueType: String; ValueName: "InstallPath"; ValueData: "{app}"; Flags: uninsdeletekey
    Root: HKCU; Subkey: "software\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION\CPS.exe" ; Flags: deletekey
     
    [Run]
    Filename: {app}\CPS.EXE; Description: Launch application; Flags: postinstall nowait skipifsilent unchecked
     
    [UninstallDelete]
    Type: files; Name: {userappdata}\Microsoft\FSX\dll.xml; Check: IsSimXInstalled;
    Type: files; Name: {userappdata}\Lockheed Martin\Prepar3D v3\dll.xml; Check: IsSimP3DInstalled;
     
     
    section Code * pour éviter la balise
    var
       PathSim, Path : String;
     
       function IsSim9Installed(): boolean;
       begin
         Result:= RegKeyExists(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\9.0\');
         Result:= RegKeyExists(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\9.1\');
       end;
     
       function IsSimXInstalled(): boolean;
       begin
         Result:= RegKeyExists(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\10.0');
       end;
     
       function IsSimP3DInstalled(): boolean;
       begin
         Result:= RegKeyExists(HKEY_CURRENT_USER, 'Software\Lockheed Martin\Prepar3D v3');
       end;
     
      function FSPath9(param: string): String;
      var 
         File : TstringList;
      begin
        if (RegQueryStringValue(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\9.0\', 'AppPath', PathSim))
        or (RegQueryStringValue(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\9.1\', 'AppPath', PathSim)) then
        begin
          Result:= PathSim;
          Path := PathSim + '\Modules\CPS.ini';
          File := TStringList.Create;
          File.Insert(0, '[Main]');
          File.Insert(1, 'Menu0=CPS');
          File.Insert(2, '[CPS]');
          File.Insert(3, 'Caption=&CPS');
          File.Insert(4, 'Menu0=FUEL_MANAGEMENT_SHEET');
          File.Insert(5, 'Menu1=DESCENT_CALCULATOR');
          File.Insert(6, '[FUEL_MANAGEMENT_SHEET]');
          File.Insert(7, 'Open=' + ExpandConstant('{app}')+'\CFM.exe');
          File.Insert(8, '[DESCENT_CALCULATOR]');
          File.Insert(9, 'Open=' + ExpandConstant('{app}')+'\CDC.exe');
          File.SaveToFile(Path);
          File.Free; 
        end
        else
        begin
          Result:= '';
        end;
     
      end;
     
      function FSPathX(param: string): String;
      var 
         File : TstringList;
         i: Integer;
      begin
        if RegQueryStringValue(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\10.0', 'AppPath',PathSim) then
        begin
          Result:= PathSim; 
          Path:= ExpandConstant('{userappdata}')+'\Microsoft\FSX\' + 'dll.xml';
          File:= TstringList.Create;
          File.LoadFromFile(Path);
          for i := 0 to File.Count-1 do
          begin
            if pos('<Name>CPS</Name>',File[i]) <> 0  then
            begin
              Break;
            end
            else if i = File.Count-1 then
            begin  
              File.SaveToFile(Path + ' before_CPS.xml');
              File.Insert(6, '<Launch.Addon>');
              File.Insert(7, '  <Name>CPS</Name>');
              File.Insert(8, '  <Disabled>False</Disabled>');
              File.Insert(9, '  <ManualLoad>False</ManualLoad>');
              File.Insert(10, '  <Path>CPSModulesStart.dll</Path>');
              File.Insert(11, '</Launch.Addon>');
              File.SaveToFile(Path);
              break;       
            end;
          end;
        end
        else
        begin
          Result:= '';
        end;
        File.Free; 
      end;
     
      function FSPathP3D(param: string): String;
      var 
         File : TstringList;
         i:Integer;
      begin
        if RegQueryStringValue(HKEY_CURRENT_USER, 'Software\Lockheed Martin\Prepar3D v3', 'AppPath',PathSim) then
        begin
          Result:= PathSim;
          Path:= ExpandConstant('{userappdata}')+'\Lockheed Martin\Prepar3D v3\' + 'dll.xml';
          File:= TstringList.Create;
          File.LoadFromFile(Path);
          for i := 0 to File.Count-1 do
          begin
            if pos('<Name>CPS</Name>',File[i]) <> 0  then
            begin
              Break;
            end
            else if i = File.Count-1 then
            begin  
              File.SaveToFile(Path + ' before_CPS.xml');
              File.Insert(6,'  <Launch.Addon>');
              File.Insert(7,'    <Name>CPS</Name>');
              File.Insert(8,'    <Disabled>False</Disabled>');
              File.Insert(9,'    <ManualLoad>False</ManualLoad>');
              File.Insert(10,'    <Path>CPSModulesStart.dll</Path>');
              File.Insert(11,'  </Launch.Addon>');
              File.SaveToFile(Path);
              Break;  
            end;
          end;
        end
        else
        begin
          Result:= ''; 
        end;
        File.Free;   
      end;
     
      procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
      var
      OldFile: string;
      begin
        case CurUninstallStep of
          usPostUninstall:
        begin
          OldFile := ExpandConstant('{userappdata}{')+'\Microsoft\FSX\' + 'dll.xml before_CPS.xml';
          if FileExists(OldFile) then
            RenameFile(OldFile, ExpandConstant('{userappdata}{')+'\Microsoft\FSX\' + 'dll.xml');
          OldFile := ExpandConstant('{userappdata}{')+'\Lockheed Martin\Prepar3D v3\' + 'dll.xml before_CPS.xml';
          if FileExists(OldFile) then
            RenameFile(OldFile, ExpandConstant('{userappdata}{')+'\Lockheed Martin\Prepar3D v3\' + 'dll.xml');
        end;
      end;
    end;
    Quelle peut en être l'origine?

    Merci de votre aide
    Cordialement
    Pierre

  2. #2
    Rédacteur/Modérateur
    Avatar de Andnotor
    Inscrit en
    Septembre 2008
    Messages
    5 683
    Détails du profil
    Informations personnelles :
    Localisation : Autre

    Informations forums :
    Inscription : Septembre 2008
    Messages : 5 683
    Points : 13 092
    Points
    13 092
    Par défaut
    Ne serait-ce que savoir quelle version du simulateur est installée pourrait aider

    Si c'est la version 9.0, le test IsSim9Installed renverra faux , CPS.dll ne sera pas copiée et on peut supposer que CPS.exe n’apprécie guère.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    function IsSim9Installed(): boolean;
    begin
      Result:= RegKeyExists(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\9.0\') or
               RegKeyExists(HKEY_CURRENT_USER, 'Software\Microsoft\Microsoft Games\Flight Simulator\9.1\');
    end;
    Sinon, demande à tes utilisateurs de générer un log par /LOG="filename".

  3. #3
    Membre habitué
    Profil pro
    Inscrit en
    Avril 2003
    Messages
    439
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2003
    Messages : 439
    Points : 161
    Points
    161
    Par défaut
    Merci Andnotor,

    Je vais leur demander de faire un log car j'ai, depuis hier, modifié le code pour avoir un test pour 9.0 et un pour 9.1.
    De plus, CPS.dll n'est pas utilisée par CPS.exe, mais par FS9 ou FS9.1 pour générer des menus supplémentaires.

    Je reviendrai rendre compte.
    Cordialement
    Pierre

  4. #4
    Membre habitué
    Profil pro
    Inscrit en
    Avril 2003
    Messages
    439
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2003
    Messages : 439
    Points : 161
    Points
    161
    Par défaut
    Bonjour,

    L'un des utilisateurs ayant le problème m’envoie le log généré.
    Je ne vois pas de piste de solution et vous?
    2016-11-03 23:51:17.495 Log opened. (Time zone: UTC+08:00)
    2016-11-03 23:51:17.495 Setup version: Inno Setup version 5.5.9 (a)
    2016-11-03 23:51:17.495 Original Setup EXE: c:\Users\steve\setup.exe
    2016-11-03 23:51:17.495 Setup command line: /SL5="$270628,39331776,57856,c:\Users\steve\setup.exe" /LOG="CPS.log"
    2016-11-03 23:51:17.495 Windows version: 10.0.14393 (NT platform: Yes)
    2016-11-03 23:51:17.495 64-bit Windows: Yes
    2016-11-03 23:51:17.495 Processor architecture: x64
    2016-11-03 23:51:17.495 User privileges: Administrative
    2016-11-03 23:51:17.496 64-bit install mode: No
    2016-11-03 23:51:17.497 Created temporary directory: C:\Users\steve\AppData\Local\Temp\is-7FC7M.tmp
    2016-11-03 23:51:27.566 Exception message:
    2016-11-03 23:51:27.567 Message box (OK):
    Runtime Error (at 17:1404):

    Could not call proc.
    2016-11-03 23:51:30.925 User chose OK.
    2016-11-03 23:51:32.771 Message box (Yes/No):
    Setup is not complete. If you exit now, the program will not be installed.

    You may run Setup again at another time to complete the installation.

    Exit Setup?
    2016-11-03 23:51:34.534 User chose Yes.
    2016-11-03 23:51:34.534 Deinitializing Setup.
    2016-11-03 23:51:34.539 Log closed.
    Merci de votre aide
    Cordialement
    Pierre

  5. #5
    Membre habitué
    Profil pro
    Inscrit en
    Avril 2003
    Messages
    439
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2003
    Messages : 439
    Points : 161
    Points
    161
    Par défaut
    Bonjour,

    Voici le log d'un autre utilisateur différent du précédent mais situé au même endroit au début du log puis d'autre erreurs qui, je pense sont dues à l'utilisation d'une version de simulateur non prévue dans l'installation.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    2016-11-03 17:25:17.529   Log opened. (Time zone: UTC+00:00)
    2016-11-03 17:25:17.529   Setup version: Inno Setup version 5.5.9 (a)
    2016-11-03 17:25:17.529   Original Setup EXE: C:\Users\dave\mysetup.exe
    2016-11-03 17:25:17.529   Setup command line: /SL5="$50598,35004480,57856,C:\Users\dave\mysetup.exe" /SPAWNWND=$701FA /NOTIFYWND=$2703A6 /LOG=CPS.log"
    2016-11-03 17:25:17.529   Windows version: 10.0.14393  (NT platform: Yes)
    2016-11-03 17:25:17.529   64-bit Windows: Yes
    2016-11-03 17:25:17.529   Processor architecture: x64
    2016-11-03 17:25:17.529   User privileges: Administrative
    2016-11-03 17:25:17.545   64-bit install mode: No
    2016-11-03 17:25:17.545   Created temporary directory: C:\Users\dave\AppData\Local\Temp\is-82FDO.tmp
    2016-11-03 17:25:24.076   Exception message:
    2016-11-03 17:25:24.076   Message box (OK):
                              Runtime Error (at 17:1404):
     
                              Could not call proc.
    2016-11-03 17:25:25.497   User chose OK.
    2016-11-03 17:25:26.651   Starting the installation process.
    2016-11-03 17:25:26.667   Directory for uninstall files: C:\Program Files (x86)\Concorde Performance System
    2016-11-03 17:25:26.667   Will append to existing uninstall log: C:\Program Files (x86)\Concorde Performance System\unins000.dat
    2016-11-03 17:25:26.667   -- File entry --
    2016-11-03 17:25:26.667   Dest filename: C:\Program Files (x86)\Concorde Performance System\unins000.exe
    2016-11-03 17:25:26.667   Time stamp of our file: 2016-11-03 17:25:17.413
    2016-11-03 17:25:26.667   Dest file exists.
    2016-11-03 17:25:26.667   Time stamp of existing file: 2016-11-03 17:13:48.357
    2016-11-03 17:25:26.667   Version of our file: 51.52.0.0
    2016-11-03 17:25:26.714   Version of existing file: 51.52.0.0
    2016-11-03 17:25:26.714   Installing the file.
    2016-11-03 17:25:26.714   Uninstaller requires administrator: Yes
    2016-11-03 17:25:26.714   Leaving temporary file in place for now.
    2016-11-03 17:25:26.714   -- File entry --
    2016-11-03 17:25:26.714   Dest filename: C:\Program Files (x86)\Concorde Performance System\CPS.EXE
    2016-11-03 17:25:26.714   Time stamp of our file: 2016-11-01 15:07:00.000
    2016-11-03 17:25:26.714   Dest file exists.
    2016-11-03 17:25:26.714   Time stamp of existing file: 2016-11-01 15:07:00.000
    2016-11-03 17:25:26.714   Version of our file: 3.0.0.192
    2016-11-03 17:25:26.714   Version of existing file: 3.0.0.192
    2016-11-03 17:25:26.714   Same version. Skipping.
    2016-11-03 17:25:26.714   -- File entry --
    2016-11-03 17:25:26.714   Dest filename: D:\Steam\steamapps\common\FSX\CFM.EXE
    2016-11-03 17:25:26.714   Time stamp of our file: 2016-10-13 17:10:10.000
    2016-11-03 17:25:26.714   Dest file exists.
    2016-11-03 17:25:26.714   Time stamp of existing file: 2016-10-13 17:10:10.000
    2016-11-03 17:25:26.714   Version of our file: 3.0.0.1270
    2016-11-03 17:25:26.714   Version of existing file: 3.0.0.1270
    2016-11-03 17:25:26.714   Same version. Skipping.
    2016-11-03 17:25:26.714   -- File entry --
    2016-11-03 17:25:26.714   Dest filename: D:\Steam\steamapps\common\FSX\CDC.EXE
    2016-11-03 17:25:26.714   Time stamp of our file: 2016-10-19 16:26:28.000
    2016-11-03 17:25:26.714   Dest file exists.
    2016-11-03 17:25:26.714   Time stamp of existing file: 2016-10-19 16:26:28.000
    2016-11-03 17:25:26.714   Version of our file: 3.0.0.2714
    2016-11-03 17:25:26.714   Version of existing file: 3.0.0.2714
    2016-11-03 17:25:26.714   Same version. Skipping.
    2016-11-03 17:25:26.714   -- File entry --
    2016-11-03 17:25:26.714   Message box (Abort/Retry/Ignore):
     
     
                              Runtime Error (at 17:1404):
     
                              Could not call proc.
     
                              Click Retry to try again, Ignore to skip this file (not recommended), or Abort to cancel installation.
    2016-11-03 17:25:28.161   User chose Ignore.
    2016-11-03 17:25:28.162   -- File entry --
    2016-11-03 17:25:28.162   Message box (Abort/Retry/Ignore):
     
     
                              Runtime Error (at 17:1404):
     
                              Could not call proc.
     
                              Click Retry to try again, Ignore to skip this file (not recommended), or Abort to cancel installation.
    2016-11-03 17:25:28.953   User chose Ignore.
    2016-11-03 17:25:28.954   -- File entry --
    2016-11-03 17:25:28.954   Dest filename: D:\Steam\steamapps\common\FSX\CPSModulesStart.dll
    2016-11-03 17:25:28.954   Time stamp of our file: 2015-08-23 08:52:22.000
    2016-11-03 17:25:28.954   Dest file exists.
    2016-11-03 17:25:28.954   Time stamp of existing file: 2015-08-23 08:52:22.000
    2016-11-03 17:25:28.954   Version of our file: (none)
    2016-11-03 17:25:28.983   Version of existing file: (none)
    2016-11-03 17:25:28.983   Installing the file.
    2016-11-03 17:25:29.000   Successfully installed the file.
    2016-11-03 17:25:29.000   -- File entry --
    2016-11-03 17:25:29.000   Message box (Abort/Retry/Ignore):
     
     
                              Runtime Error (at 17:1404):
     
                              Could not call proc.
     
                              Click Retry to try again, Ignore to skip this file (not recommended), or Abort to cancel installation.
    2016-11-03 17:25:29.953   User chose Ignore.
    2016-11-03 17:25:29.953   -- File entry --
    2016-11-03 17:25:29.954   Dest filename: C:\Program Files (x86)\Concorde Performance System\Database.tdb
    2016-11-03 17:25:29.954   Time stamp of our file: 2014-06-23 11:57:20.000
    2016-11-03 17:25:29.954   Dest file exists.
    2016-11-03 17:25:29.954   Time stamp of existing file: 2014-06-23 11:57:20.000
    2016-11-03 17:25:29.954   Version of our file: (none)
    2016-11-03 17:25:29.955   Version of existing file: (none)
    2016-11-03 17:25:29.955   Installing the file.
    2016-11-03 17:25:30.012   Successfully installed the file.
    2016-11-03 17:25:30.012   -- File entry --
    2016-11-03 17:25:30.013   Dest filename: C:\Program Files (x86)\Concorde Performance System\EULA.rtf
    2016-11-03 17:25:30.013   Time stamp of our file: 2016-10-12 16:51:42.000
    2016-11-03 17:25:30.013   Dest file exists.
    2016-11-03 17:25:30.013   Time stamp of existing file: 2016-10-12 16:51:42.000
    2016-11-03 17:25:30.013   Version of our file: (none)
    2016-11-03 17:25:30.026   Version of existing file: (none)
    2016-11-03 17:25:30.026   Installing the file.
    2016-11-03 17:25:30.028   Successfully installed the file.
    2016-11-03 17:25:30.028   -- File entry --
    2016-11-03 17:25:30.028   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\ALTERNATE1.txt
    2016-11-03 17:25:30.028   Time stamp of our file: 2014-08-04 08:11:16.000
    2016-11-03 17:25:30.028   Dest file exists.
    2016-11-03 17:25:30.028   Time stamp of existing file: 2014-08-04 08:11:16.000
    2016-11-03 17:25:30.028   Version of our file: (none)
    2016-11-03 17:25:30.029   Version of existing file: (none)
    2016-11-03 17:25:30.029   Installing the file.
    2016-11-03 17:25:30.030   Successfully installed the file.
    2016-11-03 17:25:30.030   -- File entry --
    2016-11-03 17:25:30.031   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\ALTERNATE2.txt
    2016-11-03 17:25:30.031   Time stamp of our file: 2014-08-04 08:19:42.000
    2016-11-03 17:25:30.031   Dest file exists.
    2016-11-03 17:25:30.031   Time stamp of existing file: 2014-08-04 08:19:42.000
    2016-11-03 17:25:30.031   Version of our file: (none)
    2016-11-03 17:25:30.032   Version of existing file: (none)
    2016-11-03 17:25:30.032   Installing the file.
    2016-11-03 17:25:30.033   Successfully installed the file.
    2016-11-03 17:25:30.033   -- File entry --
    2016-11-03 17:25:30.033   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\ALTERNATE3.txt
    2016-11-03 17:25:30.033   Time stamp of our file: 2012-12-14 10:28:16.000
    2016-11-03 17:25:30.033   Dest file exists.
    2016-11-03 17:25:30.033   Time stamp of existing file: 2012-12-14 10:28:16.000
    2016-11-03 17:25:30.033   Version of our file: (none)
    2016-11-03 17:25:30.034   Version of existing file: (none)
    2016-11-03 17:25:30.034   Installing the file.
    2016-11-03 17:25:30.035   Successfully installed the file.
    2016-11-03 17:25:30.035   -- File entry --
    2016-11-03 17:25:30.035   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\ALTERNATEX2.txt
    2016-11-03 17:25:30.035   Time stamp of our file: 2012-12-15 08:40:06.000
    2016-11-03 17:25:30.035   Dest file exists.
    2016-11-03 17:25:30.035   Time stamp of existing file: 2012-12-15 08:40:06.000
    2016-11-03 17:25:30.035   Version of our file: (none)
    2016-11-03 17:25:30.036   Version of existing file: (none)
    2016-11-03 17:25:30.036   Installing the file.
    2016-11-03 17:25:30.037   Successfully installed the file.
    2016-11-03 17:25:30.037   -- File entry --
    2016-11-03 17:25:30.037   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\ALTERNATEY1.txt
    2016-11-03 17:25:30.038   Time stamp of our file: 2012-12-15 08:38:30.000
    2016-11-03 17:25:30.038   Dest file exists.
    2016-11-03 17:25:30.038   Time stamp of existing file: 2012-12-15 08:38:30.000
    2016-11-03 17:25:30.038   Version of our file: (none)
    2016-11-03 17:25:30.038   Version of existing file: (none)
    2016-11-03 17:25:30.038   Installing the file.
    2016-11-03 17:25:30.039   Successfully installed the file.
    2016-11-03 17:25:30.039   -- File entry --
    2016-11-03 17:25:30.040   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\ALTERNATEY3.txt
    2016-11-03 17:25:30.040   Time stamp of our file: 2012-12-15 11:23:44.000
    2016-11-03 17:25:30.040   Dest file exists.
    2016-11-03 17:25:30.040   Time stamp of existing file: 2012-12-15 11:23:44.000
    2016-11-03 17:25:30.040   Version of our file: (none)
    2016-11-03 17:25:30.041   Version of existing file: (none)
    2016-11-03 17:25:30.041   Installing the file.
    2016-11-03 17:25:30.041   Successfully installed the file.
    2016-11-03 17:25:30.041   -- File entry --
    2016-11-03 17:25:30.042   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\BLST9.txt
    2016-11-03 17:25:30.042   Time stamp of our file: 2014-10-11 07:01:00.000
    2016-11-03 17:25:30.042   Dest file exists.
    2016-11-03 17:25:30.042   Time stamp of existing file: 2014-10-11 07:01:00.000
    2016-11-03 17:25:30.042   Version of our file: (none)
    2016-11-03 17:25:30.043   Version of existing file: (none)
    2016-11-03 17:25:30.043   Installing the file.
    2016-11-03 17:25:30.044   Successfully installed the file.
    2016-11-03 17:25:30.044   -- File entry --
    2016-11-03 17:25:30.044   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\BLST11.txt
    2016-11-03 17:25:30.044   Time stamp of our file: 2014-10-11 06:53:24.000
    2016-11-03 17:25:30.044   Dest file exists.
    2016-11-03 17:25:30.044   Time stamp of existing file: 2014-10-11 06:53:24.000
    2016-11-03 17:25:30.044   Version of our file: (none)
    2016-11-03 17:25:30.045   Version of existing file: (none)
    2016-11-03 17:25:30.045   Installing the file.
    2016-11-03 17:25:30.046   Successfully installed the file.
    2016-11-03 17:25:30.046   -- File entry --
    2016-11-03 17:25:30.046   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\COARF1.txt
    2016-11-03 17:25:30.046   Time stamp of our file: 2012-09-27 08:12:24.000
    2016-11-03 17:25:30.047   Dest file exists.
    2016-11-03 17:25:30.047   Time stamp of existing file: 2012-09-27 08:12:24.000
    2016-11-03 17:25:30.047   Version of our file: (none)
    2016-11-03 17:25:30.047   Version of existing file: (none)
    2016-11-03 17:25:30.047   Installing the file.
    2016-11-03 17:25:30.048   Successfully installed the file.
    2016-11-03 17:25:30.048   -- File entry --
    2016-11-03 17:25:30.049   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\COARF2.txt
    2016-11-03 17:25:30.049   Time stamp of our file: 2012-09-27 08:12:48.000
    2016-11-03 17:25:30.049   Dest file exists.
    2016-11-03 17:25:30.049   Time stamp of existing file: 2012-09-27 08:12:48.000
    2016-11-03 17:25:30.049   Version of our file: (none)
    2016-11-03 17:25:30.050   Version of existing file: (none)
    2016-11-03 17:25:30.050   Installing the file.
    2016-11-03 17:25:30.051   Successfully installed the file.
    2016-11-03 17:25:30.051   -- File entry --
    2016-11-03 17:25:30.051   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\COARF3.txt
    2016-11-03 17:25:30.051   Time stamp of our file: 2012-09-27 08:13:08.000
    2016-11-03 17:25:30.051   Dest file exists.
    2016-11-03 17:25:30.051   Time stamp of existing file: 2012-09-27 08:13:08.000
    2016-11-03 17:25:30.051   Version of our file: (none)
    2016-11-03 17:25:30.052   Version of existing file: (none)
    2016-11-03 17:25:30.052   Installing the file.
    2016-11-03 17:25:30.053   Successfully installed the file.
    2016-11-03 17:25:30.053   -- File entry --
    2016-11-03 17:25:30.053   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\COARF4.txt
    2016-11-03 17:25:30.053   Time stamp of our file: 2012-12-03 10:17:36.000
    2016-11-03 17:25:30.053   Dest file exists.
    2016-11-03 17:25:30.053   Time stamp of existing file: 2012-12-03 10:17:36.000
    2016-11-03 17:25:30.053   Version of our file: (none)
    2016-11-03 17:25:30.054   Version of existing file: (none)
    2016-11-03 17:25:30.054   Installing the file.
    2016-11-03 17:25:30.055   Successfully installed the file.
    2016-11-03 17:25:30.055   -- File entry --
    2016-11-03 17:25:30.055   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\COART1.txt
    2016-11-03 17:25:30.056   Time stamp of our file: 2012-09-27 08:14:06.000
    2016-11-03 17:25:30.056   Dest file exists.
    2016-11-03 17:25:30.056   Time stamp of existing file: 2012-09-27 08:14:06.000
    2016-11-03 17:25:30.056   Version of our file: (none)
    2016-11-03 17:25:30.057   Version of existing file: (none)
    2016-11-03 17:25:30.057   Installing the file.
    2016-11-03 17:25:30.057   Successfully installed the file.
    2016-11-03 17:25:30.057   -- File entry --
    2016-11-03 17:25:30.058   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\COART2.txt
    2016-11-03 17:25:30.058   Time stamp of our file: 2012-09-27 08:14:30.000
    2016-11-03 17:25:30.058   Dest file exists.
    2016-11-03 17:25:30.058   Time stamp of existing file: 2012-09-27 08:14:30.000
    2016-11-03 17:25:30.058   Version of our file: (none)
    2016-11-03 17:25:30.059   Version of existing file: (none)
    2016-11-03 17:25:30.059   Installing the file.
    2016-11-03 17:25:30.059   Successfully installed the file.
    2016-11-03 17:25:30.060   -- File entry --
    2016-11-03 17:25:30.060   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\COART3.txt
    2016-11-03 17:25:30.060   Time stamp of our file: 2012-09-27 08:15:30.000
    2016-11-03 17:25:30.060   Dest file exists.
    2016-11-03 17:25:30.060   Time stamp of existing file: 2012-09-27 08:15:30.000
    2016-11-03 17:25:30.060   Version of our file: (none)
    2016-11-03 17:25:30.061   Version of existing file: (none)
    2016-11-03 17:25:30.061   Installing the file.
    2016-11-03 17:25:30.062   Successfully installed the file.
    2016-11-03 17:25:30.062   -- File entry --
    2016-11-03 17:25:30.062   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CODEF1.txt
    2016-11-03 17:25:30.062   Time stamp of our file: 2012-09-27 08:15:54.000
    2016-11-03 17:25:30.062   Dest file exists.
    2016-11-03 17:25:30.063   Time stamp of existing file: 2012-09-27 08:15:54.000
    2016-11-03 17:25:30.063   Version of our file: (none)
    2016-11-03 17:25:30.063   Version of existing file: (none)
    2016-11-03 17:25:30.063   Installing the file.
    2016-11-03 17:25:30.064   Successfully installed the file.
    2016-11-03 17:25:30.064   -- File entry --
    2016-11-03 17:25:30.065   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CODEF2.txt
    2016-11-03 17:25:30.065   Time stamp of our file: 2013-01-01 10:07:04.000
    2016-11-03 17:25:30.065   Dest file exists.
    2016-11-03 17:25:30.065   Time stamp of existing file: 2013-01-01 10:07:04.000
    2016-11-03 17:25:30.065   Version of our file: (none)
    2016-11-03 17:25:30.066   Version of existing file: (none)
    2016-11-03 17:25:30.066   Installing the file.
    2016-11-03 17:25:30.067   Successfully installed the file.
    2016-11-03 17:25:30.067   -- File entry --
    2016-11-03 17:25:30.067   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CODEF3.txt
    2016-11-03 17:25:30.067   Time stamp of our file: 2013-01-08 09:27:22.000
    2016-11-03 17:25:30.067   Dest file exists.
    2016-11-03 17:25:30.067   Time stamp of existing file: 2013-01-08 09:27:22.000
    2016-11-03 17:25:30.067   Version of our file: (none)
    2016-11-03 17:25:30.068   Version of existing file: (none)
    2016-11-03 17:25:30.068   Installing the file.
    2016-11-03 17:25:30.069   Successfully installed the file.
    2016-11-03 17:25:30.069   -- File entry --
    2016-11-03 17:25:30.069   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CODEF4.txt
    2016-11-03 17:25:30.069   Time stamp of our file: 2013-01-08 09:30:26.000
    2016-11-03 17:25:30.069   Dest file exists.
    2016-11-03 17:25:30.069   Time stamp of existing file: 2013-01-08 09:30:26.000
    2016-11-03 17:25:30.069   Version of our file: (none)
    2016-11-03 17:25:30.070   Version of existing file: (none)
    2016-11-03 17:25:30.070   Installing the file.
    2016-11-03 17:25:30.071   Successfully installed the file.
    2016-11-03 17:25:30.071   -- File entry --
    2016-11-03 17:25:30.071   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CODET1.txt
    2016-11-03 17:25:30.071   Time stamp of our file: 2012-09-27 08:17:38.000
    2016-11-03 17:25:30.071   Dest file exists.
    2016-11-03 17:25:30.071   Time stamp of existing file: 2012-09-27 08:17:38.000
    2016-11-03 17:25:30.071   Version of our file: (none)
    2016-11-03 17:25:30.073   Version of existing file: (none)
    2016-11-03 17:25:30.073   Installing the file.
    2016-11-03 17:25:30.074   Successfully installed the file.
    2016-11-03 17:25:30.074   -- File entry --
    2016-11-03 17:25:30.074   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CODET2.txt
    2016-11-03 17:25:30.075   Time stamp of our file: 2012-09-27 08:18:02.000
    2016-11-03 17:25:30.075   Dest file exists.
    2016-11-03 17:25:30.075   Time stamp of existing file: 2012-09-27 08:18:02.000
    2016-11-03 17:25:30.075   Version of our file: (none)
    2016-11-03 17:25:30.076   Version of existing file: (none)
    2016-11-03 17:25:30.076   Installing the file.
    2016-11-03 17:25:30.076   Successfully installed the file.
    2016-11-03 17:25:30.076   -- File entry --
    2016-11-03 17:25:30.077   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CODET3.txt
    2016-11-03 17:25:30.077   Time stamp of our file: 2012-09-27 08:18:24.000
    2016-11-03 17:25:30.077   Dest file exists.
    2016-11-03 17:25:30.077   Time stamp of existing file: 2012-09-27 08:18:24.000
    2016-11-03 17:25:30.077   Version of our file: (none)
    2016-11-03 17:25:30.078   Version of existing file: (none)
    2016-11-03 17:25:30.078   Installing the file.
    2016-11-03 17:25:30.078   Successfully installed the file.
    2016-11-03 17:25:30.079   -- File entry --
    2016-11-03 17:25:30.079   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\CORINCLB.txt
    2016-11-03 17:25:30.079   Time stamp of our file: 2012-09-27 08:18:52.000
    2016-11-03 17:25:30.079   Dest file exists.
    2016-11-03 17:25:30.079   Time stamp of existing file: 2012-09-27 08:18:52.000
    2016-11-03 17:25:30.079   Version of our file: (none)
    2016-11-03 17:25:30.080   Version of existing file: (none)
    2016-11-03 17:25:30.080   Installing the file.
    2016-11-03 17:25:30.081   Successfully installed the file.
    2016-11-03 17:25:30.081   -- File entry --
    2016-11-03 17:25:30.081   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\D380+10ISA.txt
    2016-11-03 17:25:30.081   Time stamp of our file: 2013-04-08 09:59:22.000
    2016-11-03 17:25:30.081   Dest file exists.
    2016-11-03 17:25:30.081   Time stamp of existing file: 2013-04-08 09:59:22.000
    2016-11-03 17:25:30.081   Version of our file: (none)
    2016-11-03 17:25:30.082   Version of existing file: (none)
    2016-11-03 17:25:30.083   Installing the file.
    2016-11-03 17:25:30.083   Successfully installed the file.
    2016-11-03 17:25:30.083   -- File entry --
    2016-11-03 17:25:30.084   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\D380-10ISA.txt
    2016-11-03 17:25:30.084   Time stamp of our file: 2013-04-08 08:36:34.000
    2016-11-03 17:25:30.084   Dest file exists.
    2016-11-03 17:25:30.084   Time stamp of existing file: 2013-04-08 08:36:34.000
    2016-11-03 17:25:30.084   Version of our file: (none)
    2016-11-03 17:25:30.085   Version of existing file: (none)
    2016-11-03 17:25:30.085   Installing the file.
    2016-11-03 17:25:30.086   Successfully installed the file.
    2016-11-03 17:25:30.086   -- File entry --
    2016-11-03 17:25:30.086   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\DAP.txt
    2016-11-03 17:25:30.086   Time stamp of our file: 2012-09-27 08:10:32.000
    2016-11-03 17:25:30.086   Dest file exists.
    2016-11-03 17:25:30.086   Time stamp of existing file: 2012-09-27 08:10:32.000
    2016-11-03 17:25:30.086   Version of our file: (none)
    2016-11-03 17:25:30.087   Version of existing file: (none)
    2016-11-03 17:25:30.087   Installing the file.
    2016-11-03 17:25:30.088   Successfully installed the file.
    2016-11-03 17:25:30.088   -- File entry --
    2016-11-03 17:25:30.088   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\DELTAV.txt
    2016-11-03 17:25:30.088   Time stamp of our file: 2012-09-27 07:08:38.000
    2016-11-03 17:25:30.088   Dest file exists.
    2016-11-03 17:25:30.088   Time stamp of existing file: 2012-09-27 07:08:38.000
    2016-11-03 17:25:30.088   Version of our file: (none)
    2016-11-03 17:25:30.089   Version of existing file: (none)
    2016-11-03 17:25:30.089   Installing the file.
    2016-11-03 17:25:30.090   Successfully installed the file.
    2016-11-03 17:25:30.090   -- File entry --
    2016-11-03 17:25:30.091   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\DISTRIBUTION.txt
    2016-11-03 17:25:30.091   Time stamp of our file: 2016-02-17 18:22:32.000
    2016-11-03 17:25:30.091   Dest file exists.
    2016-11-03 17:25:30.091   Time stamp of existing file: 2016-02-17 18:22:32.000
    2016-11-03 17:25:30.091   Version of our file: (none)
    2016-11-03 17:25:30.092   Version of existing file: (none)
    2016-11-03 17:25:30.092   Installing the file.
    2016-11-03 17:25:30.093   Successfully installed the file.
    2016-11-03 17:25:30.093   -- File entry --
    2016-11-03 17:25:30.093   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\FuelBias.txt
    2016-11-03 17:25:30.093   Time stamp of our file: 2016-11-01 15:08:22.000
    2016-11-03 17:25:30.093   Dest file exists.
    2016-11-03 17:25:30.093   Time stamp of existing file: 2016-11-01 15:08:22.000
    2016-11-03 17:25:30.093   Version of our file: (none)
    2016-11-03 17:25:30.094   Version of existing file: (none)
    2016-11-03 17:25:30.094   Installing the file.
    2016-11-03 17:25:30.095   Successfully installed the file.
    2016-11-03 17:25:30.095   -- File entry --
    2016-11-03 17:25:30.095   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\HOLD.txt
    2016-11-03 17:25:30.095   Time stamp of our file: 2012-09-27 07:11:42.000
    2016-11-03 17:25:30.095   Dest file exists.
    2016-11-03 17:25:30.095   Time stamp of existing file: 2012-09-27 07:11:42.000
    2016-11-03 17:25:30.095   Version of our file: (none)
    2016-11-03 17:25:30.096   Version of existing file: (none)
    2016-11-03 17:25:30.096   Installing the file.
    2016-11-03 17:25:30.097   Successfully installed the file.
    2016-11-03 17:25:30.097   -- File entry --
    2016-11-03 17:25:30.097   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\HOLD1.txt
    2016-11-03 17:25:30.097   Time stamp of our file: 2012-09-27 07:12:46.000
    2016-11-03 17:25:30.097   Dest file exists.
    2016-11-03 17:25:30.097   Time stamp of existing file: 2012-09-27 07:12:46.000
    2016-11-03 17:25:30.097   Version of our file: (none)
    2016-11-03 17:25:30.098   Version of existing file: (none)
    2016-11-03 17:25:30.099   Installing the file.
    2016-11-03 17:25:30.099   Successfully installed the file.
    2016-11-03 17:25:30.099   -- File entry --
    2016-11-03 17:25:30.100   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\HOLD2.txt
    2016-11-03 17:25:30.100   Time stamp of our file: 2012-12-04 13:00:34.000
    2016-11-03 17:25:30.100   Dest file exists.
    2016-11-03 17:25:30.100   Time stamp of existing file: 2012-12-04 13:00:34.000
    2016-11-03 17:25:30.100   Version of our file: (none)
    2016-11-03 17:25:30.102   Version of existing file: (none)
    2016-11-03 17:25:30.102   Installing the file.
    2016-11-03 17:25:30.102   Successfully installed the file.
    2016-11-03 17:25:30.102   -- File entry --
    2016-11-03 17:25:30.103   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\INDEXFUEL.txt
    2016-11-03 17:25:30.103   Time stamp of our file: 2012-09-27 07:07:20.000
    2016-11-03 17:25:30.103   Dest file exists.
    2016-11-03 17:25:30.103   Time stamp of existing file: 2012-09-27 07:07:20.000
    2016-11-03 17:25:30.103   Version of our file: (none)
    2016-11-03 17:25:30.104   Version of existing file: (none)
    2016-11-03 17:25:30.104   Installing the file.
    2016-11-03 17:25:30.105   Successfully installed the file.
    2016-11-03 17:25:30.105   -- File entry --
    2016-11-03 17:25:30.105   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\LatestVersion.txt
    2016-11-03 17:25:30.105   Time stamp of our file: 2016-11-01 15:07:04.000
    2016-11-03 17:25:30.105   Dest file exists.
    2016-11-03 17:25:30.105   Time stamp of existing file: 2016-11-01 15:07:04.000
    2016-11-03 17:25:30.105   Version of our file: (none)
    2016-11-03 17:25:30.115   Version of existing file: (none)
    2016-11-03 17:25:30.115   Installing the file.
    2016-11-03 17:25:30.116   Successfully installed the file.
    2016-11-03 17:25:30.116   -- File entry --
    2016-11-03 17:25:30.117   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\LDGLONGA.txt
    2016-11-03 17:25:30.117   Time stamp of our file: 2014-07-27 12:24:16.000
    2016-11-03 17:25:30.117   Dest file exists.
    2016-11-03 17:25:30.117   Time stamp of existing file: 2014-07-27 12:24:16.000
    2016-11-03 17:25:30.117   Version of our file: (none)
    2016-11-03 17:25:30.118   Version of existing file: (none)
    2016-11-03 17:25:30.118   Installing the file.
    2016-11-03 17:25:30.119   Successfully installed the file.
    2016-11-03 17:25:30.119   -- File entry --
    2016-11-03 17:25:30.119   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\LDGLONGM.txt
    2016-11-03 17:25:30.119   Time stamp of our file: 2014-11-14 15:05:46.000
    2016-11-03 17:25:30.119   Dest file exists.
    2016-11-03 17:25:30.119   Time stamp of existing file: 2014-11-14 15:05:46.000
    2016-11-03 17:25:30.119   Version of our file: (none)
    2016-11-03 17:25:30.120   Version of existing file: (none)
    2016-11-03 17:25:30.120   Installing the file.
    2016-11-03 17:25:30.121   Successfully installed the file.
    2016-11-03 17:25:30.121   -- File entry --
    2016-11-03 17:25:30.121   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\LDGV.txt
    2016-11-03 17:25:30.122   Time stamp of our file: 2012-09-27 08:21:24.000
    2016-11-03 17:25:30.122   Dest file exists.
    2016-11-03 17:25:30.122   Time stamp of existing file: 2012-09-27 08:21:24.000
    2016-11-03 17:25:30.122   Version of our file: (none)
    2016-11-03 17:25:30.122   Version of existing file: (none)
    2016-11-03 17:25:30.123   Installing the file.
    2016-11-03 17:25:30.123   Successfully installed the file.
    2016-11-03 17:25:30.123   -- File entry --
    2016-11-03 17:25:30.124   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\LINHLD1.txt
    2016-11-03 17:25:30.124   Time stamp of our file: 2014-09-08 15:56:38.000
    2016-11-03 17:25:30.124   Dest file exists.
    2016-11-03 17:25:30.124   Time stamp of existing file: 2014-09-08 15:56:38.000
    2016-11-03 17:25:30.124   Version of our file: (none)
    2016-11-03 17:25:30.125   Version of existing file: (none)
    2016-11-03 17:25:30.125   Installing the file.
    2016-11-03 17:25:30.125   Successfully installed the file.
    2016-11-03 17:25:30.125   -- File entry --
    2016-11-03 17:25:30.126   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\LINHLD2.txt
    2016-11-03 17:25:30.126   Time stamp of our file: 2014-09-10 10:40:16.000
    2016-11-03 17:25:30.126   Dest file exists.
    2016-11-03 17:25:30.126   Time stamp of existing file: 2014-09-10 10:40:16.000
    2016-11-03 17:25:30.126   Version of our file: (none)
    2016-11-03 17:25:30.128   Version of existing file: (none)
    2016-11-03 17:25:30.128   Installing the file.
    2016-11-03 17:25:30.128   Successfully installed the file.
    2016-11-03 17:25:30.129   -- File entry --
    2016-11-03 17:25:30.129   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\LINHLD3.txt
    2016-11-03 17:25:30.129   Time stamp of our file: 2014-09-10 10:49:20.000
    2016-11-03 17:25:30.129   Dest file exists.
    2016-11-03 17:25:30.129   Time stamp of existing file: 2014-09-10 10:49:20.000
    2016-11-03 17:25:30.129   Version of our file: (none)
    2016-11-03 17:25:30.130   Version of existing file: (none)
    2016-11-03 17:25:30.130   Installing the file.
    2016-11-03 17:25:30.131   Successfully installed the file.
    2016-11-03 17:25:30.131   -- File entry --
    2016-11-03 17:25:30.131   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\MAFCS.txt
    2016-11-03 17:25:30.131   Time stamp of our file: 2012-09-27 08:11:52.000
    2016-11-03 17:25:30.131   Dest file exists.
    2016-11-03 17:25:30.131   Time stamp of existing file: 2012-09-27 08:11:52.000
    2016-11-03 17:25:30.131   Version of our file: (none)
    2016-11-03 17:25:30.133   Version of existing file: (none)
    2016-11-03 17:25:30.133   Installing the file.
    2016-11-03 17:25:30.134   Successfully installed the file.
    2016-11-03 17:25:30.134   -- File entry --
    2016-11-03 17:25:30.135   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\P7FT.txt
    2016-11-03 17:25:30.135   Time stamp of our file: 2012-12-11 08:16:00.000
    2016-11-03 17:25:30.135   Dest file exists.
    2016-11-03 17:25:30.135   Time stamp of existing file: 2012-12-11 08:16:00.000
    2016-11-03 17:25:30.135   Version of our file: (none)
    2016-11-03 17:25:30.136   Version of existing file: (none)
    2016-11-03 17:25:30.136   Installing the file.
    2016-11-03 17:25:30.137   Successfully installed the file.
    2016-11-03 17:25:30.137   -- File entry --
    2016-11-03 17:25:30.138   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\SubVp50-600.txt
    2016-11-03 17:25:30.138   Time stamp of our file: 2016-10-29 11:09:20.000
    2016-11-03 17:25:30.138   Dest file exists.
    2016-11-03 17:25:30.138   Time stamp of existing file: 2016-10-29 11:09:20.000
    2016-11-03 17:25:30.138   Version of our file: (none)
    2016-11-03 17:25:30.139   Version of existing file: (none)
    2016-11-03 17:25:30.139   Installing the file.
    2016-11-03 17:25:30.140   Successfully installed the file.
    2016-11-03 17:25:30.140   -- File entry --
    2016-11-03 17:25:30.140   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\SubVp600-1700.txt
    2016-11-03 17:25:30.140   Time stamp of our file: 2016-10-29 11:12:04.000
    2016-11-03 17:25:30.140   Dest file exists.
    2016-11-03 17:25:30.140   Time stamp of existing file: 2016-10-29 11:12:04.000
    2016-11-03 17:25:30.140   Version of our file: (none)
    2016-11-03 17:25:30.141   Version of existing file: (none)
    2016-11-03 17:25:30.141   Installing the file.
    2016-11-03 17:25:30.142   Successfully installed the file.
    2016-11-03 17:25:30.142   -- File entry --
    2016-11-03 17:25:30.142   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\SubVp1700-2200.txt
    2016-11-03 17:25:30.142   Time stamp of our file: 2016-10-29 11:14:22.000
    2016-11-03 17:25:30.142   Dest file exists.
    2016-11-03 17:25:30.142   Time stamp of existing file: 2016-10-29 11:14:22.000
    2016-11-03 17:25:30.142   Version of our file: (none)
    2016-11-03 17:25:30.143   Version of existing file: (none)
    2016-11-03 17:25:30.143   Installing the file.
    2016-11-03 17:25:30.144   Successfully installed the file.
    2016-11-03 17:25:30.144   -- File entry --
    2016-11-03 17:25:30.144   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\SubVp2200-2500.txt
    2016-11-03 17:25:30.145   Time stamp of our file: 2016-10-29 11:15:46.000
    2016-11-03 17:25:30.145   Dest file exists.
    2016-11-03 17:25:30.145   Time stamp of existing file: 2016-10-29 11:15:46.000
    2016-11-03 17:25:30.145   Version of our file: (none)
    2016-11-03 17:25:30.146   Version of existing file: (none)
    2016-11-03 17:25:30.146   Installing the file.
    2016-11-03 17:25:30.146   Successfully installed the file.
    2016-11-03 17:25:30.146   -- File entry --
    2016-11-03 17:25:30.147   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TrFAtt53.txt
    2016-11-03 17:25:30.147   Time stamp of our file: 2016-10-12 15:27:24.000
    2016-11-03 17:25:30.147   Dest file exists.
    2016-11-03 17:25:30.147   Time stamp of existing file: 2016-10-12 15:27:24.000
    2016-11-03 17:25:30.147   Version of our file: (none)
    2016-11-03 17:25:30.148   Version of existing file: (none)
    2016-11-03 17:25:30.148   Installing the file.
    2016-11-03 17:25:30.148   Successfully installed the file.
    2016-11-03 17:25:30.148   -- File entry --
    2016-11-03 17:25:30.149   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP600S1.txt
    2016-11-03 17:25:30.149   Time stamp of our file: 2012-09-27 07:22:44.000
    2016-11-03 17:25:30.149   Dest file exists.
    2016-11-03 17:25:30.149   Time stamp of existing file: 2012-09-27 07:22:44.000
    2016-11-03 17:25:30.149   Version of our file: (none)
    2016-11-03 17:25:30.150   Version of existing file: (none)
    2016-11-03 17:25:30.150   Installing the file.
    2016-11-03 17:25:30.151   Successfully installed the file.
    2016-11-03 17:25:30.151   -- File entry --
    2016-11-03 17:25:30.151   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP600S2.txt
    2016-11-03 17:25:30.151   Time stamp of our file: 2012-09-27 07:23:18.000
    2016-11-03 17:25:30.151   Dest file exists.
    2016-11-03 17:25:30.151   Time stamp of existing file: 2012-09-27 07:23:18.000
    2016-11-03 17:25:30.151   Version of our file: (none)
    2016-11-03 17:25:30.152   Version of existing file: (none)
    2016-11-03 17:25:30.152   Installing the file.
    2016-11-03 17:25:30.153   Successfully installed the file.
    2016-11-03 17:25:30.153   -- File entry --
    2016-11-03 17:25:30.153   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP600S3.txt
    2016-11-03 17:25:30.153   Time stamp of our file: 2014-07-08 13:13:14.000
    2016-11-03 17:25:30.153   Dest file exists.
    2016-11-03 17:25:30.154   Time stamp of existing file: 2014-07-08 13:13:14.000
    2016-11-03 17:25:30.154   Version of our file: (none)
    2016-11-03 17:25:30.154   Version of existing file: (none)
    2016-11-03 17:25:30.154   Installing the file.
    2016-11-03 17:25:30.155   Successfully installed the file.
    2016-11-03 17:25:30.155   -- File entry --
    2016-11-03 17:25:30.156   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP1700S1.txt
    2016-11-03 17:25:30.156   Time stamp of our file: 2012-09-27 07:24:26.000
    2016-11-03 17:25:30.156   Dest file exists.
    2016-11-03 17:25:30.156   Time stamp of existing file: 2012-09-27 07:24:26.000
    2016-11-03 17:25:30.156   Version of our file: (none)
    2016-11-03 17:25:30.157   Version of existing file: (none)
    2016-11-03 17:25:30.157   Installing the file.
    2016-11-03 17:25:30.157   Successfully installed the file.
    2016-11-03 17:25:30.157   -- File entry --
    2016-11-03 17:25:30.158   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP1700S2.txt
    2016-11-03 17:25:30.158   Time stamp of our file: 2012-09-27 07:24:56.000
    2016-11-03 17:25:30.158   Dest file exists.
    2016-11-03 17:25:30.158   Time stamp of existing file: 2012-09-27 07:24:56.000
    2016-11-03 17:25:30.158   Version of our file: (none)
    2016-11-03 17:25:30.159   Version of existing file: (none)
    2016-11-03 17:25:30.159   Installing the file.
    2016-11-03 17:25:30.159   Successfully installed the file.
    2016-11-03 17:25:30.160   -- File entry --
    2016-11-03 17:25:30.160   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP1700S3.txt
    2016-11-03 17:25:30.160   Time stamp of our file: 2016-10-31 08:53:10.000
    2016-11-03 17:25:30.160   Dest file exists.
    2016-11-03 17:25:30.160   Time stamp of existing file: 2016-10-31 08:53:10.000
    2016-11-03 17:25:30.160   Version of our file: (none)
    2016-11-03 17:25:30.161   Version of existing file: (none)
    2016-11-03 17:25:30.161   Installing the file.
    2016-11-03 17:25:30.162   Successfully installed the file.
    2016-11-03 17:25:30.162   -- File entry --
    2016-11-03 17:25:30.162   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP1700S4.txt
    2016-11-03 17:25:30.162   Time stamp of our file: 2016-10-31 08:56:10.000
    2016-11-03 17:25:30.162   Dest file exists.
    2016-11-03 17:25:30.162   Time stamp of existing file: 2016-10-31 08:56:10.000
    2016-11-03 17:25:30.162   Version of our file: (none)
    2016-11-03 17:25:30.163   Version of existing file: (none)
    2016-11-03 17:25:30.163   Installing the file.
    2016-11-03 17:25:30.164   Successfully installed the file.
    2016-11-03 17:25:30.164   -- File entry --
    2016-11-03 17:25:30.164   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2200S1.txt
    2016-11-03 17:25:30.164   Time stamp of our file: 2012-09-27 07:26:02.000
    2016-11-03 17:25:30.164   Dest file exists.
    2016-11-03 17:25:30.164   Time stamp of existing file: 2012-09-27 07:26:02.000
    2016-11-03 17:25:30.164   Version of our file: (none)
    2016-11-03 17:25:30.165   Version of existing file: (none)
    2016-11-03 17:25:30.165   Installing the file.
    2016-11-03 17:25:30.166   Successfully installed the file.
    2016-11-03 17:25:30.166   -- File entry --
    2016-11-03 17:25:30.166   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2200S2.txt
    2016-11-03 17:25:30.167   Time stamp of our file: 2012-09-27 07:26:42.000
    2016-11-03 17:25:30.167   Dest file exists.
    2016-11-03 17:25:30.167   Time stamp of existing file: 2012-09-27 07:26:42.000
    2016-11-03 17:25:30.167   Version of our file: (none)
    2016-11-03 17:25:30.168   Version of existing file: (none)
    2016-11-03 17:25:30.168   Installing the file.
    2016-11-03 17:25:30.169   Successfully installed the file.
    2016-11-03 17:25:30.169   -- File entry --
    2016-11-03 17:25:30.169   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2200S3.txt
    2016-11-03 17:25:30.169   Time stamp of our file: 2014-07-05 09:58:06.000
    2016-11-03 17:25:30.169   Dest file exists.
    2016-11-03 17:25:30.169   Time stamp of existing file: 2014-07-05 09:58:06.000
    2016-11-03 17:25:30.169   Version of our file: (none)
    2016-11-03 17:25:30.170   Version of existing file: (none)
    2016-11-03 17:25:30.170   Installing the file.
    2016-11-03 17:25:30.171   Successfully installed the file.
    2016-11-03 17:25:30.171   -- File entry --
    2016-11-03 17:25:30.171   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2200S4.txt
    2016-11-03 17:25:30.172   Time stamp of our file: 2014-08-06 10:48:52.000
    2016-11-03 17:25:30.172   Dest file exists.
    2016-11-03 17:25:30.172   Time stamp of existing file: 2014-08-06 10:48:52.000
    2016-11-03 17:25:30.172   Version of our file: (none)
    2016-11-03 17:25:30.173   Version of existing file: (none)
    2016-11-03 17:25:30.173   Installing the file.
    2016-11-03 17:25:30.173   Successfully installed the file.
    2016-11-03 17:25:30.173   -- File entry --
    2016-11-03 17:25:30.174   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2500S1.txt
    2016-11-03 17:25:30.174   Time stamp of our file: 2012-12-24 10:27:18.000
    2016-11-03 17:25:30.174   Dest file exists.
    2016-11-03 17:25:30.174   Time stamp of existing file: 2012-12-24 10:27:18.000
    2016-11-03 17:25:30.174   Version of our file: (none)
    2016-11-03 17:25:30.175   Version of existing file: (none)
    2016-11-03 17:25:30.175   Installing the file.
    2016-11-03 17:25:30.175   Successfully installed the file.
    2016-11-03 17:25:30.176   -- File entry --
    2016-11-03 17:25:30.176   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2500S2.txt
    2016-11-03 17:25:30.176   Time stamp of our file: 2012-12-24 10:44:22.000
    2016-11-03 17:25:30.176   Dest file exists.
    2016-11-03 17:25:30.176   Time stamp of existing file: 2012-12-24 10:44:22.000
    2016-11-03 17:25:30.176   Version of our file: (none)
    2016-11-03 17:25:30.177   Version of existing file: (none)
    2016-11-03 17:25:30.177   Installing the file.
    2016-11-03 17:25:30.178   Successfully installed the file.
    2016-11-03 17:25:30.178   -- File entry --
    2016-11-03 17:25:30.178   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2500S3.txt
    2016-11-03 17:25:30.178   Time stamp of our file: 2014-07-05 11:43:44.000
    2016-11-03 17:25:30.178   Dest file exists.
    2016-11-03 17:25:30.178   Time stamp of existing file: 2014-07-05 11:43:44.000
    2016-11-03 17:25:30.178   Version of our file: (none)
    2016-11-03 17:25:30.179   Version of existing file: (none)
    2016-11-03 17:25:30.179   Installing the file.
    2016-11-03 17:25:30.180   Successfully installed the file.
    2016-11-03 17:25:30.180   -- File entry --
    2016-11-03 17:25:30.180   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP2500S4.txt
    2016-11-03 17:25:30.180   Time stamp of our file: 2014-07-05 12:10:36.000
    2016-11-03 17:25:30.180   Dest file exists.
    2016-11-03 17:25:30.180   Time stamp of existing file: 2014-07-05 12:10:36.000
    2016-11-03 17:25:30.181   Version of our file: (none)
    2016-11-03 17:25:30.182   Version of existing file: (none)
    2016-11-03 17:25:30.182   Installing the file.
    2016-11-03 17:25:30.182   Successfully installed the file.
    2016-11-03 17:25:30.183   -- File entry --
    2016-11-03 17:25:30.183   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP17001.txt
    2016-11-03 17:25:30.183   Time stamp of our file: 2014-05-12 17:48:44.000
    2016-11-03 17:25:30.183   Dest file exists.
    2016-11-03 17:25:30.183   Time stamp of existing file: 2014-05-12 17:48:44.000
    2016-11-03 17:25:30.183   Version of our file: (none)
    2016-11-03 17:25:30.184   Version of existing file: (none)
    2016-11-03 17:25:30.184   Installing the file.
    2016-11-03 17:25:30.185   Successfully installed the file.
    2016-11-03 17:25:30.185   -- File entry --
    2016-11-03 17:25:30.186   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP17002.txt
    2016-11-03 17:25:30.186   Time stamp of our file: 2014-05-12 17:49:06.000
    2016-11-03 17:25:30.186   Dest file exists.
    2016-11-03 17:25:30.186   Time stamp of existing file: 2014-05-12 17:49:06.000
    2016-11-03 17:25:30.186   Version of our file: (none)
    2016-11-03 17:25:30.187   Version of existing file: (none)
    2016-11-03 17:25:30.187   Installing the file.
    2016-11-03 17:25:30.187   Successfully installed the file.
    2016-11-03 17:25:30.188   -- File entry --
    2016-11-03 17:25:30.188   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP17003.txt
    2016-11-03 17:25:30.188   Time stamp of our file: 2016-10-22 09:43:14.000
    2016-11-03 17:25:30.188   Dest file exists.
    2016-11-03 17:25:30.188   Time stamp of existing file: 2016-10-22 09:43:14.000
    2016-11-03 17:25:30.188   Version of our file: (none)
    2016-11-03 17:25:30.189   Version of existing file: (none)
    2016-11-03 17:25:30.189   Installing the file.
    2016-11-03 17:25:30.190   Successfully installed the file.
    2016-11-03 17:25:30.190   -- File entry --
    2016-11-03 17:25:30.190   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP27001.txt
    2016-11-03 17:25:30.190   Time stamp of our file: 2012-09-27 07:19:14.000
    2016-11-03 17:25:30.190   Dest file exists.
    2016-11-03 17:25:30.190   Time stamp of existing file: 2012-09-27 07:19:14.000
    2016-11-03 17:25:30.190   Version of our file: (none)
    2016-11-03 17:25:30.191   Version of existing file: (none)
    2016-11-03 17:25:30.191   Installing the file.
    2016-11-03 17:25:30.192   Successfully installed the file.
    2016-11-03 17:25:30.192   -- File entry --
    2016-11-03 17:25:30.192   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP27002.txt
    2016-11-03 17:25:30.193   Time stamp of our file: 2012-09-27 07:19:48.000
    2016-11-03 17:25:30.193   Dest file exists.
    2016-11-03 17:25:30.193   Time stamp of existing file: 2012-09-27 07:19:48.000
    2016-11-03 17:25:30.193   Version of our file: (none)
    2016-11-03 17:25:30.194   Version of existing file: (none)
    2016-11-03 17:25:30.194   Installing the file.
    2016-11-03 17:25:30.194   Successfully installed the file.
    2016-11-03 17:25:30.194   -- File entry --
    2016-11-03 17:25:30.195   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP27003.txt
    2016-11-03 17:25:30.195   Time stamp of our file: 2016-10-22 09:39:40.000
    2016-11-03 17:25:30.195   Dest file exists.
    2016-11-03 17:25:30.195   Time stamp of existing file: 2016-10-22 09:39:40.000
    2016-11-03 17:25:30.195   Version of our file: (none)
    2016-11-03 17:25:30.196   Version of existing file: (none)
    2016-11-03 17:25:30.196   Installing the file.
    2016-11-03 17:25:30.197   Successfully installed the file.
    2016-11-03 17:25:30.197   -- File entry --
    2016-11-03 17:25:30.197   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP40001.txt
    2016-11-03 17:25:30.197   Time stamp of our file: 2012-09-27 07:21:48.000
    2016-11-03 17:25:30.197   Dest file exists.
    2016-11-03 17:25:30.197   Time stamp of existing file: 2012-09-27 07:21:48.000
    2016-11-03 17:25:30.197   Version of our file: (none)
    2016-11-03 17:25:30.198   Version of existing file: (none)
    2016-11-03 17:25:30.198   Installing the file.
    2016-11-03 17:25:30.199   Successfully installed the file.
    2016-11-03 17:25:30.199   -- File entry --
    2016-11-03 17:25:30.200   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP40002.txt
    2016-11-03 17:25:30.200   Time stamp of our file: 2012-09-27 07:21:40.000
    2016-11-03 17:25:30.200   Dest file exists.
    2016-11-03 17:25:30.200   Time stamp of existing file: 2012-09-27 07:21:40.000
    2016-11-03 17:25:30.200   Version of our file: (none)
    2016-11-03 17:25:30.201   Version of existing file: (none)
    2016-11-03 17:25:30.201   Installing the file.
    2016-11-03 17:25:30.202   Successfully installed the file.
    2016-11-03 17:25:30.202   -- File entry --
    2016-11-03 17:25:30.202   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\TRIP40003.txt
    2016-11-03 17:25:30.202   Time stamp of our file: 2016-10-22 09:23:50.000
    2016-11-03 17:25:30.202   Dest file exists.
    2016-11-03 17:25:30.202   Time stamp of existing file: 2016-10-22 09:23:50.000
    2016-11-03 17:25:30.202   Version of our file: (none)
    2016-11-03 17:25:30.203   Version of existing file: (none)
    2016-11-03 17:25:30.203   Installing the file.
    2016-11-03 17:25:30.204   Successfully installed the file.
    2016-11-03 17:25:30.204   -- File entry --
    2016-11-03 17:25:30.204   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\VpSup400-1700.txt
    2016-11-03 17:25:30.204   Time stamp of our file: 2016-10-29 16:11:36.000
    2016-11-03 17:25:30.204   Dest file exists.
    2016-11-03 17:25:30.204   Time stamp of existing file: 2016-10-29 16:11:36.000
    2016-11-03 17:25:30.204   Version of our file: (none)
    2016-11-03 17:25:30.205   Version of existing file: (none)
    2016-11-03 17:25:30.206   Installing the file.
    2016-11-03 17:25:30.206   Successfully installed the file.
    2016-11-03 17:25:30.206   -- File entry --
    2016-11-03 17:25:30.207   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\VpSup1700-2700.txt
    2016-11-03 17:25:30.207   Time stamp of our file: 2016-10-29 15:59:26.000
    2016-11-03 17:25:30.207   Dest file exists.
    2016-11-03 17:25:30.207   Time stamp of existing file: 2016-10-29 15:59:26.000
    2016-11-03 17:25:30.207   Version of our file: (none)
    2016-11-03 17:25:30.208   Version of existing file: (none)
    2016-11-03 17:25:30.208   Installing the file.
    2016-11-03 17:25:30.208   Successfully installed the file.
    2016-11-03 17:25:30.209   -- File entry --
    2016-11-03 17:25:30.209   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\VpSup2700-3700.txt
    2016-11-03 17:25:30.209   Time stamp of our file: 2016-10-29 16:00:56.000
    2016-11-03 17:25:30.209   Dest file exists.
    2016-11-03 17:25:30.209   Time stamp of existing file: 2016-10-29 16:00:56.000
    2016-11-03 17:25:30.209   Version of our file: (none)
    2016-11-03 17:25:30.210   Version of existing file: (none)
    2016-11-03 17:25:30.210   Installing the file.
    2016-11-03 17:25:30.211   Successfully installed the file.
    2016-11-03 17:25:30.211   -- File entry --
    2016-11-03 17:25:30.211   Dest filename: C:\Program Files (x86)\Concorde Performance System\Data\VZRCVMIN.txt
    2016-11-03 17:25:30.211   Time stamp of our file: 2012-09-27 08:19:28.000
    2016-11-03 17:25:30.211   Dest file exists.
    2016-11-03 17:25:30.211   Time stamp of existing file: 2012-09-27 08:19:28.000
    2016-11-03 17:25:30.211   Version of our file: (none)
    2016-11-03 17:25:30.212   Version of existing file: (none)
    2016-11-03 17:25:30.212   Installing the file.
    2016-11-03 17:25:30.213   Successfully installed the file.
    2016-11-03 17:25:30.213   -- File entry --
    2016-11-03 17:25:30.213   Dest filename: C:\Program Files (x86)\Concorde Performance System\WX\csv.bat
    2016-11-03 17:25:30.214   Time stamp of our file: 2014-07-30 13:58:42.000
    2016-11-03 17:25:30.214   Dest file exists.
    2016-11-03 17:25:30.214   Time stamp of existing file: 2014-07-30 13:58:42.000
    2016-11-03 17:25:30.214   Version of our file: (none)
    2016-11-03 17:25:30.216   Version of existing file: (none)
    2016-11-03 17:25:30.216   Installing the file.
    2016-11-03 17:25:30.217   Successfully installed the file.
    2016-11-03 17:25:30.217   -- File entry --
    2016-11-03 17:25:30.217   Dest filename: C:\Program Files (x86)\Concorde Performance System\WX\degrib.exe
    2016-11-03 17:25:30.218   Time stamp of our file: 2013-04-05 19:15:26.000
    2016-11-03 17:25:30.218   Dest file exists.
    2016-11-03 17:25:30.218   Time stamp of existing file: 2013-04-05 19:15:26.000
    2016-11-03 17:25:30.218   Version of our file: (none)
    2016-11-03 17:25:30.237   Version of existing file: (none)
    2016-11-03 17:25:30.237   Installing the file.
    2016-11-03 17:25:30.308   Successfully installed the file.
    2016-11-03 17:25:30.308   -- File entry --
    2016-11-03 17:25:30.308   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Arrow.png
    2016-11-03 17:25:30.309   Time stamp of our file: 2012-08-10 06:38:46.000
    2016-11-03 17:25:30.309   Dest file exists.
    2016-11-03 17:25:30.309   Time stamp of existing file: 2012-08-10 06:38:46.000
    2016-11-03 17:25:30.309   Version of our file: (none)
    2016-11-03 17:25:30.310   Version of existing file: (none)
    2016-11-03 17:25:30.311   Installing the file.
    2016-11-03 17:25:30.311   Successfully installed the file.
    2016-11-03 17:25:30.311   -- File entry --
    2016-11-03 17:25:30.312   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Balance.bmp
    2016-11-03 17:25:30.312   Time stamp of our file: 2012-08-26 13:57:34.000
    2016-11-03 17:25:30.312   Dest file exists.
    2016-11-03 17:25:30.312   Time stamp of existing file: 2012-08-26 13:57:34.000
    2016-11-03 17:25:30.312   Version of our file: (none)
    2016-11-03 17:25:30.313   Version of existing file: (none)
    2016-11-03 17:25:30.313   Installing the file.
    2016-11-03 17:25:30.333   Successfully installed the file.
    2016-11-03 17:25:30.333   -- File entry --
    2016-11-03 17:25:30.334   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\b-w_world.png
    2016-11-03 17:25:30.334   Time stamp of our file: 2012-07-20 08:33:40.000
    2016-11-03 17:25:30.334   Dest file exists.
    2016-11-03 17:25:30.334   Time stamp of existing file: 2012-07-20 08:33:40.000
    2016-11-03 17:25:30.334   Version of our file: (none)
    2016-11-03 17:25:30.336   Version of existing file: (none)
    2016-11-03 17:25:30.336   Installing the file.
    2016-11-03 17:25:30.337   Successfully installed the file.
    2016-11-03 17:25:30.337   -- File entry --
    2016-11-03 17:25:30.337   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Chart1.bmp
    2016-11-03 17:25:30.337   Time stamp of our file: 2012-11-25 18:53:50.000
    2016-11-03 17:25:30.337   Dest file exists.
    2016-11-03 17:25:30.337   Time stamp of existing file: 2012-11-25 18:53:50.000
    2016-11-03 17:25:30.337   Version of our file: (none)
    2016-11-03 17:25:30.338   Version of existing file: (none)
    2016-11-03 17:25:30.338   Installing the file.
    2016-11-03 17:25:30.353   Successfully installed the file.
    2016-11-03 17:25:30.354   -- File entry --
    2016-11-03 17:25:30.354   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\CleAMolette.ico
    2016-11-03 17:25:30.354   Time stamp of our file: 2012-11-16 16:03:06.000
    2016-11-03 17:25:30.354   Dest file exists.
    2016-11-03 17:25:30.354   Time stamp of existing file: 2012-11-16 16:03:06.000
    2016-11-03 17:25:30.354   Version of our file: (none)
    2016-11-03 17:25:30.356   Version of existing file: (none)
    2016-11-03 17:25:30.356   Installing the file.
    2016-11-03 17:25:30.357   Successfully installed the file.
    2016-11-03 17:25:30.357   -- File entry --
    2016-11-03 17:25:30.358   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\CPT.PNG
    2016-11-03 17:25:30.358   Time stamp of our file: 2012-05-31 15:26:08.000
    2016-11-03 17:25:30.358   Dest file exists.
    2016-11-03 17:25:30.358   Time stamp of existing file: 2012-05-31 15:26:08.000
    2016-11-03 17:25:30.358   Version of our file: (none)
    2016-11-03 17:25:30.360   Version of existing file: (none)
    2016-11-03 17:25:30.360   Installing the file.
    2016-11-03 17:25:30.366   Successfully installed the file.
    2016-11-03 17:25:30.366   -- File entry --
    2016-11-03 17:25:30.366   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Export.ico
    2016-11-03 17:25:30.367   Time stamp of our file: 2013-01-12 10:10:40.000
    2016-11-03 17:25:30.367   Dest file exists.
    2016-11-03 17:25:30.367   Time stamp of existing file: 2013-01-12 10:10:40.000
    2016-11-03 17:25:30.367   Version of our file: (none)
    2016-11-03 17:25:30.369   Version of existing file: (none)
    2016-11-03 17:25:30.369   Installing the file.
    2016-11-03 17:25:30.369   Successfully installed the file.
    2016-11-03 17:25:30.370   -- File entry --
    2016-11-03 17:25:30.370   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\formA.png
    2016-11-03 17:25:30.370   Time stamp of our file: 2012-08-01 15:35:24.000
    2016-11-03 17:25:30.371   Dest file exists.
    2016-11-03 17:25:30.371   Time stamp of existing file: 2012-08-01 15:35:24.000
    2016-11-03 17:25:30.371   Version of our file: (none)
    2016-11-03 17:25:30.373   Version of existing file: (none)
    2016-11-03 17:25:30.373   Installing the file.
    2016-11-03 17:25:30.386   Successfully installed the file.
    2016-11-03 17:25:30.386   -- File entry --
    2016-11-03 17:25:30.386   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\formD2.jpg
    2016-11-03 17:25:30.387   Time stamp of our file: 2012-07-03 10:08:24.000
    2016-11-03 17:25:30.387   Dest file exists.
    2016-11-03 17:25:30.387   Time stamp of existing file: 2012-07-03 10:08:24.000
    2016-11-03 17:25:30.387   Version of our file: (none)
    2016-11-03 17:25:30.389   Version of existing file: (none)
    2016-11-03 17:25:30.389   Installing the file.
    2016-11-03 17:25:30.400   Successfully installed the file.
    2016-11-03 17:25:30.400   -- File entry --
    2016-11-03 17:25:30.400   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\FORME.PNG
    2016-11-03 17:25:30.400   Time stamp of our file: 2012-07-06 11:35:40.000
    2016-11-03 17:25:30.400   Dest file exists.
    2016-11-03 17:25:30.400   Time stamp of existing file: 2012-07-06 11:35:40.000
    2016-11-03 17:25:30.400   Version of our file: (none)
    2016-11-03 17:25:30.402   Version of existing file: (none)
    2016-11-03 17:25:30.402   Installing the file.
    2016-11-03 17:25:30.409   Successfully installed the file.
    2016-11-03 17:25:30.409   -- File entry --
    2016-11-03 17:25:30.409   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\FORME-1.bmp
    2016-11-03 17:25:30.410   Time stamp of our file: 2012-07-06 15:57:00.000
    2016-11-03 17:25:30.410   Dest file exists.
    2016-11-03 17:25:30.410   Time stamp of existing file: 2012-07-06 15:57:00.000
    2016-11-03 17:25:30.410   Version of our file: (none)
    2016-11-03 17:25:30.411   Version of existing file: (none)
    2016-11-03 17:25:30.411   Installing the file.
    2016-11-03 17:25:30.415   Successfully installed the file.
    2016-11-03 17:25:30.415   -- File entry --
    2016-11-03 17:25:30.416   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Map.bmp
    2016-11-03 17:25:30.416   Time stamp of our file: 2014-08-16 13:49:12.000
    2016-11-03 17:25:30.416   Dest file exists.
    2016-11-03 17:25:30.416   Time stamp of existing file: 2014-08-16 13:49:12.000
    2016-11-03 17:25:30.416   Version of our file: (none)
    2016-11-03 17:25:30.417   Version of existing file: (none)
    2016-11-03 17:25:30.417   Installing the file.
    2016-11-03 17:25:30.451   Successfully installed the file.
    2016-11-03 17:25:30.451   -- File entry --
    2016-11-03 17:25:30.452   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\NoChart.pdf
    2016-11-03 17:25:30.452   Time stamp of our file: 2012-09-12 08:55:14.000
    2016-11-03 17:25:30.452   Dest file exists.
    2016-11-03 17:25:30.452   Time stamp of existing file: 2012-09-12 08:55:14.000
    2016-11-03 17:25:30.452   Version of our file: (none)
    2016-11-03 17:25:30.460   Version of existing file: (none)
    2016-11-03 17:25:30.460   Installing the file.
    2016-11-03 17:25:30.464   Successfully installed the file.
    2016-11-03 17:25:30.464   -- File entry --
    2016-11-03 17:25:30.465   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Fuel.png
    2016-11-03 17:25:30.465   Time stamp of our file: 2014-10-20 16:28:04.000
    2016-11-03 17:25:30.465   Dest file exists.
    2016-11-03 17:25:30.465   Time stamp of existing file: 2014-10-20 16:28:04.000
    2016-11-03 17:25:30.465   Version of our file: (none)
    2016-11-03 17:25:30.467   Version of existing file: (none)
    2016-11-03 17:25:30.467   Installing the file.
    2016-11-03 17:25:30.498   Successfully installed the file.
    2016-11-03 17:25:30.498   -- File entry --
    2016-11-03 17:25:30.498   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Tanks.PNG
    2016-11-03 17:25:30.498   Time stamp of our file: 2012-05-25 15:59:14.000
    2016-11-03 17:25:30.498   Dest file exists.
    2016-11-03 17:25:30.498   Time stamp of existing file: 2012-05-25 15:59:14.000
    2016-11-03 17:25:30.498   Version of our file: (none)
    2016-11-03 17:25:30.500   Version of existing file: (none)
    2016-11-03 17:25:30.500   Installing the file.
    2016-11-03 17:25:30.504   Successfully installed the file.
    2016-11-03 17:25:30.504   -- File entry --
    2016-11-03 17:25:30.505   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Zoom+.ico
    2016-11-03 17:25:30.505   Time stamp of our file: 2013-06-15 17:22:28.000
    2016-11-03 17:25:30.505   Dest file exists.
    2016-11-03 17:25:30.505   Time stamp of existing file: 2013-06-15 17:22:28.000
    2016-11-03 17:25:30.505   Version of our file: (none)
    2016-11-03 17:25:30.507   Version of existing file: (none)
    2016-11-03 17:25:30.507   Installing the file.
    2016-11-03 17:25:30.507   Successfully installed the file.
    2016-11-03 17:25:30.508   -- File entry --
    2016-11-03 17:25:30.508   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\Zoom-.ico
    2016-11-03 17:25:30.508   Time stamp of our file: 2013-06-15 17:23:50.000
    2016-11-03 17:25:30.508   Dest file exists.
    2016-11-03 17:25:30.508   Time stamp of existing file: 2013-06-15 17:23:50.000
    2016-11-03 17:25:30.508   Version of our file: (none)
    2016-11-03 17:25:30.510   Version of existing file: (none)
    2016-11-03 17:25:30.510   Installing the file.
    2016-11-03 17:25:30.511   Successfully installed the file.
    2016-11-03 17:25:30.511   -- File entry --
    2016-11-03 17:25:30.511   Dest filename: C:\Program Files (x86)\Concorde Performance System\Images\WX.ico
    2016-11-03 17:25:30.511   Time stamp of our file: 2013-06-15 18:44:40.000
    2016-11-03 17:25:30.511   Dest file exists.
    2016-11-03 17:25:30.511   Time stamp of existing file: 2013-06-15 18:44:40.000
    2016-11-03 17:25:30.511   Version of our file: (none)
    2016-11-03 17:25:30.513   Version of existing file: (none)
    2016-11-03 17:25:30.513   Installing the file.
    2016-11-03 17:25:30.514   Successfully installed the file.
    2016-11-03 17:25:30.514   -- File entry --
    2016-11-03 17:25:30.514   Dest filename: C:\Program Files (x86)\Concorde Performance System\Documentation\Change Log.txt
    2016-11-03 17:25:30.515   Time stamp of our file: 2015-10-15 11:19:28.000
    2016-11-03 17:25:30.515   Dest file exists.
    2016-11-03 17:25:30.515   Time stamp of existing file: 2015-10-15 11:19:28.000
    2016-11-03 17:25:30.515   Version of our file: (none)
    2016-11-03 17:25:30.516   Version of existing file: (none)
    2016-11-03 17:25:30.516   Installing the file.
    2016-11-03 17:25:30.517   Successfully installed the file.
    2016-11-03 17:25:30.517   -- File entry --
    2016-11-03 17:25:30.518   Dest filename: C:\Program Files (x86)\Concorde Performance System\Documentation\CPS 3.0 User Manual.pdf
    2016-11-03 17:25:30.518   Time stamp of our file: 2014-12-01 10:09:28.000
    2016-11-03 17:25:30.518   Dest file exists.
    2016-11-03 17:25:30.518   Time stamp of existing file: 2014-12-01 10:09:28.000
    2016-11-03 17:25:30.518   Version of our file: (none)
    2016-11-03 17:25:30.522   Version of existing file: (none)
    2016-11-03 17:25:30.522   Installing the file.
    2016-11-03 17:25:31.075   Successfully installed the file.
    2016-11-03 17:25:31.075   -- File entry --
    2016-11-03 17:25:31.075   Dest filename: C:\Program Files (x86)\Concorde Performance System\Documentation\CFM 3.0 User Manual.pdf
    2016-11-03 17:25:31.075   Time stamp of our file: 2014-09-11 09:01:04.000
    2016-11-03 17:25:31.075   Dest file exists.
    2016-11-03 17:25:31.075   Time stamp of existing file: 2014-09-11 09:01:04.000
    2016-11-03 17:25:31.075   Version of our file: (none)
    2016-11-03 17:25:31.080   Version of existing file: (none)
    2016-11-03 17:25:31.080   Installing the file.
    2016-11-03 17:25:31.675   Successfully installed the file.
    2016-11-03 17:25:31.675   -- File entry --
    2016-11-03 17:25:31.675   Dest filename: C:\Program Files (x86)\Concorde Performance System\Documentation\CDC 3.0 User Manual.pdf
    2016-11-03 17:25:31.675   Time stamp of our file: 2014-09-12 09:57:42.000
    2016-11-03 17:25:31.675   Dest file exists.
    2016-11-03 17:25:31.675   Time stamp of existing file: 2014-09-12 09:57:42.000
    2016-11-03 17:25:31.675   Version of our file: (none)
    2016-11-03 17:25:31.691   Version of existing file: (none)
    2016-11-03 17:25:31.691   Installing the file.
    2016-11-03 17:25:31.907   Successfully installed the file.
    2016-11-03 17:25:31.907   -- File entry --
    2016-11-03 17:25:31.907   Dest filename: C:\Program Files (x86)\Concorde Performance System\AutoSaveCleaner\AutoSaveCleaner.exe
    2016-11-03 17:25:31.907   Time stamp of our file: 2013-01-06 17:25:24.000
    2016-11-03 17:25:31.907   Dest file exists.
    2016-11-03 17:25:31.907   Time stamp of existing file: 2013-01-06 18:25:24.000
    2016-11-03 17:25:31.907   Version of our file: 1.0.0.0
    2016-11-03 17:25:31.907   Version of existing file: 1.0.0.0
    2016-11-03 17:25:31.907   Same version. Skipping.
    2016-11-03 17:25:31.907   -- File entry --
    2016-11-03 17:25:31.907   Dest filename: C:\Program Files (x86)\Concorde Performance System\AutoSaveCleaner\AutoSaveCleaner.txt
    2016-11-03 17:25:31.907   Time stamp of our file: 2013-01-07 18:14:44.000
    2016-11-03 17:25:31.907   Dest file exists.
    2016-11-03 17:25:31.907   Time stamp of existing file: 2013-01-07 18:14:44.000
    2016-11-03 17:25:31.907   Version of our file: (none)
    2016-11-03 17:25:31.907   Version of existing file: (none)
    2016-11-03 17:25:31.907   Installing the file.
    2016-11-03 17:25:31.907   Successfully installed the file.
    2016-11-03 17:25:31.907   -- File entry --
    2016-11-03 17:25:31.907   Dest filename: C:\Program Files (x86)\Concorde Performance System\AutoSaveCleaner\Data.dat
    2016-11-03 17:25:31.907   Time stamp of our file: 2013-01-07 18:14:48.000
    2016-11-03 17:25:31.907   Dest file exists.
    2016-11-03 17:25:31.907   Time stamp of existing file: 2013-01-07 18:14:48.000
    2016-11-03 17:25:31.907   Version of our file: (none)
    2016-11-03 17:25:31.907   Version of existing file: (none)
    2016-11-03 17:25:31.907   Installing the file.
    2016-11-03 17:25:31.907   Successfully installed the file.
    2016-11-03 17:25:31.907   -- Icon entry --
    2016-11-03 17:25:31.907   Dest filename: C:\Users\Public\Desktop\Concorde Performance System.lnk
    2016-11-03 17:25:31.907   Creating the icon.
    2016-11-03 17:25:31.940   Successfully created the icon.
    2016-11-03 17:25:31.941   -- Icon entry --
    2016-11-03 17:25:31.941   Dest filename: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Concorde Performance System\Concorde Performance System.lnk
    2016-11-03 17:25:31.941   Creating the icon.
    2016-11-03 17:25:31.943   Successfully created the icon.
    2016-11-03 17:25:31.943   -- Icon entry --
    2016-11-03 17:25:31.943   Dest filename: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Concorde Performance System\Change Log.txt.lnk
    2016-11-03 17:25:31.944   Creating the icon.
    2016-11-03 17:25:31.945   Successfully created the icon.
    2016-11-03 17:25:31.945   -- Icon entry --
    2016-11-03 17:25:31.945   Dest filename: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Concorde Performance System\ReadMe.txt.lnk
    2016-11-03 17:25:31.945   Creating the icon.
    2016-11-03 17:25:31.945   Successfully created the icon.
    2016-11-03 17:25:31.945   -- Icon entry --
    2016-11-03 17:25:31.945   Dest filename: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Concorde Performance System\AutoSaveCleaner.lnk
    2016-11-03 17:25:31.945   Creating the icon.
    2016-11-03 17:25:31.945   Successfully created the icon.
    2016-11-03 17:25:31.945   Installation process succeeded.
    2016-11-03 17:25:31.945   Need to restart Windows? No
    2016-11-03 17:25:33.364   Deinitializing Setup.
    2016-11-03 17:25:33.379   Log closed.
    Qu'en pensez vous?
    Cordialement
    Pierre

  6. #6
    Rédacteur/Modérateur
    Avatar de Andnotor
    Inscrit en
    Septembre 2008
    Messages
    5 683
    Détails du profil
    Informations personnelles :
    Localisation : Autre

    Informations forums :
    Inscription : Septembre 2008
    Messages : 5 683
    Points : 13 092
    Points
    13 092
    Par défaut
    Pour le premier message, la copie de fichier n'a pas encore démarré. J'ai l'impression que c'est la fixation de l'attribut hidden sur "{app}\Data" qui coince.

    Les autres messages sont plus parlants. Dave (Hello Dave_) a deux versions installées sur son poste : SimX et SimP3D.
    SimP3D (ou les fichiers connexes) est en cours d'utilisation et l'installateur ne peut pas mettre les fichiers à jour d'où les deux messages Abort/Retry/Ignore, un pour CFM.exe et l'autre pour CDC.exe. Un troisième survient ensuite pour CPSModulesStart.dll pour la même raison.

    On peut éviter ces derniers messages en spécifiant Flags: restartreplace mais un reboot sera nécessaire.
    (l'installateur aurait dû proposer de terminer ces applications lui-même par le RestartManager, étrange !)

  7. #7
    Membre habitué
    Profil pro
    Inscrit en
    Avril 2003
    Messages
    439
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2003
    Messages : 439
    Points : 161
    Points
    161
    Par défaut
    Merci beaucoup Andnotor pour cette réponse précise.

    L'attribut Hidden de "{app}\Data" était présent dans les versions de l'installeur qui fonctionnaient sans soucis (mais avec des fichier installés à des endroits inappropriés).
    Je ne pense donc pas que le problème vienne de là.

    Je viens de tester l'installation en ayant lancé SimP3D. Elle s'est déroulée sans problème sur ma machine qui a aussi SimX installé.

    DERNIÈRE MINUTE: L'utilisateur ayant fournit le dernier log m'explique que malgré les messages d'erreurs, le programme s'installe correctement et fonctionne normalement...

    Peut-être un autre piste?

    Bien cordialement
    Pierre

  8. #8
    Membre habitué
    Profil pro
    Inscrit en
    Avril 2003
    Messages
    439
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2003
    Messages : 439
    Points : 161
    Points
    161
    Par défaut
    Bonjour,

    J'ai entièrement ré écrit le script en utilisant le wizard de Inno et tout semble fonctionner.

    Merci Andnotor pour votre patience et vos conseils.

    Bien cordialement
    Pierre

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 2
    Dernier message: 12/03/2014, 09h48
  2. Runtime error can t call proc..
    Par Pierre95 dans le forum Outils
    Réponses: 8
    Dernier message: 01/07/2013, 09h07
  3. [Inno Setup] Message Exit Setup personalisé
    Par Rahim-US dans le forum Outils
    Réponses: 1
    Dernier message: 31/10/2009, 15h35
  4. [Inno Setup] Message de bienvenue
    Par lovedesitaliens dans le forum Outils
    Réponses: 2
    Dernier message: 17/10/2008, 09h26
  5. [Inno setup]Message temporaire
    Par ratapapa dans le forum Outils
    Réponses: 2
    Dernier message: 29/04/2008, 14h31

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo