gercols.dpr 115 KB
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 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846
(*
---------------------------------------------------------------------------------------------------------------------------------------------------------------
Copyright 2000, 2001, 2002, 2003, 2004, 2005 Dataprev - Empresa de Tecnologia e Informações da Previdência Social, Brasil

Este arquivo é parte do programa CACIC - Configurador Automático e Coletor de Informações Computacionais

O CACIC é um software livre; você pode redistribui-lo e/ou modifica-lo dentro dos termos da Licença Pública Geral GNU como
publicada pela Fundação do Software Livre (FSF); na versão 2 da Licença, ou (na sua opinião) qualquer versão.

Este programa é distribuido na esperança que possa ser  util, mas SEM NENHUMA GARANTIA; sem uma garantia implicita de ADEQUAÇÂO a qualquer
MERCADO ou APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU para maiores detalhes.

Você deve ter recebido uma cópia da Licença Pública Geral GNU, sob o título "LICENCA.txt", junto com este programa, se não, escreva para a Fundação do Software
Livre(FSF) Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

NOTA: O componente MiTeC System Information Component (MSIC) é baseado na classe TComponent e contém alguns subcomponentes baseados na classe TPersistent
      Este componente é apenas freeware e não open-source, e foi baixado de http://www.mitec.cz/Downloads/MSIC.zip
---------------------------------------------------------------------------------------------------------------------------------------------------------------
*)

program gercols;
{$R *.res}

uses
  Windows,
  SysUtils,
  Classes,
  StrUtils,
  Math,
  ActiveX,
  Registry,
  TLHELP32,
  JclRegistry,
  JclFileUtils,
  JclSysInfo,
  CACIC_Library in '..\CACIC_Library.pas',
  CACIC_Comm in '..\CACIC_Comm.pas',
  CACIC_VerifyAndGetModules in '..\CACIC_VerifyAndGetModules.pas',
  CACIC_WMI in '..\CACIC_WMI.pas';

{
type
  TServerBrowseDialogA0 = function(hwnd: HWND; pchBuffer: Pointer;
    cchBufSize: DWORD): bool;
  stdcall;
  ATStrings = array of string;
}

//***** VERIFICAR INATIVIDADE DE GERCOLS.EXE E ERROS GERADOS PELO CHKSIS NO EVENTVWR....

{$APPTYPE CONSOLE}
var strAcaoGerCols,
    strAux,
    strChkSisInfFileName,
    strFieldsAndValuesToRequest,
    strGerColsInfFileName,
    strMainProgramInfFileName,
    strResultSearch               : string;
    intAuxGerCols                 : integer;
    objCacic                      : TCACIC;

const APP_NAME            = 'gercols.exe';

function programaRodando(NomePrograma: String): Boolean;
var
  IsRunning, ContinueTest: Boolean;
  FSnapshotHandle: THandle;
  FProcessEntry32: TProcessEntry32;
begin
  IsRunning := False;
  FSnapshotHandle := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
  FProcessEntry32.dwSize := Sizeof(FProcessEntry32);
  ContinueTest := Process32First(FSnapshotHandle, FProcessEntry32);
  while ContinueTest do
  begin
    IsRunning :=  UpperCase(ExtractFileName(FProcessEntry32.szExeFile)) = UpperCase(NomePrograma);
    if IsRunning then  ContinueTest := False
    else ContinueTest := Process32Next(FSnapshotHandle, FProcessEntry32);
  end;
  CloseHandle(FSnapshotHandle);
  Result := IsRunning;
end;

// Gerador de Palavras-Chave
function geraPalavraChave: String;
var intLimite,
    intContaLetras : integer;
    strPalavra,
    strCaracter    : String;
begin
  objCacic.writeDebugLog('geraPalavraChave: Regerando palavra-chave...');
  Randomize;
  strPalavra  := '';
  intLimite  := RandomRange(10,30); // Gerarei uma palavra com tamanho mínimo 10 e máximo 30
  for intContaLetras := 1 to intLimite do
    Begin
      strCaracter := '.';
      while not (strCaracter[1] in ['0'..'9','A'..'Z','a'..'z']) do
        Begin
          if (strCaracter = '.') then strCaracter := '';
          Randomize;
          strCaracter := chr(RandomRange(1,250));
        End;

      strPalavra := strPalavra + strCaracter;
    End;
  Result := strPalavra;
  objCacic.writeDebugLog('geraPalavraChave: Nova Palavra-Chave gerada "'+Result+'"');
end;

function stringtoHex(Data: string): string;
var
  i, i2: Integer;
  s: string;
begin
  i2 := 1;
  for i := 1 to Length(Data) do
  begin
    Inc(i2);
    if i2 = 2 then
    begin
      s  := s + ' ';
      i2 := 1;
    end;
    s := s + IntToHex(Ord(Data[i]), 2);
  end;
  Result := s;
end;

procedure apagaTemps;
begin
  objCacic.deleteFileOrFolder(objCacic.getLocalFolderName + 'Temp\*.txt');
end;

procedure Sair;
Begin
  objCacic.Free;
  Halt(0);
End;

procedure finalizar(p_pausa:boolean);
Begin
  if not objCacic.isInDebugMode then
    apagaTemps;
  if p_pausa then sleep(2000); // Pausa de 2 segundos para conclusão de operações de arquivos.
End;

function lastPos(SubStr, S: string): Integer;
var
  Found, Len, Pos: integer;
begin
  Pos := Length(S);
  Len := Length(SubStr);
  Found := 0;
  while (Pos > 0) and (Found = 0) do
  begin
    if Copy(S, Pos, Len) = SubStr then
      Found := Pos;
    Dec(Pos);
  end;
  LastPos := Found;
end;

procedure checkModules;
Begin
  objCacic.writeDebugLog('checkModules: Verificando chksis.exe');
  verifyAndGetModules('chksis.exe',
                      objCacic.deCrypt(objCacic.getValueFromFile('Hash-Codes','CHKSIS.EXE',strChkSisInfFileName),false,true),
                      objCacic.getWinDir,
                      objCacic.getLocalFolderName,
                      objCacic,
                      strChkSisInfFileName);

  objCacic.writeDebugLog('checkModules: Verificando cacicservice.exe');
  verifyAndGetModules('cacicservice.exe',
                      objCacic.deCrypt(objCacic.getValueFromFile('Hash-Codes','CACICSERVICE.EXE',strChkSisInfFileName),false,true),
                      objCacic.getWinDir,
                      objCacic.getLocalFolderName,
                      objCacic,
                      strChkSisInfFileName);

  objCacic.writeDebugLog('checkModules: Verificando ' + objCacic.getMainProgramName);
  verifyAndGetModules(objCacic.getMainProgramName,
                      objCacic.getMainProgramHash,
                      objCacic.getLocalFolderName,
                      objCacic.getLocalFolderName,
                      objCacic,
                      strChkSisInfFileName);

  objCacic.writeDebugLog('checkModules: Verificando gercols.exe');
  verifyAndGetModules('gercols.exe',
                      objCacic.deCrypt( objCacic.getValueFromFile('Hash-Codes','GERCOLS.EXE',strChkSisInfFileName),false,true),
                      objCacic.getLocalFolderName + 'Modules',
                      objCacic.getLocalFolderName,
                      objCacic,
                      strChkSisInfFileName);

  objCacic.writeDebugLog('checkModules: Verificando mapacacic.exe');
  verifyAndGetModules('mapacacic.exe',
                      objCacic.deCrypt( objCacic.getValueFromFile('Hash-Codes','MAPACACIC.EXE',strChkSisInfFileName),false,true),
                      objCacic.getLocalFolderName + 'Modules',
                      objCacic.getLocalFolderName,
                      objCacic,
                      strChkSisInfFileName);

  // O módulo de Suporte Remoto é opcional...
  if (objCacic.getValueFromTags('srcacic',objCacic.getValueFromFile('Configs','CollectsDefinitions',strGerColsInfFileName)) = 'OK') then
    Begin
      objCacic.writeDailyLog('Verificando nova versão para módulo Suporte Remoto Seguro.');
      objCacic.writeDebugLog('checkModules: Verificando srcacicsrv.exe');
      // Caso encontre nova versão de srCACICsrv esta será gravada em Modules.
      verifyAndGetModules('srcacicsrv.exe',
                          objCacic.deCrypt( objCacic.getValueFromFile('Hash-Codes','SRCACICSRV.EXE',strChkSisInfFileName),false,true),
                          objCacic.getLocalFolderName + 'Modules',
                          objCacic.getLocalFolderName,
                          objCacic,
                          strChkSisInfFileName);
    End;
  objCacic.writeDebugLog('checkModules: Final');
  objCacic.writeDebugLog('checkModules: ' + DupeString(':',100));
End;

procedure getConfigs(p_mensagem_log : boolean);
var strRetorno,
    v_mensagem_log,
    strKeyWord,
    strForcaColeta                  : string;
    textfileKeyWord             : TextFile;
Begin
  Try
    // Verifico comunicação com o Módulo Gerente WEB.
    // Tratamentos de valores para tráfego POST:
    objCacic.setValueToFile('Configs','ConexaoOK','N', strGerColsInfFileName);

    strAcaoGerCols := 'Preparando teste de comunicação com Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').';

    objCacic.writeDebugLog('getConfigs: Teste de Comunicação.');

    Try
        Try
          strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get/test', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, 'Testando comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');

          if (strRetorno <> '0') Then
            Begin
              objCacic.setBoolCipher(not objCacic.isInDebugMode);
              objCacic.setValueToFile('Configs','ConexaoOK','S', strGerColsInfFileName);

              if (objCacic.getValueFromTags('WebManagerAddress', strRetorno,'<>') <> '') then
                Begin
                  strForcaColeta := objCacic.getValueFromTags('ForcaColeta', strRetorno, '<>');
//                  if strForcaColeta <> 'S' then
//                     objCacic.setValueToFile('Configs','col_patr_exe',
//                                          'n',
//                                          strGerColsInfFileName);
                  objCacic.setValueToFile('Configs','forca_coleta',
                                          strForcaColeta,
                                          strGerColsInfFileName);
                  objCacic.setValueToFile('Configs','WebManagerAddress'    ,objCacic.getValueFromTags('WebManagerAddress'    , strRetorno,'<>'), strChkSisInfFileName);
                  objCacic.setValueToFile('Configs','WebServicesFolderName',objCacic.getValueFromTags('WebServicesFolderName', strRetorno,'<>'), strChkSisInfFileName);
                  objCacic.setWebManagerAddress(objCacic.getValueFromTags('WebManagerAddress', strRetorno,'<>'));
                  objCacic.setWebServicesFolderName(objCacic.getValueFromTags('WebServicesFolderName', strRetorno,'<>'));
                End;

              strAcaoGerCols := 'IP validado pelo Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').';
              objCacic.writeDebugLog('getConfigs: ' + strAcaoGerCols);
            End;
        except
          on E : Exception do
            Begin
              objCacic.writeDebugLog('getConfigs: Lançando Exceção #2');
              objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #2 - Insucesso na comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');
              objCacic.writeDailyLog('Insucesso na comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');
            End;
        End;
    Except
    End;

    strAcaoGerCols := 'Setando TeFilaFTP=0';
    // Setando controle de FTP para 0 (0=tempo de espera para FTP   de algum componente do sistema)
    objCacic.setValueToFile('Configs','TeFilaFTP','0', strGerColsInfFileName);

    // Verifico e contabilizo as necessidades de FTP dos agentes (instalação ou atualização)
    // Para possível requisição de acesso ao grupo FTP... (Essa medida visa balancear o acesso aos servidores de atualização de versões, principalmente quando é um único S.A.V.)
    strAcaoGerCols := 'Verificando versões de agentes...';

    checkModules;

    // Caso tenha sido baixada uma versão deste agente, executo a finalização
    if (FileExists(objCacic.getLocalFolderName + 'Temp\gercols.exe')) then
      Begin
        objCacic.writeDebugLog('getConfigs: Finalizando para atualização de versão');
        Finalizar(true);
        Sair;
      End;

    v_mensagem_log  := 'Obtendo configurações a partir do Gerente WEB ('+objCacic.getWebManagerAddress+').';

    if (not p_mensagem_log) then v_mensagem_log := '';

    objCacic.writeDebugLog('getConfigs: objCacic.getWebManagerAddress: "' + objCacic.getWebManagerAddress + '"');
    if (Trim(objCacic.getWebManagerAddress) <> '') then
        begin
             objCacic.writeDebugLog('getConfigs: Obtendo nova palavra chave');
             // Gero e armazeno uma palavra-chave e a envio ao Gerente WEB para atualização no BD.
             // Essa palavra-chave será usada para o acesso ao Agente Principal
             strAux := GeraPalavraChave;
             objCacic.writeDebugLog('getConfigs: Guardando nova palavra chave: "' + strAux + '"');
             strAux := objCacic.enCrypt(strAux);
             objCacic.setValueToFile('Configs','TePalavraChave', strAux, strGerColsInfFileName);

             // Renova a palavra chave para o Servidor de Suporte Remoto Seguro
             strKeyWord := objCacic.deCrypt(strAux);
             strKeyWord := objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(strKeyWord));
             strKeyWord := objCacic.replaceInvalidHTTPChars(strKeyWord);

             objCacic.writeDebugLog('getConfigs: Criando cookie para srCACICsrv com nova palavra-chave "'+ strAux + '" => "'+strKeyWord+'"');

             AssignFile(textfileKeyWord,objCacic.getLocalFolderName + 'cacic_keyword.txt');
             Rewrite(textfileKeyWord);
             Append(textfileKeyWord);
             Writeln(textfileKeyWord,strKeyWord);
             CloseFile(textfileKeyWord);
             //
             strFieldsAndValuesToRequest := 'te_palavra_chave=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(strAux));
             strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get/config', strFieldsAndValuesToRequest, objCacic.getLocalFolderName,v_mensagem_log);
             objCacic.setBoolCipher(not objCacic.isInDebugMode);

             if (strRetorno <> '0') and
                (objCacic.getValueFromTags('WebManagerAddress',strRetorno,'<>') <> objCacic.getValueFromFile('Configs','WebManagerAddress', strChkSisInfFileName)) then
                Begin
                  v_mensagem_log := 'Endereço de Gerente WEB: ' + (objCacic.getValueFromTags('WebManagerAddress',strRetorno,'<>'));
                  objCacic.setWebManagerAddress((objCacic.getValueFromTags('WebManagerAddress',strRetorno,'<>')));
                  objCacic.setValueToFile('Configs','WebManagerAddress',objCacic.getValueFromTags('WebManagerAddress',strRetorno,'<>'), strChkSisInfFileName);
                  objCacic.writeDebugLog('getConfigs: Refazendo comunicação');
                  strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get/config', strFieldsAndValuesToRequest, objCacic.getLocalFolderName,v_mensagem_log);
                End;

             if (strRetorno <> '0') Then
              Begin
                strAcaoGercols := 'Armazenando em "' + strGerColsInfFileName + '" os valores obtidos.';
                objCacic.writeDebugLog('getConfigs: ' + strAcaoGerCols);

                //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                //Gravação no DatFileName dos valores de REDE, COMPUTADOR e EXECUÇÃO obtidos, para consulta pelos outros módulos...
                //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                objCacic.setValueToFile('Configs'   ,'CollectsDefinitions'            ,objCacic.getValueFromTags('CollectsDefinitions'              , strRetorno, '<>'), strGerColsInfFileName);
                objCacic.setValueToFile('Configs'   ,'TeServUpdates'                  ,objCacic.getValueFromTags('te_serv_updates'                  , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Configs'   ,'NuPortaServUpdates'             ,objCacic.getValueFromTags('nu_porta_serv_updates'            , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Configs'   ,'TePathServUpdates'              ,objCacic.getValueFromTags('te_path_serv_updates'             , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Configs'   ,'NmUsuarioLoginServUpdates'      ,objCacic.getValueFromTags('nm_usuario_login_serv_updates'    , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Configs'   ,'TeSenhaLoginServUpdates'        ,objCacic.getValueFromTags('te_senha_login_serv_updates'      , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Hash-Codes',objCacic.getMainProgramName      ,objCacic.getValueFromTags(objCacic.getMainProgramName+'_HASH', strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Hash-Codes','CHKSIS.EXE'                     ,objCacic.getValueFromTags('CHKSIS.EXE_HASH'                  , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Hash-Codes','GERCOLS.EXE'                    ,objCacic.getValueFromTags('GERCOLS.EXE_HASH'                 , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Hash-Codes','SRCACICSRV.EXE'                 ,objCacic.getValueFromTags('SRCACICSRV.EXE_HASH'              , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Hash-Codes','CACICSERVICE.EXE'               ,objCacic.getValueFromTags('CACICSERVICE.EXE_HASH'            , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Hash-Codes','MAPACACIC.EXE'                  ,objCacic.getValueFromTags('MAPACACIC.EXE_HASH'               , strRetorno, '<>'), strChkSisInfFileName);
                objCacic.setValueToFile('Configs'   ,'InExibeErrosCriticos'           ,objCacic.getValueFromTags('in_exibe_erros_criticos'          , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'TeSenhaAdmAgente'               ,objCacic.getValueFromTags('te_senha_adm_agente'              , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'NuIntervaloExec'                ,objCacic.getValueFromTags('nu_intervalo_exec'                , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'NuExecApos'                     ,objCacic.getValueFromTags('nu_exec_apos'                     , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'InExibeBandeja'                 ,objCacic.getValueFromTags('in_exibe_bandeja'                 , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'TeJanelasExecucao'              ,objCacic.getValueFromTags('te_janelas_excecao'               , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'NuPortaSrCacic'                 ,objCacic.getValueFromTags('nu_porta_srcacic'                 , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'IdLocal'                        ,objCacic.getValueFromTags('id_local'                         , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'NuTimeOutSrCacic'               ,objCacic.getValueFromTags('nu_timeout_srcacic'               , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'CsPermitirDesativarSrCacic'     ,objCacic.getValueFromTags('cs_permitir_desativar_srcacic'    , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'TeEnderecosMacInvalidos'        ,objCacic.getValueFromTags('te_enderecos_mac_invalidos'       , strRetorno, '<>'), strMainProgramInfFileName);
                objCacic.setValueToFile('Configs'   ,'timerForcaColeta'               ,objCacic.getValueFromTags('timerForcaColeta'                 , strRetorno, '<>'), strMainProgramInfFileName);
              end;
        end;
  Except
   on E : Exception do
     Begin
       objCacic.writeDebugLog('getConfigs: Lançando Exceção #5');
       objCacic.writeExceptionLog(E.Message,E.ClassName,'getConfigs: Exceção #5');
     End;
  End;
end;

procedure getMapa();
var strRetorno: string;
Begin
  Try
    strAcaoGerCols := 'Preparando teste de comunicação com Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').';

    objCacic.writeDebugLog('getMapa: Recebendo informações do módulo de patrimônio.');

    Try
        strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get/mapa', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, 'Pegando informações do módulo de patrimônio. ('+objCacic.getWebManagerAddress+').');

        if (strRetorno <> '0') Then
        Begin
          objCacic.setBoolCipher(not objCacic.isInDebugMode);
          if (objCacic.getValueFromTags('Comm_Status', strRetorno,'<>') = 'OK') then
          Begin
			      objCacic.setValueToFile('Configs','Patrimonio',
                                    objCacic.getValueFromTags('Patrimonio', strRetorno, '<>'),
                                    strGerColsInfFileName);
            objCacic.setValueToFile('Configs','termos_patrimonio',
                                    objCacic.getValueFromTags('Mensagem', strRetorno,'<>'),
                                    strGerColsInfFileName);
          End;
        End;
    except
        on E : Exception do
        Begin
          objCacic.writeDebugLog('getTest: Lançando Exceção #2');
          objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #2 - Insucesso na comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');
          objCacic.writeDailyLog('Insucesso na comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');
        End;
    End;
  Except
   on E : Exception do
     Begin
       objCacic.writeDebugLog('getMapa: Lançando Exceção #5');
       objCacic.writeExceptionLog(E.Message,E.ClassName,'getMapa: Exceção #5');
     End;
  End;
end;

procedure getTest();
var strRetorno: string;
Begin
  Try
    // Verifico comunicação com o Módulo Gerente WEB.
    // Tratamentos de valores para tráfego POST:
    objCacic.setValueToFile('Configs','ConexaoOK','N', strGerColsInfFileName);

    strAcaoGerCols := 'Preparando teste de comunicação com Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').';

    objCacic.writeDebugLog('getTest: Teste de Comunicação.');

    Try
        strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'get/test', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, 'Testando comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');

        if (strRetorno <> '0') Then
        Begin
          objCacic.setBoolCipher(not objCacic.isInDebugMode);
          objCacic.setValueToFile('Configs','ConexaoOK','S', strGerColsInfFileName);
          if (objCacic.getValueFromTags('WebManagerAddress', strRetorno,'<>') <> '') then
          Begin
			      objCacic.setValueToFile('Configs','forca_coleta',
                                    objCacic.getValueFromTags('ForcaColeta', strRetorno, '<>'),
                                    strGerColsInfFileName);
            objCacic.setValueToFile('Configs','WebManagerAddress'    ,objCacic.getValueFromTags('WebManagerAddress'    , strRetorno,'<>'), strChkSisInfFileName);
            objCacic.setValueToFile('Configs','WebServicesFolderName',objCacic.getValueFromTags('WebServicesFolderName', strRetorno,'<>'), strChkSisInfFileName);
            objCacic.setWebManagerAddress(objCacic.getValueFromTags('WebManagerAddress', strRetorno,'<>'));
            objCacic.setWebServicesFolderName(objCacic.getValueFromTags('WebServicesFolderName', strRetorno,'<>'));
          End;

          strAcaoGerCols := 'IP validado pelo Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').';
          objCacic.writeDebugLog('getTest: ' + strAcaoGerCols);
        End;
    except
        on E : Exception do
        Begin
          objCacic.writeDebugLog('getTest: Lançando Exceção #2');
          objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #2 - Insucesso na comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');
          objCacic.writeDailyLog('Insucesso na comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+').');
        End;
    End;
  Except
   on E : Exception do
     Begin
       objCacic.writeDebugLog('getTest: Lançando Exceção #5');
       objCacic.writeExceptionLog(E.Message,E.ClassName,'getTest: Exceção #5');
     End;
  End;
end;

procedure criaCookie(strFileName : String);
var textFileAguarde : TextFile;
Begin
  Try
      // A existência e bloqueio do arquivo abaixo evitará que o Agente Principal chame o GerCols quando este estiver em funcionamento
      AssignFile(textFileAguarde,objCacic.getLocalFolderName + 'Temp\' + strFileName); {Associa o arquivo a uma variável do tipo TextFile}

      {$IOChecks off}
      Reset(textFileAguarde); {Abre o arquivo texto}
      {$IOChecks on}

      if (IOResult <> 0) then // Arquivo não existe, será recriado.
       Rewrite (textFileAguarde);

      Append(textFileAguarde);
      Writeln(textFileAguarde,'Apenas uma marca para o Agente Principal esperar o término de GerCols');

      Append(textFileAguarde);
      Writeln(textFileAguarde,'Obs.: Solução temporária, até a implementação de troca de mensagens (TMessages)');

      Append(textFileAguarde);
  Except
   on E : Exception do
     Begin
       objCacic.writeDebugLog('criaCookie: Lançando Exceção #1');
       objCacic.writeExceptionLog(E.Message,E.ClassName,'criaCookie: Exceção #1');
     End;
  End;
End;

// Dica baixada de http://www.marcosdellantonio.net/2007/06/14/operador-if-ternario-em-delphi-e-c/
// Fiz isso para não ter que acrescentar o componente Math ao USES!
function iif(condicao : boolean; resTrue, resFalse : Variant) : Variant;
  Begin
    if condicao then
      Result := resTrue
    else
      Result := resFalse;
  End;
// Baixada de http://www.infoeng.hpg.ig.com.br/borland_delphi_dicas_2.htm
function LetrasDrives: string;
var
Drives: DWord;
I, Tipo: byte;
v_Unidade : string;
begin
Result := '';
Drives := GetLogicalDrives;
if Drives <> 0 then
for I := 65 to 90 do
  if ((Drives shl (31 - (I - 65))) shr 31) = 1 then
    Begin
      v_Unidade := Char(I) + ':\';
      Tipo := GetDriveType(PChar(v_Unidade));
      case Tipo of
        DRIVE_FIXED: Result := Result + Char(I);
      end;
    End;
end;

procedure GetSubDirs(Folder:string; sList:TStringList);
 var
  sr:TSearchRec;
begin
  if FindFirst(Folder+'*.*',faDirectory,sr)=0 then
   try
    repeat
      if(sr.Attr and faDirectory)=faDirectory then
       sList.Add(sr.Name);
    until FindNext(sr)<>0;
   finally
    FindClose(sr);
   end;
end;

// By Muad Dib 2003
// at http://www.planet-source-code.com.
// Excelente!!!
function SearchFile(p_Drive,p_File:string) : boolean;
var sr:TSearchRec;
    sDirList:TStringList;
    i:integer;
begin
   Result := false;
   strResultSearch := '';
   if FindFirst(p_Drive+p_File,faAnyFile,sr) = 0 then
    Begin
      strResultSearch := p_Drive+p_File;
      Result := true;
    End
   else
    Begin
     repeat
     until FindNext(sr)<>0;
        FindClose(sr);
        sDirList:= TStringList.Create;
        try
         GetSubDirs(p_Drive,sDirList);
         for i:=0 to sDirList.Count-1 do
            if (sDirList[i]<>'.') and (sDirList[i]<>'..') then
             begin
              //Application.ProcessMessages;
              if (SearchFile(IncludeTrailingPathDelimiter(p_Drive+sDirList[i]),p_File)) then
                Begin
                  Result := true;
                  Break;
                End;
             end;
         finally
         sDirList.Free;
    End;
   end;
end;
// Importado de Jedi Project
function RegNativeReadStringDef(const RootKey: DelphiHKEY; const Key, Name: string; Def: string): string;
var
  LastAccess: TJclRegWOW64Access;
begin
  LastAccess := RegGetWOW64AccessMode;
  try
    RegSetWOW64AccessMode(raNative);
    Result := RegReadStringDef(RootKey, Key, Name, Def);
  finally
    RegSetWOW64AccessMode(LastAccess);
  end;
end;

function GetAcrobatReaderVersion: String;
var Reg_GVAR : TRegistry;
    Lista_GVAR: TStringList;
    strChave : String;
Begin
      Reg_GVAR := TRegistry.Create;
      Reg_GVAR.LazyWrite := False;
      Lista_GVAR := TStringList.Create;
      Reg_GVAR.Rootkey := HKEY_LOCAL_MACHINE;
      strChave := '\Software\Adobe\Acrobat Reader';
      Reg_GVAR.OpenKeyReadOnly(strChave);
      Reg_GVAR.GetKeyNames(Lista_GVAR);
      Reg_GVAR.CloseKey;
      If Lista_GVAR.Count > 0 Then
      Begin
        Lista_GVAR.Sort;
        Result := Lista_GVAR.Strings[Lista_GVAR.Count - 1];
      end;
      Lista_GVAR.Free;
      Reg_GVAR.Free;
end;

function GetJREVersion: String;
var strVersao: string;
begin
    strVersao := '';
    strVersao := Trim(objCacic.getValueRegistryKey('HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Runtime Environment\CurrentVersion'));
    Result := strVersao;
end;

function GetMozillaVersion: String;
var strVersao: string;
begin
    strVersao := '';
    strVersao := Trim(objCacic.getValueRegistryKey('HKEY_LOCAL_MACHINE\Software\mozilla.org\Mozilla\CurrentVersion'));
    Result := strVersao;
end;
function GetADOVersion: string;
begin
  Result := RegNativeReadStringDef(HKLM, '\SOFTWARE\Microsoft\DataAccess', 'Version', '');
end;
function GetBDELocation: string;
begin
  Result := ExcludeTrailingPathDelimiter(RegReadStringDef(HKLM,
    '\SOFTWARE\Borland\Database Engine', 'DLLPATH', ''));
end;

function GetBDEVersion: string;
begin
  Result := IncludeTrailingPathDelimiter(GetBDELocation) + 'idapi32.dll';
  if not VersionResourceAvailable(Result) then
    Result := IncludeTrailingPathDelimiter(GetBDELocation) + 'bdeadmin.exe';

  if VersionResourceAvailable(Result) then
  begin
    with TJclFileVersionInfo.Create(Result) do
    try
      Result := FileVersion;
    finally
      Free;
    end;
  end
  else
    Result := '';
end;

function GetDirectXVersion: string;
begin
  Result := RegNativeReadStringDef(HKLM, '\SOFTWARE\Microsoft\DirectX', 'Version', '');
end;

function GetIEVersion: string;
begin
  Result := RegNativeReadStringDef(HKLM, '\SOFTWARE\Microsoft\Internet Explorer', 'Version', '');
end;

function GetODBCVersion: string;
begin
  Result := objCacic.GetVersionInfo(objCacic.getWinDir + 'System32\odbc32.dll');
end;

function GetOpenGLVersion: string;
var
  AVendor: AnsiString;
  ASResult: AnsiString;
begin
  if not JclSysInfo.GetOpenGLVersion(GetActiveWindow, ASResult, AVendor) then
    Result := ''
  else
    Result := string(ASResult);
end;

function GetDAOVersion: String;
var sPath: string;
    iError, iResult: integer;
    rDirInfo: TSearchRec;
begin
  iResult := 0;
  sPath := objCacic.getHomeDrive +'\Program Files\Common Files\' +'Microsoft Shared\DAO\dao*.dll';

  // Loop thru to find the MAX DLL version on disk
  iError := FindFirst(sPath, faAnyFile, rDirInfo);

  while iError = 0 do
    begin
      iResult := Max(iResult, StrToIntDef(copy(rDirInfo.Name, 4, 3), 0));
      iError := FindNext(rDirInfo);
      if iError <> 0 then
      FindClose(rDirInfo);
    end;
  Result := FormatFloat('##0.00', (iResult / 100.0));
end;

// Funcao que le os valores de software instalados no Registro do Windows
Function DisplayKeys(const Key: string; const Depth: Integer): String;
var
  i: Integer;
  SubKeys: TStringList;
  Registry: TRegistry;
  SubRegistry: TRegistry;
  saida: String;
begin
  Registry := TRegistry.Create(KEY_WOW64_64KEY);
  SubRegistry := TRegistry.Create(KEY_WOW64_64KEY);
  Registry.RootKey := HKEY_LOCAL_MACHINE;
  if Registry.OpenKeyReadOnly(Key) then begin
    Try
      SubKeys := TStringList.Create;
      Try
        Registry.GetKeyNames(SubKeys);
        // Abre a tag com o nome da chave
        //saida := '[SoftwareList]';
        saida := '';

        // Adiciona o pai
        SubRegistry.RootKey := HKEY_LOCAL_MACHINE;

        for i := 0 to SubKeys.Count-1 do begin
          //Writeln(StringOfChar(' ', Depth*2) + SubKeys[i]);
          //DisplayKeys(Key + '\' + SubKeys[i], Depth+1);
          // Essa linha coloca o valor da tag do registro
          saida := saida + '[Software][IDSoftware]' + SubKeys[i] + '[/IDSoftware]';

          // Abre a tag do registro
          //Names := TStringList.Create;
          SubRegistry.OpenKeyReadOnly(Key + '\' + SubKeys[i]);

          // Agora coloca o valor do registro dentro da tag
          saida := saida + '[DisplayName]' + SubRegistry.ReadString('DisplayName') + '[/DisplayName]';
          saida := saida + '[DisplayVersion]' + SubRegistry.ReadString('DisplayVersion') + '[/DisplayVersion]';
          saida := saida + '[URLInfoAbout]' + SubRegistry.ReadString('URLInfoAbout') + '[/URLInfoAbout]';
          saida := saida + '[Publisher]' + SubRegistry.ReadString('Publisher') + '[/Publisher]';

          // Fecho o registro e a tag
          SubRegistry.CloseKey;
          //SubRegistry.Free;

          // Fecha a tag do registro
          saida := saida + '[/Software]';

          // Chamada recursiva para tags que possuem valores internos
          DisplayKeys(Key + '\' + SubKeys[i], Depth+1);
        end;

        // Fecha a tag do software
        //saida := saida + '[/SoftwareList]';
      Finally
        SubKeys.Free;
      End;
    Finally
      Registry.CloseKey;
      Registry.Free;
    End;
    Result := saida;
  end;
end;

// Procedimento que chama a lista de softwares do Sistema Operacional
Function SoftwareList: String;
var
  strChave: String;
  strChave6432: String;
  outString: String;
  outString6432: String;
begin
    // Esse registro é onde vamos buscar a chave do SO
    strChave     := '\Software\Microsoft\Windows\CurrentVersion\Uninstall';
    strChave6432 := '\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall';
    // Passo aqui o registro e a profundidade dos campos que quero ver
    outString6432 := DisplayKeys(strChave6432, 3);
    outString := DisplayKeys(strChave, 3);
//    objCacic.setValueToFile('collects', 'colsoft_puro', outString, 'c:\Cacic\colsoft.inf');
    // Retorno uma string com todas as tags coletadas do registro
    if ((outString <> outString6432) and (outString6432 <> '')) then
      Result := outString + outString6432
    else
      result := outString;
end;

// Procedimento que executa a coleta de hardware
Function ColetaHardware: String;
var
  outString: String;
begin
  // Coletas de todos os atributos de hardware
  outString := fetchWmiValues('Win32_Keyboard', 'Availability,Caption,Description,InstallDate,Manufacturer,Name', objCacic.getLocalFolderName);
  outString := outString + fetchWmiValues('Win32_PointingDevice', 'Availability,Caption,Description,InstallDate,Manufacturer,Name', objCacic.getLocalFolderName);
  outString := outString + fetchWmiValues('Win32_PhysicalMedia ', 'Caption,Description,InstallDate,Name,Manufacturer,Model,SKU,SerialNumber,Tag,Version,PartNumber,OtherIdentifyingInfo,Capacity,MediaType,MediaDescription', objCacic.getLocalFolderName);
  outString := outString + fetchWmiValues('Win32_BaseBoard', 'Caption,ConfigOptions,Depth,Description,Height,HostingBoard,InstallDate,Manufacturer,Model,Name,OtherIdentifyingInfo,PartNumber,Product,RequirementsDescription,SerialNumber,SKU,SlotLayout,SpecialRequirements,Tag,Version,Weight,Width', objCacic.getLocalFolderName);
  // Tenho que dividir a string em dois pedaços porque o Delphi não aceita strings individuais com mais de 255 caracteres
  outString := outString + fetchWmiValues('Win32_BIOS', 'BiosCharacteristics,BIOSVersion,BuildNumber,Caption,CodeSet,Description,IdentificationCode,InstallDate,Manufacturer,Name,OtherTargetOS,PrimaryBIOS,ReleaseDate,SerialNumber,SMBIOSBIOSVersion,SMBIOSMajorVersion,SMBIOSMinorVersion,' + 'BIOSPresent,SoftwareElementID,TargetOperatingSystem,Version', objCacic.getLocalFolderName);
  outString := outString + fetchWmiValues('Win32_MemoryDevice', 'Access,Availability,BlockSize,Caption,Description,DeviceID,EndingAddress,InstallDate,Name,NumberOfBlocks,PNPDeviceID,Purpose,SystemLevelAddress,SystemName', objCacic.getLocalFolderName);
  outString := outString + fetchWmiValues('Win32_PhysicalMemory', 'BankLabel,Capacity,Caption,DataWidth,Description,DeviceLocator,FormFactor,InstallDate,InterleaveDataDepth,InterleavePosition,Manufacturer,MemoryType,Model,Name,OtherIdentifyingInfo,PartNumber,PositionInRow,' + 'SerialNumber,SKU,Speed,Tag,TotalWidth,TypeDetail,Version', objCacic.getLocalFolderName);
  outString := outString + fetchWmiValues('Win32_Processor', 'AddressWidth,Architecture,Availability,Caption,CreationClassName,DataWidth,Description,DeviceID,ExtClock,Family,InstallDate,L2CacheSize,L2CacheSpeed,L3CacheSize,L3CacheSpeed,Level,LoadPercentage,Manufacturer,'+ 'MaxClockSpeed,Name,NumberOfCores,NumberOfLogicalProcessors,OtherFamilyDescription,PNPDeviceID,ProcessorId,ProcessorType,Revision,Role,SocketDesignation,SystemName,UniqueId,UpgradeMethod,Version,VoltageCaps', objCacic.getLocalFolderName);
  outString := outString + fetchWmiValues('Win32_Printer', 'Attributes,Availability,Caption,CharSetsSupported,Comment,CurrentCharSet,Default,Description,DeviceID,Direct,DriverName,HorizontalResolution,InstallDate,JobCountSinceLastReset,KeepPrintedJobs,LanguagesSupported,' + 'Local,Location,MarkingTechnology,MaxCopies,MaxNumberUp,MaxSizeSupported,MimeTypesSupported,Name,Network,PaperSizesSupported,PaperTypesAvailable,Parameters,PNPDeviceID,PortName,PrintProcessor,' + 'ServerName,Shared,ShareName,SpoolEnabled,SystemName,VerticalResolution,WorkOffline', objCacic.getLocalFolderName);

  // Retorna uma string com todas as coletas
  Result := outString;

end;


procedure executeGerCols;
var boolFound : boolean;
var strActionDefinition,
    strAux,
    strAux1,
    strAux3,
    strAux4,
    strChaveRegistro,
    strClassesAndProperties,
    strColetaAnterior,
    strColetaAtual,
    strCollectsDefinitions,
    strDate,
    strDirTrend,
    strDrive,
    strDtHrInstalacao,
    strFileName,
    strInAtivo,
    strLetrasDrives,
    strNomeExecutavel,
    strNuVersaoEngine,
    strNuVersaoPattern,
    strRetorno,
    strTeServidor,
    strTripa,
    tstrColetaSoftware,
    tstrColetaHardware,
    tstrColetaComputador,
    strValorChavePerfis   : String;

    intAux4,
    intLoopActions,
    intLoopClasses,
    intLoopExecutaGerCols,
    intTotalExecutedCollects,
    intTotalSendedCollects    : integer;

    tstringlistLista1RCO{,
    tstringlistListaRCC}   : TStringList;

    tstringsActions,
    tstringsClasses,
    tstringsLista2RCO,
    tstringsTripa2,
    tstringsTripa3        : TStrings;
    searchRecResult       : TSearchRec;  // Necessário apenas para Win9x
Begin
  Try

    // Parâmetros possíveis (aceitos)
    //   /collect        =>  Chamada para ativação das coletas
    //   /recuperaSR     =>  Chamada para tentativa de recuperação do módulo srCACIC
    // USBinfo           =>  Informação sobre dispositivo USB inserido/removido
    // RCActions         =>  Informação sobre ações durante conexão de suporte remoto
    // UpdatePrincipal   =>  Atualização do Agente Principal

    // Chamada com informação de ações realizadas na sessão de suporte remoto
    if (objCacic.getParam('RCActions') <> '') then
      begin
        objCacic.writeDebugLog('executeGerCols: Informações de Ações Recebidas: "' + objCacic.getParam('RCActions') + '"');
        strAcaoGercols := 'Informando ao Gerente WEB ('+objCacic.getWebManagerAddress+') sobre ações durante suporte remoto.';

        strFieldsAndValuesToRequest := 'te_rcactions=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.getParam('RCActions')));
        objCacic.writeDebugLog('executeGerCols: Preparando para empacotar "'+strFieldsAndValuesToRequest+'"');
        strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'gercols/set/srcacic/action', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, 'Enviando informações sobre ações durante suporte remoto ao Gerente WEB ('+objCacic.getWebManagerAddress+')!');

        Finalizar(true);
      end;

    // Primeira chamada efetuada pelo Agente Principal para posterior ação de coletas
    If FindCmdLineSwitch('getConfigs', True) Then
    Begin
         getConfigs(true);
         Finalizar(false);
    End
    //Chamada realizada para verificar se há coleta a ser forçada.
    else if FindCmdLineSwitch ('getTest', True) then
    begin
        getTest();
        Finalizar(false);
    end;

    // Chamada efetuada pelo Agente Principal quando da existência de temp\<AgentePrincipal>.exe para AutoUpdate
    If FindCmdLineSwitch('UpdatePrincipal', True) Then
      Begin
         CriaCookie(objCacic.getLocalFolderName + 'Temp\aguarde_UPDATE.txt');
         objCacic.writeDebugLog('executeGerCols: Opção /UpdatePrincipal recebida...');
         // 15 segundos de tempo total até a execução do novo Agente Principal
         sleep(7000);
         strAcaoGercols := 'Atualização do Agente Principal - Excluindo '+objCacic.getLocalFolderName + objCacic.getMainProgramName;
         objCacic.deleteFileOrFolder(objCacic.getLocalFolderName + objCacic.getMainProgramName);
         sleep(2000);

         strAcaoGercols := 'Atualização do Agente Principal - Copiando '+objCacic.getLocalFolderName + 'Temp\'+objCacic.getMainProgramName+' para '+objCacic.getLocalFolderName + objCacic.getMainProgramName;
         objCacic.writeDebugLog('executeGerCols: Movendo '+objCacic.getLocalFolderName + 'Temp\'+objCacic.getMainProgramName+' para '+objCacic.getLocalFolderName + objCacic.getMainProgramName);
         MoveFile(pChar(objCacic.getLocalFolderName + 'Temp\'+ objCacic.getMainProgramName),pChar(objCacic.getLocalFolderName + objCacic.getMainProgramName));
         sleep(2000);

         objCacic.setValueToFile('Configs','NuExecApos','12345', strMainProgramInfFileName); // Para que o Agente Principal comande a coleta logo após 1 minuto...
         sleep(2000);

         objCacic.writeDebugLog('executeGerCols: Invocando atualização do Agente Principal...');

         strAcaoGercols := 'Atualização do Agente Principal - Invocando '+objCacic.getLocalFolderName + objCacic.getMainProgramName + ' /atualizacao';
         Finalizar(false);

         objCacic.createOneProcess(objCacic.getLocalFolderName + objCacic.getMainProgramName + ' /atualizacao', false);

         Sair;
      End;

    // Chamada efetuada pelo Agente Principal quando o usuário clica no menu "Ativar Suporte Remoto" e o módulo srCACICsrv.exe não
    // tem seu HashCode validado
    If FindCmdLineSwitch('recuperaSR', True) Then
      Begin
        objCacic.writeDebugLog('executeGerCols: Opção /recuperaSR recebida...');
        strAcaoGercols := 'Verificando/Recuperando srCACIC.';
        objCacic.writeDebugLog('executeGerCols: Chamando Verificador/Atualizador...');

        verifyAndGetModules('srcacicsrv.exe',
                            objCacic.deCrypt(objCacic.getValueFromFile('Hash-Codes','SRCACICSRV.EXE',strChkSisInfFileName),false,true),
                            objCacic.getLocalFolderName + 'Modules',
                            objCacic.getLocalFolderName,
                            objCacic,
                            strChkSisInfFileName);
        Finalizar(false);
        objCacic.CriaTXT(objCacic.getLocalFolderName+'Temp','recuperaSR','Tentativa de Recuperação do módulo srCACIC.');
        Sair;
      End;

    // Chamada com informação de dispositivo USB inserido/removido
    // Envio da informação sobre o dispositivo USB ao Gerente WEB
    if (objCacic.getParam('USBInfo') <> '') then
      begin
        objCacic.writeDebugLog('executeGerCols: Parâmetro USBinfo recebido: "' + objCacic.getParam('USBInfo') + '"');
        strAcaoGercols := 'Informando ao Gerente WEB ('+objCacic.getWebManagerAddress+') sobre dispositivo USB inserido/removido.';

        strFieldsAndValuesToRequest := 'te_usb_info=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.getParam('USBInfo')));
        objCacic.writeDebugLog('executeGerCols: Preparando para empacotar "'+strFieldsAndValuesToRequest+'"');
        strRetorno := Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'gercols/set/usbdetect', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, 'Enviando informações sobre ' + IfThen(Copy(objCacic.getParam('USBInfo'),1,1)='I','Inserção','Remoção')+ ' de dispositivo USB ao Gerente WEB ('+objCacic.getWebManagerAddress+')!');
        objCacic.setBoolCipher(not objCacic.isInDebugMode);
        if (objCacic.getValueFromTags('nm_device', strRetorno, '<>') <> '') then
          objCacic.writeDailyLog('Dispositivo USB ' + IfThen(Copy(objCacic.getParam('USBInfo'),1,1)='I','Inserido','Removido')+': "' + objCacic.getValueFromTags('nm_device', strRetorno, '<>')+'"');

        Finalizar(true);
      end;

    // Chamada temporizada efetuada pelo Agente Principal
    If FindCmdLineSwitch('collect', True) Then
      Begin
        objCacic.writeDebugLog('executeGerCols: Parâmetro(opção) /collect recebido...');
        strAcaoGercols            := 'GerCols invocado para coletas...';
        intTotalExecutedCollects  := 0;
        intTotalSendedCollects    := 0;

        getConfigs(true);

        // Abaixo eu testo se existe um endereço configurado para não disparar os procedimentos de coleta em vão.
        if (objCacic.getWebManagerAddress <> '') then
            begin
                checkModules;

                if (FileExists(objCacic.getLocalFolderName + 'Temp\gercols.exe')) or
                   (FileExists(objCacic.getLocalFolderName + 'Temp\' + objCacic.getMainProgramName))  then
                    Begin
                      objCacic.setValueToFile('Hash-Codes',objCacic.getMainProgramName,objCacic.enCrypt( objCacic.getFileHash(objCacic.getLocalFolderName + 'Temp\' + objCacic.getMainProgramName),false,true), strChkSisInfFileName);
                      objCacic.writeDailyLog('Finalizando... (Update em ± 1 minuto).');
                      Finalizar(false);
                      Sair;
                    End;

                objCacic.writeDailyLog('Verificando configuração de coletas.');

                strCollectsDefinitions := objCacic.deCrypt(objCacic.getValueFromFile('Configs','CollectsDefinitions', strGerColsInfFileName));

                if  not FileExists(objCacic.getLocalFolderName + 'Temp\gercols.exe')  then
                    begin
                      tstringsActions := objCacic.explode(objCacic.getValueFromTags('Actions',strCollectsDefinitions),',');
                      for intLoopActions := 0 to tstringsActions.Count - 1 do
                        Begin
                           strColetaAtual              := '';
                           strFieldsAndValuesToRequest := 'CollectType=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(tstringsActions[intLoopActions])) ;
                           objCacic.writeDebugLog('executeGerCols: CollectType atual => "' + tstringsActions[intLoopActions] + '"');

                           objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_Begin'      , ''  , strGerColsInfFileName);
                           objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_End'        , ''  , strGerColsInfFileName);
                           objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_Send_Status', '0' , strGerColsInfFileName);

                           strActionDefinition := objCacic.getValueFromTags(tstringsActions[intLoopActions],strCollectsDefinitions);
                           objCacic.writeDebugLog('executeGerCols: strActionDefinition => "' + strActionDefinition + '"');
                           if (strActionDefinition <> '') then
                              begin
                                objCacic.writeDebugLog('executeGerCols: Data/Hora Coleta Forçada ' + UpperCase(tstringsActions[intLoopActions]) + ': '+objCacic.getValueFromTags('DT_HR_COLETA_FORCADA',strActionDefinition));
                                objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_Begin',FormatDateTime('yyyymmddhhnnss', Now), strGerColsInfFileName);

                                if (intLoopActions = 0) then objCacic.writeDailyLog('Início de Coletas do Intervalo');

                                objCacic.writeDailyLog('Efetuando coleta de informações sobre ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition) + '.');

                                if (tstringsActions[intLoopActions] = 'col_anvi') then
                                  Begin
                                    Try
                                       Inc(intTotalExecutedCollects);
                                       strNuVersaoEngine   := '';
                                       strNuVersaoPattern  := '';

                                       If objCacic.isWindows9xME() Then { Windows 9x/ME }
                                        Begin
                                           strChaveRegistro := 'HKEY_LOCAL_MACHINE\Software\TrendMicro\OfficeScanCorp\CurrentVersion';
                                           strNomeExecutavel := 'pccwin97.exe';
                                           strDtHrInstalacao  := objCacic.getValueRegistryKey(strChaveRegistro + '\Install Date') + objCacic.getValueRegistryKey(strChaveRegistro + '\Install Time');
                                           objCacic.writeDebugLog('executeGerCols: Data/Hora de Instalação: '+strDtHrInstalacao);
                                           strDirTrend := objCacic.getValueRegistryKey(strChaveRegistro + '\Application Path');
                                           If FileExists(strDirTrend + '\filter32.vxd') Then
                                            Begin
                                             // Em máquinas Windows 9X a versão do engine e do pattern não são gravadas no registro. Tenho que pegar direto dos arquivos.
                                             tstringsLista2RCO := objCacic.explode(objCacic.getVersionInfo(strDirTrend + 'filter32.vxd'), '.'); // Pego só os dois primeiros dígitos. Por exemplo: 6.640.0.1001  vira  6.640.
                                             strNuVersaoEngine := tstringsLista2RCO[0] + '.' + tstringsLista2RCO[1];
                                             tstringsLista2RCO.Free;
                                            end
                                           Else
                                              strNuVersaoEngine := '0';

                                           // A gambiarra para coletar a versão do pattern é obter a maior extensão do arquivo lpt$vpn
                                           if FindFirst(strDirTrend + '\lpt$vpn.*', faAnyFile, searchRecResult) = 0 then
                                            Begin
                                             tstringlistLista1RCO := TStringList.Create;
                                             repeat tstringlistLista1RCO.Add(ExtractFileExt(searchRecResult.Name));
                                             until FindNext(searchRecResult) <> 0;
                                             Sysutils.FindClose(searchRecResult);
                                             tstringlistLista1RCO.Sort; // Ordeno, para, em seguida, obter o último.
                                             strAux := tstringlistLista1RCO[tstringlistLista1RCO.Count - 1];
                                             tstringlistLista1RCO.Free;
                                             strNuVersaoPattern := Copy(strAux, 2, Length(strAux)); // Removo o '.' da extensão.
                                            End;
                                        End
                                       Else
                                        Begin  // NT a XP
                                           strChaveRegistro   := 'HKEY_LOCAL_MACHINE\Software\TrendMicro\PC-cillinNTCorp\CurrentVersion';
                                           strNomeExecutavel  := 'ntrtscan.exe';
                                           strDtHrInstalacao  := objCacic.getValueRegistryKey(strChaveRegistro + '\InstDate') + objCacic.getValueRegistryKey(strChaveRegistro + '\InstTime');
                                           strNuVersaoEngine  := objCacic.getValueRegistryKey(strChaveRegistro + '\Misc.\EngineZipVer');
                                           strNuVersaoPattern := objCacic.getValueRegistryKey(strChaveRegistro + '\Misc.\PatternVer');
                                           strNuVersaoPattern := Copy(strNuVersaoPattern, 2, Length(strNuVersaoPattern)-3);
                                        end;

                                       objCacic.writeDebugLog('executeGerCols: Versão de Engine obtida.: '+strNuVersaoEngine);
                                       objCacic.writeDebugLog('executeGerCols: Versão de Pattern obtida: '+strNuVersaoPattern);

                                       strTeServidor       := objCacic.getValueRegistryKey(strChaveRegistro + '\Server');
                                       If (ProgramaRodando(strNomeExecutavel)) Then strInAtivo := '1' Else strInativo := '0';

                                       objCacic.writeDebugLog('executeGerCols: Valor para Estado Ativo.: ' + strInAtivo);

                                       // Monto a string que será comparada com o valor armazenado no registro.
                                       strColetaAtual := StringReplace('[EngineVersion]'    + Trim(strNuVersaoEngine)  + '[/EngineVersion]'    +
                                                                       '[PatternVersion]'   + Trim(strNuVersaoPattern) + '[/PatternVersion]'   +
                                                                       '[ServerId]'         + Trim(strTeServidor)      + '[/ServerId]'         +
                                                                       '[InstallDateTime]'  + Trim(strDtHrInstalacao)  + '[/InstallDateTime]'  +
                                                                       '[ActivityStatus]'   + Trim(strInAtivo)         + '[/ActivityStatus]',',','[[COMMA]]',[rfReplaceAll]);

                                       strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',AntiVirus='  + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(strColetaAtual));

                                    Except
                                     on E : Exception do
                                       Begin
                                         objCacic.writeDebugLog('executeGerCols: Lançando Exceção #7');
                                         objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #7 - ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition));
                                         objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_End'   , '99999999', strGerColsInfFileName);
                                      End;
                                    End;
                                  End
                                else If (tstringsActions[intLoopActions] = 'col_hard') then
                                  Begin
                                    Try
                                      Inc(intTotalExecutedCollects);

                                      // Insere aqui a ação da coleta
                                      objCacic.writeDebugLog('executeGerCols: Executando coleta de Hardware -> ');
                                      //tstrColetaHardware := ColetaHardware;

                                      // Coletas de todos os atributos de hardware
                                      tstrColetaHardware := fetchWmiValues('Win32_Keyboard', objCacic.getLocalFolderName, 'Availability,Caption,Description,InstallDate,Name');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_Keyboard=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Teclado=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      tstrColetaHardware := fetchWmiValues('Win32_PointingDevice', objCacic.getLocalFolderName, 'Availability,Caption,Description,InstallDate,Manufacturer,Name');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_PointingDevice=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Mouse=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      tstrColetaHardware := fetchWmiValues('Win32_PhysicalMedia ', objCacic.getLocalFolderName, 'Caption,Description,InstallDate,Name,Manufacturer,Model,SKU,SerialNumber,Tag,Version,PartNumber,OtherIdentifyingInfo,Capacity,MediaType,MediaDescription');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_PhysicalMedia=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Mídia Física=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      tstrColetaHardware := fetchWmiValues('Win32_BaseBoard', objCacic.getLocalFolderName, 'Caption,ConfigOptions,Depth,Description,Height,HostingBoard,InstallDate,Manufacturer,Model,Name,OtherIdentifyingInfo,PartNumber,Product,RequirementsDescription,SerialNumber,SKU,SlotLayout,SpecialRequirements,Tag,Version,Weight,Width');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_BaseBoard=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Placa Mãe=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      // Tenho que dividir a string em dois pedaços porque o Delphi não aceita strings individuais com mais de 255 caracteres
                                      tstrColetaHardware := fetchWmiValues('Win32_BIOS', objCacic.getLocalFolderName, 'BiosCharacteristics,BIOSVersion,BuildNumber,Caption,CodeSet,Description,IdentificationCode,InstallDate,Manufacturer,Name,OtherTargetOS,PrimaryBIOS,ReleaseDate,SerialNumber,SMBIOSBIOSVersion,SMBIOSMajorVersion,SMBIOSMinorVersion,' + 'SoftwareElementID,TargetOperatingSystem,Version');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_BIOS=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',BIOS=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      tstrColetaHardware := fetchWmiValues('Win32_MemoryDevice', objCacic.getLocalFolderName, 'Access,Availability,BlockSize,Caption,Description,DeviceID,EndingAddress,InstallDate,Name,NumberOfBlocks,PNPDeviceID,Purpose,SystemLevelAddress,SystemName');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_MemoryDevice=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Dispositivos de Memória=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      tstrColetaHardware := fetchWmiValues('Win32_PhysicalMemory', objCacic.getLocalFolderName, 'BankLabel,Capacity,Caption,DataWidth,Description,DeviceLocator,FormFactor,InstallDate,InterleaveDataDepth,InterleavePosition,Manufacturer,MemoryType,Model,Name,OtherIdentifyingInfo,PartNumber,PositionInRow,' + 'SerialNumber,SKU,Speed,Tag,TotalWidth,TypeDetail,Version');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_PhysicalMemory=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Memória Física=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      tstrColetaHardware := fetchWmiValues('Win32_Processor', objCacic.getLocalFolderName, 'AddressWidth,Architecture,Availability,Caption,DataWidth,Description,DeviceID,ExtClock,Family,InstallDate,L2CacheSize,L2CacheSpeed,Level,Manufacturer,MaxClockSpeed,Name,NumberOfCores,NumberOfLogicalProcessors,OtherFamilyDescription,PNPDeviceID,' + 'ProcessorId,ProcessorType,Revision,Role,SocketDesignation,SystemName,UniqueId,UpgradeMethod,Version');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_Processor=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Processador=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      tstrColetaHardware := fetchWmiValues('Win32_Printer', objCacic.getLocalFolderName, 'Attributes,Availability,Caption,CharSetsSupported,Comment,CurrentCharSet,Default,Description,DeviceID,Direct,DriverName,HorizontalResolution,InstallDate,JobCountSinceLastReset,KeepPrintedJobs,LanguagesSupported,' + 'Local,Location,MarkingTechnology,MaxCopies,MaxNumberUp,MaxSizeSupported,MimeTypesSupported,Name,Network,PaperSizesSupported,PaperTypesAvailable,Parameters,PNPDeviceID,PortName,PrintProcessor,' + 'ServerName,Shared,ShareName,SpoolEnabled,SystemName,VerticalResolution,WorkOffline');
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Win32_Printer=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));
//                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Impressora=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      // Adiciona variáveis da coleta de hardware na requisição
                                      //strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',Hardware=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaHardware)));

                                      strColetaAtual := strFieldsAndValuesToRequest;
                                  Except
                                     on E : Exception do
                                       Begin
                                         objCacic.writeDebugLog('executeGerCols: Lançando Exceção #12');
                                         objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #12 - ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition));
                                         objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_End'   , '99999999', strGerColsInfFileName);
                                      End;
                                    End;
                                  End
                                else If (tstringsActions[intLoopActions] = 'col_soft') then
                                  Begin
                                    Try
                                      Inc(intTotalExecutedCollects);

                                      // Insere aqui a ação da coleta
                                      objCacic.writeDebugLog('executeGerCols: Executando coleta de Software -> ');
                                      tstrColetaSoftware := SoftwareList;
                                      
                                      // Adiciona variáveis da coleta de software na requisição
                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',SoftwareList=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(tstrColetaSoftware)));

                                      strColetaAtual := strFieldsAndValuesToRequest;
                                    Except
                                     on E : Exception do
                                       Begin
                                         objCacic.writeDebugLog('executeGerCols: Lançando Exceção #13');
                                         objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #13 - ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition));
                                         objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_End'   , '99999999', strGerColsInfFileName);
                                      End;
                                    End;

                                  End
                                else If (tstringsActions[intLoopActions] = 'col_moni') then
                                  Begin
                                    Try
                                     Inc(intTotalExecutedCollects);

                                     // Verifica se deverá ser realizada a coleta de informações de sistemas monitorados neste
                                     // computador, perguntando ao Gerente de Coletas.

                                     ShortDateFormat      := 'dd/mm/yyyy';
                                     intAux4              := 1;
                                     strAux3              := '';
                                     strValorChavePerfis  := '*';
                                     strLetrasDrives      := LetrasDrives;

                                     while strValorChavePerfis <> '' do
                                        begin
                                           strAux3 := 'col_moni_perfil_' + trim(inttostr(intAux4));
                                           strTripa := ''; // Conterá as informações a serem enviadas ao Gerente.
                                           // Obtenho do registro o valor que foi previamente armazenado
                                           strValorChavePerfis := Trim(objCacic.deCrypt( objCacic.GetValueFromFile('Collects',strAux3,strGerColsInfFileName)));

                                           if (strValorChavePerfis <> '') then
                                             Begin
                                                 //Atenção, OS ELEMENTOS DEVEM ESTAR DE ACORDO COM A ORDEM QUE SÃO TRATADOS NO MÓDULO GERENTE.
                                                 tstringsTripa2  := objCacic.explode(strValorChavePerfis,',');
                                                 if (strColetaAtual <> '') then strColetaAtual := strColetaAtual + '#';
                                                 strColetaAtual := strColetaAtual + trim(tstringsTripa2[0]) + ',';


                                                 ///////////////////////////////////////////
                                                 ///// Coleta de Informação de Licença /////
                                                 ///////////////////////////////////////////
                                                 // Devo gerar algo como [Licence][/Licence]
                                                 //Vazio
                                                 if (trim(tstringsTripa2[2])='0') then
                                                   Begin
                                                      strColetaAtual := strColetaAtual + ',';
                                                   End;

                                                 //Caminho\Chave\Valor em Registry
                                                 if (trim(tstringsTripa2[2])='1') then
                                                   Begin
                                                      strAux4 := '';
                                                      objCacic.writeDebugLog('executeGerCols: Buscando informação de LICENÇA em '+tstringsTripa2[3]);
                                                      Try
                                                        strAux4 := Trim(objCacic.getValueRegistryKey(trim(tstringsTripa2[3])));
                                                      Except
                                                      End;
                                                      if (strAux4 = '') then strAux4 := '?';
                                                      strColetaAtual  := strColetaAtual + strAux4 + ',';
                                                   End;

                                                 //Nome/Seção/Chave de Arquivo INI
                                                 if (trim(tstringsTripa2[2])='2') then
                                                   Begin
                                                      objCacic.writeDebugLog('executeGerCols: Buscando informação de LICENÇA em '+tstringsTripa2[3]);
                                                      Try
                                                        if (LastPos('/',trim(tstringsTripa2[3]))>0) then
                                                          Begin
                                                            tstringsTripa3  := objCacic.explode(trim(tstringsTripa2[3]),'/');
                                                            //
                                                            for intLoopExecutaGerCols := 1 to length(strLetrasDrives) do
                                                              Begin
                                                                strFileName := trim(tstringsTripa3[0]);
                                                                if (LastPos(':\',strFileName)>0) then
                                                                  Begin
                                                                    strDrive    := Copy(strFileName,1,3);
                                                                    strFileName := Copy(strFileName,4,Length(strFileName));
                                                                  End
                                                                else
                                                                  Begin
                                                                    strDrive := strLetrasDrives[intLoopExecutaGerCols] + ':';
                                                                    if (Copy(strFileName,1,1)<>'\') then strDrive := strDrive + '\';
                                                                    strFileName  := Copy(strFileName,1,Length(strFileName));
                                                                  End;

                                                                strAux1 := ExtractShortPathName(strDrive + strFileName);
                                                                if (strAux1 = '') then
                                                                  begin
                                                                    if (SearchFile(strDrive,strFileName)) then
                                                                      Begin
                                                                        strAux1 := strResultSearch;
                                                                        break;
                                                                      End;
                                                                  end
                                                                else break;
                                                              End;

                                                            strAux4 := Trim(objCacic.GetValueFromFile(tstringsTripa3[1],tstringsTripa3[2],strAux1));
                                                            if (strAux4 = '') then strAux4 := '?';
                                                            strColetaAtual := strColetaAtual + strAux4 + ',';
                                                          End;

                                                        if (LastPos('/',trim(tstringsTripa2[3]))=0) then
                                                          Begin
                                                            strColetaAtual := strColetaAtual + 'Parâm.Lic.Incorreto,';
                                                          End
                                                      Except
                                                        on E : Exception do
                                                        Begin
                                                          objCacic.writeDebugLog('executeGerCols: Lançando Exceção #10');
                                                          objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #10 - ' + strColetaAtual + 'Parâm.Lic.Incorreto');
                                                          strColetaAtual := strColetaAtual + 'Parâm.Lic.Incorreto,';
                                                        End;
                                                      End;
                                                   End;

                                                 //////////////////////////////////////////////
                                                 ///// Coleta de Informação de Instalação /////
                                                 //////////////////////////////////////////////
                                                 // Devo gerar algo como [InstallDateTime][/InstallDateTime]
                                                 //Vazio
                                                 if (trim(tstringsTripa2[5])='0') then
                                                   Begin
                                                      strColetaAtual := strColetaAtual + ',';
                                                   End;

                                                 //Nome de Executável OU Nome de Arquivo de Configuração (CADPF!!!)
                                                 if (trim(tstringsTripa2[5])='1') or (trim(tstringsTripa2[5]) = '2') then
                                                   Begin
                                                    strAux1 := '';
                                                    for intLoopExecutaGerCols := 1 to length(strLetrasDrives) do
                                                      Begin
                                                      strFileName := trim(tstringsTripa2[6]);
                                                      objCacic.writeDebugLog('executeGerCols: Buscando informação de INSTALAÇÃO em '+tstringsTripa2[6]);
                                                      if (LastPos(':\',strFileName)>0) then
                                                        Begin
                                                          strDrive    := Copy(strFileName,1,3);
                                                          strFileName := Copy(strFileName,4,Length(strFileName));
                                                        End
                                                      else
                                                        Begin
                                                          strDrive := strLetrasDrives[intLoopExecutaGerCols] + ':';
                                                          if (Copy(strFileName,1,1)<>'\') then strDrive := strDrive + '\';
                                                          strFileName  := Copy(strFileName,1,Length(strFileName));
                                                        End;

                                                        strAux1 := ExtractShortPathName(strDrive + strFileName);
                                                        if (strAux1 = '') then
                                                          begin
                                                            if (SearchFile(strDrive,strFileName)) then
                                                              Begin
                                                                strAux1 := strResultSearch;
                                                                break;
                                                              End;
                                                          end
                                                        else break;

                                                      End;

                                                    if (strAux1 <> '') then strColetaAtual := strColetaAtual + 'S,';
                                                    if (strAux1 = '')  then strColetaAtual := strColetaAtual + 'N,';
                                                    strAux1 := '';
                                                   End;

                                                 //Caminho\Chave\Valor em Registry
                                                 if (trim(tstringsTripa2[5])='3') then
                                                   Begin
                                                    strAux1 := '';
                                                    Try
                                                      objCacic.writeDebugLog('executeGerCols: Buscando informação de INSTALAÇÃO em '+tstringsTripa2[6]);
                                                      // Anderson PETERLE - 31JAN2013
                                                      // Recurso para buscar indicativo de instalação na sessão HKEY_CLASSES_ROOT
                                                      if (Pos('{',tstringsTripa2[6]) > 0) then
                                                        strAux1 := objCacic.getVersionFromHCR(tstringsTripa2[6])
                                                      else
                                                        strAux1 := Trim(objCacic.getValueRegistryKey(trim(tstringsTripa2[6])));
                                                      //

                                                    Except
                                                    End;
                                                    if (strAux1 <> '') then strColetaAtual  := strColetaAtual + 'S,';
                                                    if (strAux1 = '')  then strColetaAtual := strColetaAtual + 'N,';
                                                    strAux1 := '';
                                                   End;



                                                 //////////////////////////////////////////
                                                 ///// Coleta de Informação de Versão /////
                                                 //////////////////////////////////////////
                                                 // Devo gerar algo como [Version][/Version]
                                                 //Vazio
                                                 if (trim(tstringsTripa2[7])='0') then
                                                   strColetaAtual := strColetaAtual + ',';

                                                 //Data de Arquivo
                                                 if (trim(tstringsTripa2[7])='1') then
                                                   Begin
                                                    strAux1 := '';
                                                    objCacic.writeDebugLog('executeGerCols: Buscando informação de VERSÃO em '+tstringsTripa2[8]);
                                                    for intLoopExecutaGerCols:=1 to length(strLetrasDrives) do
                                                      Begin
                                                      strFileName := trim(tstringsTripa2[8]);
                                                      if (LastPos(':\',strFileName)>0) then
                                                        Begin
                                                          strDrive    := Copy(strFileName,1,3);
                                                          strFileName := Copy(strFileName,4,Length(strFileName));
                                                        End
                                                      else
                                                        Begin
                                                          strDrive := strLetrasDrives[intLoopExecutaGerCols] + ':';
                                                          if (Copy(strFileName,1,1)<>'\') then strDrive := strDrive + '\';
                                                          strFileName  := Copy(strFileName,1,Length(strFileName));
                                                        End;

                                                        strAux1 := ExtractShortPathName(strDrive + strFileName);
                                                        if (strAux1 = '') then
                                                          begin
                                                            if (SearchFile(strDrive,strFileName)) then
                                                              Begin
                                                                strAux1 := strResultSearch;
                                                                break;
                                                              End;
                                                          end
                                                        else break;
                                                      End;

                                                    if (strAux1 <> '') then
                                                      Begin
                                                        strAux3 := StringReplace(DateToStr(FileDateToDateTime(FileAge(strAux1))),'.','/',[rfReplaceAll]);
                                                        strAux3 := StringReplace(strAux3,'-','/',[rfReplaceAll]);
                                                        strColetaAtual  := strColetaAtual + strAux3 + ',';
                                                        strDate := '';
                                                      End;

                                                    if (strAux1 = '') then strColetaAtual := strColetaAtual + '?,';
                                                    strAux1 := '';
                                                   End;

                                                 //Caminho\Chave\Valor em Registry
                                                 if (trim(tstringsTripa2[7])='2') then
                                                   Begin
                                                    strAux1 := '';
                                                    objCacic.writeDebugLog('executeGerCols: Buscando informação de VERSÃO em '+tstringsTripa2[8]);
                                                    Try
                                                      // Anderson PETERLE - 31JAN2013
                                                      // Recurso para buscar versão na sessão HKEY_CLASSES_ROOT
                                                      if (Pos('{',tstringsTripa2[8]) > 0) then
                                                        strAux1 := objCacic.getVersionFromHCR(tstringsTripa2[8])
                                                      else
                                                        strAux1 := Trim(objCacic.getValueRegistryKey(trim(tstringsTripa2[8])));
                                                      //
                                                    Except
                                                    End;
                                                    if (strAux1 <> '') then strColetaAtual := strColetaAtual + strAux1 + ',';
                                                    if (strAux1 = '')  then strColetaAtual := strColetaAtual + '?,';
                                                    strAux1 := '';
                                                   End;


                                                 //Nome/Seção/Chave de Arquivo INI
                                                 if (trim(tstringsTripa2[7])='3') then
                                                   Begin
                                                      Try
                                                        objCacic.writeDebugLog('executeGerCols: Buscando informação de VERSÃO em '+tstringsTripa2[8]);
                                                        if (LastPos('/',trim(tstringsTripa2[8]))>0) then
                                                          Begin
                                                            tstringsTripa3  := objCacic.explode(trim(tstringsTripa2[8]),'/');
                                                            //
                                                            for intLoopExecutaGerCols:=1 to length(strLetrasDrives) do
                                                              Begin
                                                                strFileName := trim(tstringsTripa3[0]);
                                                                if (LastPos(':\',strFileName)>0) then
                                                                  Begin
                                                                    strDrive    := Copy(strFileName,1,3);
                                                                    strFileName := Copy(strFileName,4,Length(strFileName));
                                                                  End
                                                                else
                                                                  Begin
                                                                    strDrive := strLetrasDrives[intLoopExecutaGerCols] + ':';
                                                                    if (Copy(strFileName,1,1)<>'\') then strDrive := strDrive + '\';
                                                                    strFileName  := Copy(strFileName,1,Length(strFileName));
                                                                  End;

                                                                strAux1 := ExtractShortPathName(strDrive + strFileName);
                                                                if (strAux1 = '') then
                                                                  begin
                                                                    if (SearchFile(strDrive,strFileName)) then
                                                                      Begin
                                                                        strAux1 := strResultSearch;
                                                                        break;
                                                                      End;
                                                                  end
                                                                else break;
                                                              End;

                                                            //
                                                            strAux4 := Trim(objCacic.GetValueFromFile(tstringsTripa3[1],tstringsTripa3[2],strAux1));
                                                            if (strAux4 = '') then strAux4 := '?';
                                                            strColetaAtual := strColetaAtual + strAux4 + ',';
                                                          End
                                                        else
                                                          Begin
                                                            strColetaAtual := strColetaAtual + 'Parâm.Versao Incorreto,';
                                                          End;
                                                      Except
                                                      End;
                                                   End;


                                               //Versão de Executável
                                               if (trim(tstringsTripa2[7])='4') then
                                                 Begin
                                                   objCacic.writeDebugLog('executeGerCols: Buscando informação de VERSÃO em '+tstringsTripa2[8]);
                                                   Try
                                                    boolFound := false;
                                                    for intLoopExecutaGerCols:= 1 to length(strLetrasDrives) do
                                                      Begin
                                                        if not boolFound then
                                                          Begin
                                                            strFileName := trim(tstringsTripa2[8]);
                                                            if (LastPos(':\',strFileName)>0) then
                                                              Begin
                                                                strDrive := Copy(strFileName,1,3);
                                                                strFileName  := Copy(strFileName,4,Length(strFileName));
                                                              End
                                                            else
                                                              Begin
                                                                strDrive := strLetrasDrives[intLoopExecutaGerCols] + ':';
                                                                if (Copy(strFileName,1,1)<>'\') then strDrive := strDrive + '\';
                                                                strFileName  := Copy(strFileName,1,Length(strFileName));
                                                              End;

                                                            strAux1 := ExtractShortPathName(strDrive + strFileName);
                                                            if (strAux1 = '') then
                                                              begin
                                                              if (SearchFile(strDrive,strFileName)) then
                                                                Begin
                                                                  strAux1 := strResultSearch;
                                                                  boolFound := true;
                                                                End;
                                                              end
                                                            else boolFound := true;
                                                          End;
                                                      End;
                                                   Except
                                                   End;

                                                   if (strAux1 <> '') then
                                                      Begin
                                                        strColetaAtual := strColetaAtual + objCacic.GetVersionInfo(strAux1);
                                                      End
                                                  else strColetaAtual := strColetaAtual + '?';

                                                  strColetaAtual := strColetaAtual + ',';

                                                 End;


                                                 //////////////////////////////////////////
                                                 ///// Coleta de Informação de Engine /////
                                                 //////////////////////////////////////////
                                                 // Devo gerar algo como [Engine][/Engine]
                                                 //Vazio
                                                 if (trim(tstringsTripa2[9])='.') then
                                                   Begin
                                                      strColetaAtual := strColetaAtual + ',';
                                                   End;

                                                 //Arquivo para Versão de Engine
                                                 //O ponto é proposital para quando o último parâmetro vem vazio do Gerente!!!  :)
                                                 if (trim(tstringsTripa2[9])<>'.') then
                                                   Begin
                                                    objCacic.writeDebugLog('executeGerCols: Buscando informação de ENGINE em '+tstringsTripa2[9]);
                                                    for intLoopExecutaGerCols := 1 to length(strLetrasDrives) do
                                                      Begin
                                                        strFileName := trim(tstringsTripa2[9]);
                                                        if (LastPos(':\',strFileName)>0) then
                                                          Begin
                                                            strDrive    := Copy(strFileName,1,3);
                                                            strFileName := Copy(strFileName,4,Length(strFileName));
                                                          End
                                                        else
                                                          Begin
                                                            strDrive := strLetrasDrives[intLoopExecutaGerCols] + ':';
                                                            if (Copy(strFileName,1,1)<>'\') then strDrive := strDrive + '\';
                                                            strFileName  := Copy(strFileName,1,Length(strFileName));
                                                          End;

                                                        strAux1 := ExtractShortPathName(strDrive + strFileName);
                                                        if (strAux1 = '') then
                                                          begin
                                                            if (SearchFile(strDrive,strFileName)) then
                                                              Begin
                                                                strAux1 := strResultSearch;
                                                                break;
                                                              End;
                                                          end
                                                        else break;
                                                      End;
                                                    if (strAux1 <> '') then
                                                      Begin
                                                        tstringsTripa3 := objCacic.explode(objCacic.GetVersionInfo(strAux1), '.'); // Pego só os dois primeiros dígitos. Por exemplo: 6.640.0.1001  vira  6.640.
                                                        strColetaAtual := strColetaAtual + tstringsTripa3[0] + '.' + tstringsTripa3[1];
                                                      End;
                                                   End;


                                                 ///////////////////////////////////////////
                                                 ///// Coleta de Informação de Pattern /////
                                                 ///////////////////////////////////////////
                                                 // Devo gerar algo como [Pattern][/Pattern]
                                                 //Arquivo para Versão de Pattern
                                                 //O ponto é proposital para quando o último parâmetro vem vazio do Gerente!!!  :)
                                                 strAux1 := '';
                                                 if (trim(tstringsTripa2[10])<>'.') then
                                                   Begin
                                                    objCacic.writeDebugLog('executeGerCols: Buscando informação de PATTERN em '+tstringsTripa2[9]);
                                                      for intLoopExecutaGerCols := 1 to length(strLetrasDrives) do
                                                        Begin
                                                        strFileName := trim(tstringsTripa2[10]);
                                                        if (LastPos(':\',strFileName)>0) then
                                                          Begin
                                                            strDrive := Copy(strFileName,1,3);
                                                            strFileName  := Copy(strFileName,4,Length(strFileName));
                                                          End
                                                        else
                                                          Begin
                                                            strDrive := strLetrasDrives[intLoopExecutaGerCols] + ':';
                                                            if (Copy(strFileName,1,1)<>'\') then strDrive := strDrive + '\';
                                                            strFileName  := Copy(strFileName,1,Length(strFileName));
                                                          End;

                                                          strAux1 := ExtractShortPathName(strDrive + strFileName);
                                                          if (strAux1 = '') then
                                                            begin
                                                            if (SearchFile(strDrive, strFileName)) then
                                                              Begin
                                                                strAux1 := strResultSearch;
                                                                break;
                                                              End;
                                                          end
                                                        else break;

                                                        End;
                                                   End;
                                                   if (strAux1 <> '') then
                                                      Begin
                                                        tstringsTripa3 := objCacic.explode(objCacic.GetVersionInfo(strAux1), '.'); // Pego só os dois primeiros dígitos. Por exemplo: 6.640.0.1001  vira  6.640.
                                                        strColetaAtual := strColetaAtual + tstringsTripa3[0] + '.' + tstringsTripa3[1];
                                                      End;
                                                   if (strAux1 = '') then strColetaAtual := strColetaAtual + ',';
                                                   strAux1 := '';
                                             End;
                                             intAux4 := intAux4 + 1;
                                        End;

                                      strColetaAtual := StringReplace(strColetaAtual,',','[[COMMA]]',[rfReplaceAll]);

                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',MonitoredProfiles=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(strColetaAtual));

                                    Except
                                      Begin
                                        objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_End'   ,'99999999', strGerColsInfFileName);
                                      End;
                                    End;
                                  End
                                else If (tstringsActions[intLoopActions] = 'col_soft_not_optional') then
                                  Begin
                                    Try
                                      Inc(intTotalExecutedCollects);
                                      // Monto a string que será comparada com o valor armazenado no registro local.
                                      strColetaAtual := StringReplace('[ODBCVersion]'           + GetODBCVersion          + '[/ODBCVersion]'           +
                                                                      '[BDEVersion]'            + GetBDEVersion           + '[/BDEVersion]'            +
                                                                      '[DAOVersion]'            + GetDAOVersion           + '[/DAOVersion]'            +
                                                                      '[ADOVersion]'            + GetADOVersion           + '[/ADOVersion]'            +
                                                                      '[DirectXVersion]'        + GetDirectXVersion       + '[/DirectXVersion]'        +
                                                                      '[MozillaVersion]'        + GetMozillaVersion       + '[/MozillaVersion]'        +
                                                                      '[IEVersion]'             + GetIEVersion            + '[/IEVersion]'             +
                                                                      '[AcrobatReaderVersion]'  + GetAcrobatReaderVersion + '[/AcrobatReaderVersion]'  +
                                                                      '[JREVersion]'            + GetJREVersion           + '[/JREVersion]',','   ,'[[COMMA]]',[rfReplaceAll]);

                                      strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',NotOptionalBasicSoftwares='   + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(strColetaAtual));
                                    Except
                                    End;
                                  End
                                Else
                                  Begin
                                    Try
                                      Inc(intTotalExecutedCollects);
                                      strClassesAndProperties := objCacic.getValueFromTags('ClassesAndProperties',strActionDefinition);

                                      objCacic.writeDebugLog('executeGerCols: strClassesAndProperties -> "' + strClassesAndProperties + '"');
                                      tstringsClasses    := objCacic.explode(objCacic.getValueFromTags('Classes',strClassesAndProperties),',');

                                      for intLoopClasses := 0 to tstringsClasses.Count - 1 do
                                        Begin
                                          objCacic.writeDebugLog('executeGerCols: Coletando dados de Win32_' + tstringsClasses[intLoopClasses]);
                                          strFieldsAndValuesToRequest := strFieldsAndValuesToRequest + ',' + tstringsClasses[intLoopClasses] + '=' + objCacic.replaceInvalidHTTPChars(objCacic.enCrypt(objCacic.replaceInvalidHTTPChars(fetchWmiValues('Win32_' + tstringsClasses[intLoopClasses],objCacic.getLocalFolderName, objCacic.getValueFromTags(tstringsClasses[intLoopClasses] + '.Properties',strClassesAndProperties),objCacic.getValueFromTags(tstringsClasses[intLoopClasses] + '.WhereClause',strClassesAndProperties)))));
                                        End;

                                      strColetaAtual := strFieldsAndValuesToRequest;
                                    Except
                                     on E : Exception do
                                       Begin
                                         objCacic.writeDebugLog('executeGerCols: Lançando Exceção #8');
                                         objCacic.writeExceptionLog(E.Message,E.ClassName,'Exceção #8 - ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition));
                                         objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_End'   , '99999999', strGerColsInfFileName);
                                       End;
                                    End;
                                  End;

                                if (strColetaAtual <> '') then
                                  Begin
                                     objCacic.writeDebugLog('executeGerCols: ColetaAtual: "' + strColetaAtual + '"');
                                     objCacic.writeDebugLog('executeGerCols: Fields And Values To Request: "' + strFieldsAndValuesToRequest + '"');

                                     objCacic.setValueToFile('Collects',tstringsActions[intLoopActions]+'_End',FormatDateTime('yyyymmddhhnnss', Now), strGerColsInfFileName);

                                     // Obtenho do registro o valor que foi previamente armazenado
                                     strColetaAnterior := objCacic.GetValueFromFile('Collects',tstringsActions[intLoopActions],strGerColsInfFileName);

                                     objCacic.writeDebugLog('executeGerCols: Registro Anterior: ' + strColetaAnterior);
                                     objCacic.writeDebugLog('executeGerCols: Registro Atual...: ' + strColetaAtual);

                                     objCacic.writeDebugLog('executeGerCols: Coleta Forçada? -> ' + objCacic.getValueFromTags('DT_HR_COLETA_FORCADA',strActionDefinition));
                                     // Se essas informações forem diferentes significa que houve alguma alteração na configuração. Nesse caso, gravo as informações no BD Central e,
                                     // se não houver problemas durante esse procedimento, atualizo o registro local.
                                     // Se for uma coleta forçada, também grava as informações.
                                     If (objCacic.enCrypt(strColetaAtual) <> strColetaAnterior) or
                                        (strColetaAnterior = '') or
                                        (objCacic.getValueFromFile('Configs', 'forca_coleta', strGerColsInfFileName) = 'S') Then
                                        Begin
                                          strAcaoGercols := 'Enviando coleta de informações sobre ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition) +  ' para o Gerente WEB ('+objCacic.getWebManagerAddress+').';
                                          objCacic.writeDailyLog(strAcaoGercols);

                                          // Preparação para envio...
                                          if (Comm(objCacic.getWebManagerAddress + objCacic.getWebServicesFolderName + 'gercols/set/collects', strFieldsAndValuesToRequest, objCacic.getLocalFolderName, strAcaoGerCols) <> '0') Then
                                            Begin
                                              objCacic.writeDailyLog('Ok! Coleta de informações sobre ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition) + ' enviada com sucesso!');
                                              objCacic.setBoolCipher(not objCacic.isInDebugMode);
                                              objCacic.setValueToFile('Collects',tstringsActions[intLoopActions],objCacic.enCrypt(strColetaAtual), strGerColsInfFileName);
                                              objCacic.setValueToFile('Collects',tstringsActions[intLoopActions] + '_Send_Status','1', strGerColsInfFileName);
                                              inc(intTotalSendedCollects);
                                            End
                                          else
                                            Begin
                                              objCacic.writeDebugLog('executeGerCols: Problema no envio de ' + objCacic.getValueFromTags('te_descricao_breve',strActionDefinition) + '!');
                                              objCacic.setValueToFile('Collects','ColAnvi_Status','0', strGerColsInfFileName);
                                            End;
                                        End;
                                  End;
                              End;
                        End;
                      objCacic.writeDailyLog('Fim de Coletas do Intervalo');
                    end;

                 if (intTotalExecutedCollects = 0) then
                   objCacic.writeDailyLog('Nenhuma coleta configurada para essa subrede / estação / S.O.');
            End;

        // Reinicializo o indicador de Fila de Espera para FTP
        objCacic.setValueToFile('Configs','TeFilaFTP','0', strGerColsInfFileName);

        if (intTotalSendedCollects > 0) then
          objCacic.writeDailyLog('Os dados coletados - e não redundantes - foram enviados ao Gerente WEB ('+objCacic.getWebManagerAddress+').')
        else if (intTotalSendedCollects = 0) then
          objCacic.writeDailyLog('Problemas no envio ou sem informações novas para envio.');
      End;
    Except
      Begin
        objCacic.writeDailyLog('PROBLEMAS EM EXECUTA_GERCOLS! Ação: "' + strAcaoGercols+'".');
        objCacic.CriaTXT(objCacic.getLocalFolderName,'gererro',strAcaoGerCols);
        objCacic.setValueToFile('Mensagens','CsTipo'    , 'mtError'     , strGerColsInfFileName);
        objCacic.setValueToFile('Mensagens','TeMensagem', strAcaoGercols, strGerColsInfFileName);
        Finalizar(false);
        Sair;
      End;
  End;
End;

begin
   objCacic := TCACIC.Create();
   objCacic.setBoolCipher(true);

   // Setando os parâmetros obrigatórios
   objCacic.setLocalFolderName(objCacic.GetParam('LocalFolderName'));
   objCacic.setWebServicesFolderName(objCacic.GetParam('WebServicesFolderName'));
   objCacic.setWebManagerAddress(objCacic.GetParam('WebManagerAddress'));
   objCacic.setMainProgramName(LowerCase(objCacic.GetParam('MainProgramName')));
   objCacic.setMainProgramHash(objCacic.GetParam('MainProgramHash'));


   // TESTES DOMÉSTICOS (VPN)
   {
   objCacic.setLocalFolderName('Cacic');
   objCacic.setWebServicesFolderName('ws/');
   objCacic.setWebManagerAddress('http://10.71.0.205/cacic3/');
   objCacic.setMainProgramName('cacic280.exe');

   tstrModulosOpcoes := objCacic.getTagsFromValues('[Um]Numero UM[/Um][Dois]Numero DOIS[/Dois]');
   strAux            := objCacic.getValueFromTags('Dois','[Um]Numero UM[/Um][Dois]Numero DOIS[/Dois][Tres]Numero TRES[/Tres]');
   strAux            := objCacic.getValueFromTags('Um','[Um]Numero UM[/Um][Dois]Numero DOIS[/Dois][Tres]Numero TRES[/Tres]');
   strAux            := objCacic.getValueFromTags('Tres','[Um]Numero UM[/Um][Dois]Numero DOIS[/Dois][Tres]Numero TRES[/Tres]');
   strAux            := objCacic.getValueFromTags('Quatro','[Um]Numero UM[/Um][Dois]Numero DOIS[/Dois][Tres]Numero TRES[/Tres]');

   strAux := '[Um]Numero UM[/Um][Dois]Numero DOIS[/Dois][Tres]Numero TRES[/Tres]';
   objCacic.setValueToTags('Tres','Number Three',strAux);
   objCacic.setValueToTags('Dois','Duo',strAux);
   objCacic.setValueToTags('Cinco','Five',strAux);
   }      


   if (objCacic.getWebManagerAddress() <> '') then
      Begin
        strGerColsInfFileName     := objCacic.getLocalFolderName + 'GerCols.inf';
        strChkSisInfFileName      := objCacic.getWinDir          + 'ChkSis.inf';
        strMainProgramInfFileName := objCacic.getLocalFolderName + ChangeFileExt(objCacic.getMainProgramName,'.inf');
        Try
          if not DirectoryExists(objCacic.getLocalFolderName + 'Temp') then
            ForceDirectories(objCacic.getLocalFolderName + 'Temp');

          // Não tirar desta posição
          objCacic.setValueToFile('Configs','TeSO'      , objCacic.getWindowsStrId(), strGerColsInfFileName);
          objCacic.setValueToFile('Configs','CsCipher'  , '1'                       ,strGerColsInfFileName);
          objCacic.setValueToFile('Configs','CsCompress', '0'                       ,strGerColsInfFileName);
          objCacic.writeDebugLog('GerCols: Te_So obtido: "' + objCacic.getWindowsStrId() +'"');

          strAcaoGercols := 'Iniciando teste de comunicação com o Módulo Gerente WEB ('+objCacic.getWebManagerAddress+')';
          
          CriaCookie('aguarde_GER.txt');

          // Esse teste também colocará a estação de trabalho em DEBUG, caso seja determinado no Gerente WEB
          if FindCmdLineSwitch ('getTest', True) then
          begin
            getTest();
            Finalizar(true);
			      halt(0);
          end
          else if FindCmdLineSwitch ('getMapa', True) then
          begin
            getConfigs(true);
            getMapa();
            Finalizar(true);
            halt(0);
          end;

          objCacic.setBoolCipher(not objCacic.isInDebugMode);

          objCacic.writeDebugLog('GerCols: ' + DupeString('*',100));
          objCacic.writeDebugLog('GerCols: Início de Execução');
          objCacic.writeDebugLog('GerCols: ' + DupeString('*',100));
          objCacic.writeDebugLog('GerCols: ' + DupeString('=',100));
          objCacic.writeDebugLog('GerCols: Parâmetros recebidos: ' + IntToStr(ParamCount));
          objCacic.writeDebugLog('GerCols: ' + DupeString('=',100));

          intAuxGerCols      := 1;
          while (intAuxGerCols <= ParamCount) do
            Begin
              objCacic.writeDebugLog('GerCols: ' + ParamStr(intAuxGerCols));
              inc(intAuxGerCols);
            End;
          objCacic.writeDebugLog('GerCols: ' + DupeString('=',100));
          executeGerCols;
          Finalizar(true);
        Except
          Begin
            objCacic.writeDailyLog('PROBLEMAS EM EXECUTA_GERCOLS! Ação : ' + strAcaoGercols+'.');
            objCacic.CriaTXT(objCacic.getLocalFolderName,'gererro', strAcaoGerCols);
            objCacic.setValueToFile('Mensagens','CsTipo'    , 'mtError', strGerColsInfFileName);
            objCacic.setValueToFile('Mensagens','TeMensagem', strAcaoGercols, strGerColsInfFileName);
            Finalizar(false);
          End;
        End;
      End
    else
      objCacic.writeDailyLog('GERCOLS executado de forma incorreta! Parâmetros obrigatórios ausentes!');

    Halt(0);
end.