-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIngestCSV.vbs
1162 lines (1003 loc) · 46.5 KB
/
IngestCSV.vbs
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
dim OVersion 'Oldest Installed version
dim CVersion 'Installed version
dim outputl 'Email body
Dim AllApps 'Data from CSV
dim WPData 'Web page text
Dim yfound 'For new apps, series of tests to find similar apps
Dim UpdatePageQTH, UpdatePageQTHVarience 'Used to fix any integer values in the two fields that are actually NULL
Dim adoconn
Dim rs
Dim str
set filesys=CreateObject("Scripting.FileSystemObject")
set xmlhttp = createobject("msxml2.serverxmlhttp.3.0")
Dim WshShell, strCurDir
Set WshShell = CreateObject("WScript.Shell")
strCurDir = filesys.GetParentFolderName(Wscript.ScriptFullName)
Dim AppRenames()
Dim RenameTo, RenameEx, RenamePrev 'AI App Renaming
Dim Response 'For answers to prompts
Dim PSSchema, PSTbl 'Define schema and table names
PSSchema = "software_matrix"
PSTbl = "discoveredapplications"
'Gather variables from smapp.ini or prompt for them and save them for next time
If filesys.FileExists(strCurDir & "\smapp.ini") then
'Database
CSVPath = ReadIni(strCurDir & "\smapp.ini", "Database", "CSVPath" )
DBLocation = ReadIni(strCurDir & "\smapp.ini", "Database", "DBLocation" )
DBUser = ReadIni(strCurDir & "\smapp.ini", "Database", "DBUser" )
DBPass = ReadIni(strCurDir & "\smapp.ini", "Database", "DBPass" )
'Email - Defaults to anonymous login
RptToEmail = ReadIni(strCurDir & "\smapp.ini", "Email", "RptToEmail" )
RptFromEmail = ReadIni(strCurDir & "\smapp.ini", "Email", "RptFromEmail" )
EmailSvr = ReadIni(strCurDir & "\smapp.ini", "Email", "EmailSvr" )
EmailPort = ReadIni(strCurDir & "\smapp.ini", "Email", "EmailPort" )
EmailAuthType = ReadIni(strCurDir & "\smapp.ini", "Email", "EmailAuthType" )
EmailUserName = ReadIni(strCurDir & "\smapp.ini", "Email", "EmailUserName" )
EmailPassword = ReadIni(strCurDir & "\smapp.ini", "Email", "EmailPassword" )
'Additional email settings found in smapp.ini
'WebGUI
BaseURL = ReadIni(strCurDir & "\smapp.ini", "WebGUI", "BaseURL" )
else
msgbox "INI file not found at: " & strCurDir & "\smapp.ini" & vbCrlf & "You will now be prompted with questions to create it."
'Database
CSVPath = inputbox("Enter the location where the CSV file with the software dump can be found (UNC path recommended):", "Software Matrix", strCurDir & "\Applications.csv")
DBLocation = inputbox("Enter the IP address or hostname for the location of the database:", "Software Matrix", "localhost")
DBUser = inputbox("Enter the user name to access database on " & DBLocation & ":", "Software Matrix", "user")
DBPass = inputbox("Enter the password to access database on " & DBLocation & ":", "Software Matrix", "P@ssword1")
'Check to see if DB exists
CheckForTables
'Email - Defaults to anonymous login
RptToEmail = inputbox("Enter the report email's To address:", "Software Matrix", "[email protected]")
RptFromEmail = inputbox("Enter the report email's From address:", "Software Matrix", "[email protected]")
EmailSvr = inputbox("Enter the FQDN or IP address of email server:", "Software Matrix", "mail.server.com")
EmailPort = "25"
EmailAuthType = "0" '0 = Do not authenticate, 1 = basic (clear-text) authentication, 2 = NTLM
EmailUserName = RptFromEmail
EmailPassword = ""
msgbox "Additional email settings found in smapp.ini"
'WebGUI
BaseURL = inputbox("Enter the base URL for the Software Matrix GUI (Web GUI available at https://github.com/compuvin/SoftwareMatrix-GUI):", "Software Matrix", "http://www.intranet.com")
'Write the data to INI file
WriteIni strCurDir & "\smapp.ini", "Database", "CSVPath", CSVPath
WriteIni strCurDir & "\smapp.ini", "Database", "DBLocation", DBLocation
WriteIni strCurDir & "\smapp.ini", "Database", "DBUser", DBUser
WriteIni strCurDir & "\smapp.ini", "Database", "DBPass", DBPass
WriteIni strCurDir & "\smapp.ini", "Email", "RptToEmail", RptToEmail
WriteIni strCurDir & "\smapp.ini", "Email", "RptFromEmail", RptFromEmail
WriteIni strCurDir & "\smapp.ini", "Email", "EmailSvr", EmailSvr
WriteIni strCurDir & "\smapp.ini", "Email", "EmailPort", EmailPort
WriteIni strCurDir & "\smapp.ini", "Email", "EmailAuthType", EmailAuthType
WriteIni strCurDir & "\smapp.ini", "Email", "EmailUserName", EmailUserName
WriteIni strCurDir & "\smapp.ini", "Email", "EmailPassword", EmailPassword
WriteIni strCurDir & "\smapp.ini", "WebGUI", "BaseURL", BaseURL
end if
outputl = ""
If filesys.FileExists(CSVPath) then
AllApps = GetFile(CSVPath)
if len(AllApps) > 100 then
'Fix for if a single quote exists in file
AllApps = replace(AllApps,"'","''")
Set adoconn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")
'See if we can use this later: HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\
adoconn.Open "Driver={MySQL ODBC 8.4 ANSI Driver};Server=" & DBLocation & ";" & _
"Database=" & PSSchema & "; User=" & DBUser & "; Password=" & DBPass & ";"
Get_App_Renames 'Uses apprename table to check regex for apps that match patterns and should be listed as the same app
Get_PC_New_Updated 'List software Added/Updated from each PC
Get_PC_Removed 'List software removed from each PC
if outputl <> "" then
outputl = "<html><head> <style>BODY{font-family: Arial; font-size: 10pt;}TABLE{border: 1px solid black; border-collapse: collapse;}TH{border: 1px solid black; background: #dddddd; padding: 5px; }TD{border: 1px solid black; padding: 5px; }</style> </head><body>" & vbcrlf & outputl
SendMail RptToEmail, "Software Matrix: Change Report"
outputl = ""
end if
Get_Organization_New 'List software that has never been seen in the organization before
Get_Organization_Removed 'List software that no longer exists in the organization
if outputl <> "" then
outputl = "<html><head> <style>BODY{font-family: Arial; font-size: 10pt;}TABLE{border: 1px solid black; border-collapse: collapse;}TH{border: 1px solid black; background: #dddddd; padding: 5px; }TD{border: 1px solid black; padding: 5px; }</style> </head><body>" & vbcrlf & outputl
SendMail RptToEmail, "Software Matrix: Security Report"
outputl = ""
end if
'msgbox "CSV Exists"
filesys.DeleteFile CSVPath, force
End if
End if
Function Get_PC_New_Updated()
Dim AllApps_Org, CurrApp, CurrVer 'For Orgs
Dim CurrPC, CurrPub 'For PCs only
Dim CurrAppNoVer, TestFOSS, TestFOSSFree, TestFOSSOS 'App without version
'Update the Organization stats
AllApps_Org = right(AllApps,len(AllApps)-32)
do while len(AllApps_Org) > 10
'Ignore PC name
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,",",1))
'Get application
if left(AllApps_Org,1)="""" then
CurrApp = mid(AllApps_org,2,instr(1,AllApps_org,""",",1)-2)
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,""",",1)-1)
else
CurrApp = mid(AllApps_org,1,instr(1,AllApps_org,",",1)-1)
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,",",1))
end if
'Check for apps that need to be renamed based on apprename table
Set re = New RegExp
for i = 0 to ubound(AppRenames,1)
re.Pattern = AppRenames(i,0)
If re.Test(CurrApp) then
CurrApp = AppRenames(i,1)
i = ubound(AppRenames,1)
End if
next
'msgbox CurrApp
'Ignore publisher
if left(AllApps_Org,1)="""" then
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,""",",1)-1)
else
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,",",1))
end if
'Get version
if left(AllApps_Org,1)="""" then
CurrVer = mid(AllApps_org,2,instr(1,AllApps_org,vbCrlf,1)-3)
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,vbCrlf,1)-1)
if len(CurrVer) = 0 then CurrVer = "0" 'No version!
elseif instr(1,AllApps_org,vbCrlf,1) - 1 <= 0 then
CurrVer = "0"
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,vbCrlf,1)-1)
'msgbox CurrApp & " No version!"
else
CurrVer = mid(AllApps_org,1,instr(1,AllApps_org,vbCrlf,1)-1)
AllApps_Org = right(AllApps_Org,len(AllApps_Org)-instr(1,AllApps_Org,vbCrlf,1)-1)
end if
'msgbox CurrVer
str = "Select * from discoveredapplications where Name='" & CurrApp & "';"
rs.Open str, adoconn, 3, 3 'OpenType, LockType
if not rs.eof then
rs.MoveFirst
if len(rs("LastDiscovered") & "") = 0 then rs("LastDiscovered") = "2001-01-01" 'Fix DB issues
if len(rs("FirstDiscovered") & "") = 0 then rs("FirstDiscovered") = format(date()-1, "YYYY-MM-DD") 'Fix DB issues
if format(rs("LastDiscovered"), "YYYY-MM-DD") <> format(date(), "YYYY-MM-DD") then
if len(rs("Version_Newest") & "") = 0 then rs("Version_Newest") = 0 'Fix DB issues
rs("Version_Oldest") = rs("Version_Newest")
rs("LastDiscovered") = format(date(), "YYYY-MM-DD")
'msgbox "date"
end if
if isnumeric(replace(CurrVer,".","")) and isnumeric(replace(rs("Version_Oldest"),".","")) and isnumeric(replace(rs("Version_Newest"),".","")) then
if CompareVersions(PadVersion(CurrVer), PadVersion(rs("Version_Oldest"))) = 2 then
rs("Version_Oldest") = CurrVer
'msgbox CurrApp & " Updated -"
end if
if CompareVersions(PadVersion(CurrVer), PadVersion(rs("Version_Newest"))) = 1 then
rs("Version_Newest") = CurrVer
'msgbox CurrApp & " Updated +"
end if
end if
'msgbox "Got it"
rs.update
rs.close
else
rs.close
yfound = False
'Check existing software for similar apps
CurrAppNoVer = replace(CurrApp, ".", "_")
for i=0 to 9
CurrAppNoVer = replace(CurrAppNoVer, i, "_")
next
i = 0
do while right(CurrAppNoVer,1) = "_"
CurrAppNoVer = left(CurrAppNoVer, len(CurrAppNoVer) - 1)
i = 1
loop
if i = 1 then CurrAppNoVer = CurrAppNoVer & "%"
str = "Select * from discoveredapplications where Name like '" & CurrAppNoVer & "';"
rs.Open str, adoconn, 2, 1 'OpenType, LockType
if not rs.eof then
yfound = True
'msgbox "New app - minor version change (1)" & vbCrlf & CurrApp
rs.MoveFirst
if len(rs("UpdateURL")) > 1 then
if int(rs("UpdatePageQTH")) & 0 = 0 then UpdatePageQTH = 0 else UpdatePageQTH = int(rs("UpdatePageQTH")) 'Fix NULL entries in integer field
if int(rs("UpdatePageQTHVarience")) & 0 = 0 then UpdatePageQTHVarience = 0 else UpdatePageQTHVarience = int(rs("UpdatePageQTHVarience")) 'Fix NULL entries in integer field
if UpdatePageQTHVarience = 10 + len(rs("Version_Newest")) then UpdatePageQTHVarience = 10 + len(CurrVer) 'Update the varience if it has never been updated and the version length is different
str = "INSERT INTO discoveredapplications(Name,Version_Oldest,Version_Newest,LastDiscovered,FirstDiscovered,Free,OpenSource,FOSS,ReasonForSoftware,NeededOnMachines,PlansForRemoval,`Update Method`,UpdateURL,UpdatePageQTH,UpdatePageQTHVarience) values('" & CurrApp & "','" & CurrVer & "','" & CurrVer & "','" & format(date(), "YYYY-MM-DD") & "','" & format(date(), "YYYY-MM-DD") & "','" & rs("Free") & "','" & rs("OpenSource") & "','" & rs("FOSS") & "','" & rs("ReasonForSoftware") & "','" & rs("NeededOnMachines") & "','" & rs("PlansForRemoval") & "','" & rs("Update Method") & "','" & rs("UpdateURL") & "','" & UpdatePageQTH & "','" & UpdatePageQTHVarience & "');"
else
str = "INSERT INTO discoveredapplications(Name,Version_Oldest,Version_Newest,LastDiscovered,FirstDiscovered,Free,OpenSource,FOSS,ReasonForSoftware,NeededOnMachines,PlansForRemoval,`Update Method`) values('" & CurrApp & "','" & CurrVer & "','" & CurrVer & "','" & format(date(), "YYYY-MM-DD") & "','" & format(date(), "YYYY-MM-DD") & "','" & rs("Free") & "','" & rs("OpenSource") & "','" & rs("FOSS") & "','" & rs("ReasonForSoftware") & "','" & rs("NeededOnMachines") & "','" & rs("PlansForRemoval") & "','" & rs("Update Method") & "');"
end if
adoconn.Execute(str)
RenamePrev = rs("Name")
end if
rs.close
if yfound = false then
str = "Select * from discoveredapplications where Name like '" & left(CurrApp,len(CurrApp)/2) & "%' and not UpdateURL = '' and UpdateURL IS NOT NULL;"
rs.Open str, adoconn, 2, 1 'OpenType, LockType
if not rs.eof then
rs.MoveFirst
'Pull website
On error resume next
xmlhttp.open "get", rs("UpdateURL"), false
xmlhttp.send
WPData = xmlhttp.responseText
'Check to see if exists
if instr(1,WPData,CurrVer,0)>0 then
yfound = True
'msgbox "New app - major version change (2)" & vbCrlf & CurrApp
UpdatePageQTHVarience = int(rs("UpdatePageQTHVarience"))
if UpdatePageQTHVarience = 10 + len(rs("Version_Newest")) then UpdatePageQTHVarience = 10 + len(CurrVer) 'Update the varience if it has never been updated and the version length is different
str = "INSERT INTO discoveredapplications(Name,Version_Oldest,Version_Newest,LastDiscovered,FirstDiscovered,Free,OpenSource,FOSS,ReasonForSoftware,NeededOnMachines,PlansForRemoval,`Update Method`,UpdateURL,UpdatePageQTH,UpdatePageQTHVarience) values('" & CurrApp & "','" & CurrVer & "','" & CurrVer & "','" & format(date(), "YYYY-MM-DD") & "','" & format(date(), "YYYY-MM-DD") & "','" & rs("Free") & "','" & rs("OpenSource") & "','" & rs("FOSS") & "','" & rs("ReasonForSoftware") & "','" & rs("NeededOnMachines") & "','" & rs("PlansForRemoval") & "','" & rs("Update Method") & "','" & rs("UpdateURL") & "','" & instr(1,WPData,CurrVer,0) & "','" & UpdatePageQTHVarience & "');"
adoconn.Execute(str)
RenamePrev = rs("Name")
end if
end if
rs.close
end if
if yfound = false then
'msgbox "New app - brand new (3)" & vbCrlf & CurrApp
CurrAppNoVer = replace(CurrApp, ".", "")
CurrAppNoVer = replace(CurrAppNoVer, "x86", "")
CurrAppNoVer = replace(CurrAppNoVer, "x64", "")
CurrAppNoVer = replace(CurrAppNoVer, "(", "")
CurrAppNoVer = replace(CurrAppNoVer, ")", "")
for i=0 to 9
CurrAppNoVer = replace(CurrAppNoVer, i, "")
next
CurrAppNoVer = trim(CurrAppNoVer)
TestFOSSfree = ""
TestFOSSOS = ""
TestFOSS = ""
'Test FOSS at OpenHub.net
xmlhttp.open "get", "https://www.openhub.net/p?query=" & CurrAppNoVer, false
xmlhttp.send
WPData = xmlhttp.responseText
if instr(1,WPData," - did not match anything.",1) = 0 then
TestFOSSFree = "Y"
TestFOSSOS = "Y"
end if
'Test FOSS at chocolatey.org
xmlhttp.open "get", "https://chocolatey.org/packages?q=" & CurrAppNoVer, false
xmlhttp.send
WPData = xmlhttp.responseText
if instr(1,WPData,"Returned 0 <text>Package</text>s",1) = 0 then
TestFOSSFree = "Y"
end if
if TestFOSSFree = "Y" or TestFOSSOS = "Y" then TestFOSS = "Y"
str = "INSERT INTO discoveredapplications(Name,Version_Oldest,Version_Newest,LastDiscovered,FirstDiscovered,Free,OpenSource,FOSS,UpdatePageQTHVarience) values('" & CurrApp & "','" & CurrVer & "','" & CurrVer & "','" & format(date(), "YYYY-MM-DD") & "','" & format(date(), "YYYY-MM-DD") & "','" & TestFOSSFree & "','" & TestFOSSOS & "','" & TestFOSS & "','" & (10 + len(CurrVer)) & "');"
adoconn.Execute(str)
'msgbox "Added: " & CurrApp & " - " & CurrVer
else 'Machine Learning App Renames
Add_App_Renames CurrApp, RenamePrev, CurrAppNoVer
end if
end if
loop
'PCs - Whats new/old/changed
'AllApps = right(AllApps,len(AllApps)-33)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,vbCrlf,1)-1)
do while len(AllApps) > 10
'Get PC name
if left(AllApps,1)="""" then
CurrPC = mid(AllApps,2,instr(1,AllApps,""",",1)-2)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,""",",1)-1)
else
CurrPC = mid(AllApps,1,instr(1,AllApps,",",1)-1)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,",",1))
end if
'msgbox CurrPC
'Get application
if left(AllApps,1)="""" then
CurrApp = mid(AllApps,2,instr(1,AllApps,""",",1)-2)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,""",",1)-1)
else
CurrApp = mid(AllApps,1,instr(1,AllApps,",",1)-1)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,",",1))
end if
'Check for apps that need to be renamed based on apprename table
Set re = New RegExp
for i = 0 to ubound(AppRenames,1)
re.Pattern = AppRenames(i,0)
If re.Test(CurrApp) then
CurrApp = AppRenames(i,1)
i = ubound(AppRenames,1)
End if
next
'msgbox CurrApp
'Get publisher
if left(AllApps,1)="""" then
CurrPub = mid(AllApps,2,instr(1,AllApps,""",",1)-2)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,""",",1)-1)
else
CurrPub = mid(AllApps,1,instr(1,AllApps,",",1)-1)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,",",1))
end if
'msgbox CurrPub
'Get version
if left(AllApps,1)="""" then
CurrVer = mid(AllApps,2,instr(1,AllApps,vbCrlf,1)-3)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,vbCrlf,1)-1)
if len(CurrVer) = 0 then CurrVer = "0" 'No version!
elseif instr(1,AllApps,vbCrlf,1) - 1 <= 0 then
CurrVer = "0"
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,vbCrlf,1)-1)
'msgbox CurrApp & " No version!"
else
CurrVer = mid(AllApps,1,instr(1,AllApps,vbCrlf,1)-1)
AllApps = right(AllApps,len(AllApps)-instr(1,AllApps,vbCrlf,1)-1)
end if
'msgbox CurrVer
'msgbox CurrPC & vbCrlf & CurrApp & vbCrlf & CurrPub & vbCrlf & CurrVer
str = "Select * from applicationsdump where Computer='" & CurrPC & "' and Name='" & CurrApp & "';"
rs.Open str, adoconn, 3, 3 'OpenType, LockType
if not rs.eof then
rs.MoveFirst
if len(rs("LastDiscovered") & "") = 0 then rs("LastDiscovered") = "2001-01-01" 'Fix DB issues
if len(rs("FirstDiscovered") & "") = 0 then rs("FirstDiscovered") = format(date()-1, "YYYY-MM-DD") 'Fix DB issues
if format(rs("LastDiscovered"), "YYYY-MM-DD") <> format(date(), "YYYY-MM-DD") then
rs("LastDiscovered") = format(date(), "YYYY-MM-DD")
'msgbox "date"
end if
if not rs("Version") = CurrVer then
if instr(1,outputl,"<p><b>Software Added or Changed:</b></p>",1) = 0 then
'Header Info
outputl = outputl & "<p><b>Software Added or Changed:</b></p>" & vbcrlf
outputl = outputl & "<table>" & vbcrlf
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <th>Computer</th>" & vbcrlf
outputl = outputl & " <th>Application</th>" & vbcrlf
outputl = outputl & " <th>Publisher</th>" & vbcrlf
outputl = outputl & " <th>Previous Version</th>" & vbcrlf
outputl = outputl & " <th>New Version</th>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
end if
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <td>" & CurrPC & "</td>" & vbcrlf
outputl = outputl & " <td>" & CurrApp & "</td>" & vbcrlf
outputl = outputl & " <td>" & CurrPub & "</td>" & vbcrlf
outputl = outputl & " <td>" & rs("Version") & "</td>" & vbcrlf
outputl = outputl & " <td>" & CurrVer & "</td>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
'msgbox CurrApp & ": Updated on " & CurrPC & " from " & rs("Version") & " to " & CurrVer
rs("Version") = CurrVer
rs("Publisher") = CurrPub
end if
'msgbox CurrPC & "|" & CurrApp & ": finished updating"
rs.update
else
if instr(1,outputl,"<p><b>Software Added or Changed:</b></p>",1) = 0 then
'Header Info
outputl = outputl & "<p><b>Software Added or Changed:</b></p>" & vbcrlf
outputl = outputl & "<table>" & vbcrlf
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <th>Computer</th>" & vbcrlf
outputl = outputl & " <th>Application</th>" & vbcrlf
outputl = outputl & " <th>Publisher</th>" & vbcrlf
outputl = outputl & " <th>Previous Version</th>" & vbcrlf
outputl = outputl & " <th>New Version</th>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
end if
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <td>" & CurrPC & "</td>" & vbcrlf
outputl = outputl & " <td>" & CurrApp & "</td>" & vbcrlf
outputl = outputl & " <td>" & CurrPub & "</td>" & vbcrlf
outputl = outputl & " <td></td>" & vbcrlf
outputl = outputl & " <td>" & CurrVer & "</td>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
str = "INSERT INTO applicationsdump(Computer,Name,Publisher,Version,LastDiscovered,FirstDiscovered) values('" & CurrPC & "','" & CurrApp & "','" & CurrPub & "','" & CurrVer & "','" & format(date(), "YYYY-MM-DD") & "','" & format(date(), "YYYY-MM-DD") & "');"
adoconn.Execute(str)
'msgbox "Added: " & CurrPC & "|" & CurrApp & " - " & CurrVer
end if
rs.close
loop
if instr(1,outputl,"<p><b>Software Added or Changed:</b></p>",1) > 0 then outputl = outputl & "</table>" & vbcrlf
End function
Function Get_PC_Removed()
str = "Select * from applicationsdump where LastDiscovered IS NOT NULL and not LastDiscovered = '" & format(date(), "YYYY-MM-DD") & "' order by Computer;"
rs.Open str, adoconn, 3, 3 'OpenType, LockType
if not rs.eof then
'Header Info
outputl = outputl & "<p><b>Software Removed:</b></p>" & vbcrlf
outputl = outputl & "<table>" & vbcrlf
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <th>Computer</th>" & vbcrlf
outputl = outputl & " <th>Application</th>" & vbcrlf
outputl = outputl & " <th>Publisher</th>" & vbcrlf
outputl = outputl & " <th>Version</th>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
rs.MoveFirst
end if
do while not rs.eof
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <td>" & rs("Computer") & "</td>" & vbcrlf
outputl = outputl & " <td>" & rs("Name") & "</td>" & vbcrlf
outputl = outputl & " <td>" & rs("Publisher") & "</td>" & vbcrlf
outputl = outputl & " <td>" & rs("Version") & "</td>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
rs.delete
rs.movenext
if rs.eof then outputl = outputl & "</table>" & vbcrlf
loop
rs.close
End function
Function Get_Organization_New()
str = "Select * from discoveredapplications where FirstDiscovered = '" & format(date(), "YYYY-MM-DD") & "' order by Name;"
rs.Open str, adoconn, 2, 1 'OpenType, LockType
if not rs.eof then
'Header Info
outputl = outputl & "<p><b>New Software that has been added to organization:</b></p>" & vbcrlf
outputl = outputl & "<table>" & vbcrlf
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <th>Application</th>" & vbcrlf
outputl = outputl & " <th>FOSS</th>" & vbcrlf
outputl = outputl & " <th>Purpose</th>" & vbcrlf
outputl = outputl & " <th>Reference ID</th>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
rs.MoveFirst
end if
do while not rs.eof
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <td>" & rs("Name") & "</td>" & vbcrlf
if rs("FOSS") & "" = "Y" then
outputl = outputl & " <td bgcolor=#00CCFF>Y</td>" & vbcrlf
else
outputl = outputl & " <td>" & rs("FOSS") & "</td>" & vbcrlf
end if
outputl = outputl & " <td>" & rs("ReasonForSoftware") & "</td>" & vbcrlf
if BaseURL = "" then
outputl = outputl & " <td>" & rs("ID") & "</td>" & vbcrlf
else
outputl = outputl & " <td><a href=""" & BaseURL & "/edit-appinfo.php?id=" & rs("ID") & """>" & rs("ID") & "</a></td>" & vbcrlf
end if
outputl = outputl & "</tr>" & vbcrlf
rs.movenext
if rs.eof then outputl = outputl & "</table>" & vbcrlf
loop
rs.close
End function
Function Get_Organization_Removed()
Dim RenameConf()
str = "Select * from discoveredapplications where LastDiscovered IS NOT NULL and not LastDiscovered = '" & format(date(), "YYYY-MM-DD") & "' order by LastDiscovered DESC, Name;"
redim RenameConf(cint((adoconn.Execute(replace(str,"*","count(*)")))(0)) - 1)
i = 0
'msgbox UBound(RenameConf)
rs.Open str, adoconn, 3, 3 'OpenType, LockType
if not rs.eof then
'Header Info
outputl = outputl & "<p><b>Software that no longer exists in the organization:</b></p>" & vbcrlf
outputl = outputl & "<table>" & vbcrlf
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <th>Application</th>" & vbcrlf
outputl = outputl & " <th>FOSS</th>" & vbcrlf
outputl = outputl & " <th>Purpose</th>" & vbcrlf
outputl = outputl & " <th>Last Seen</th>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
rs.MoveFirst
end if
do while not rs.eof
outputl = outputl & "<tr>" & vbcrlf
outputl = outputl & " <td>" & rs("Name") & "</td>" & vbcrlf
outputl = outputl & " <td>" & rs("FOSS") & "</td>" & vbcrlf
outputl = outputl & " <td>" & rs("ReasonForSoftware") & "</td>" & vbcrlf
outputl = outputl & " <td>" & rs("LastDiscovered") & "</td>" & vbcrlf
outputl = outputl & "</tr>" & vbcrlf
if cdate(rs("LastDiscovered")) < (Date() - 7) then
RenameConf(i) = rs("Name")
rs.delete
Else
RenameConf(i) = ""
end if
i = i + 1
rs.movenext
if rs.eof then outputl = outputl & "</table>" & vbcrlf
loop
rs.close
'Machine Learning App Renames - Confirm
if UBound(RenameConf) > 0 then
Set re = New RegExp
str = "Select * from apprename where Confirmed < 5;"
rs.Open str, adoconn, 3, 3 'OpenType, LockType
if not rs.eof then
rs.MoveFirst
end if
do while not rs.eof
re.Pattern = rs("RegEx")
for i = 0 to UBound(RenameConf)
If not RenameConf(i) = "" then
if re.Test(RenameConf(i)) then
'msgbox rs("RenameTo") & vbCrlf & RenameConf(i)
rs("Confirmed") = int(rs("Confirmed")) + 1
rs.update
end if
end if
next
rs.movenext
loop
end if
End function
Function Get_App_Renames()
str = "select count(*) from apprename where Hits = 5 and Confirmed = 5;"
redim AppRenames(cint((adoconn.Execute(str))(0)) - 1,1)
str = "Select * from apprename where Hits = 5 and Confirmed = 5;"
rs.Open str, adoconn, 2, 1 'OpenType, LockType
i = 0
do while not rs.eof
AppRenames(i,0) = rs("RegEx")
AppRenames(i,1) = rs("RenameTo")
i = i + 1
rs.movenext
loop
rs.close
End function
Function Add_App_Renames(MLCurrApp, MLPrevApp, MLCurrAppNoVer) 'Machine Learning App Renames
Dim ThingsToKeep, MLfound
ThingsToKeep = Array("(x86)", "(x64)", "(64-bit)", "(32-bit)") 'These strings will remain in any app renames if they exist
MLfound = false
'Change MLCurrAppNoVer so that it matches RegEx format
MLCurrAppNoVer = Replace(MLCurrAppNoVer,"%","*")
MLCurrAppNoVer = Replace(MLCurrAppNoVer,"_",".")
Set re = New RegExp
for i = 1 to len(MLCurrApp)
if not left(MLCurrApp,i) = Left(MLPrevApp,i) then
i = i - 1 'Because the last character didn't match
If right(MLPrevApp,1) = " " then i = i - 1 'Remove space at the end if there is one
RenameTo = Left(MLPrevApp,i)
'msgbox left(MLPrevApp,i) + vbcrlf + MLCurrAppNoVer
RenameEx = Left(MLPrevApp,i)
if len(RenameEx) < len(MLCurrAppNoVer) then
RenameEx = RenameEx + mid(MLCurrAppNoVer,i+1,len(MLCurrAppNoVer)-i+1)
else
RenameEx = RenameEx + "*"
end if
i = len(MLCurrApp)
end if
next
'Rule = Done leave a space in the second to last character or period in last character
if left(right(RenameTo,2),1) = " " then RenameTo = left(RenameTo,len(RenameTo)-2)
if right(RenameTo,1) = "." then RenameTo = left(RenameTo,len(RenameTo)-1)
'Make sure we keep strings in ThingsToKeep
for i = 0 to ubound(ThingsToKeep)
if instr(1,MLCurrApp,ThingsToKeep(i)) then
if not instr(1,RenameTo,ThingsToKeep(i)) then RenameTo = RenameTo + " " + ThingsToKeep(i)
if len(RenameEx) > instr(1,MLCurrApp,ThingsToKeep(i)) + len(ThingsToKeep(i)) then
RenameEx = mid(RenameEx,1,instr(1,MLCurrApp,ThingsToKeep(i))-1) + ThingsToKeep(i) + right(RenameEx,len(RenameEx)-instr(1,MLCurrApp,ThingsToKeep(i))-len(ThingsToKeep(i)))
else
RenameEx = mid(RenameEx,1,instr(1,MLCurrApp,ThingsToKeep(i))-1) + ThingsToKeep(i)
end if
'msgbox "We kept " + ThingsToKeep(i)
end if
next
RenameEx = Replace(RenameEx," *","*") 'Remove unnecessary space
RenameEx = Replace(Replace(RenameEx,"(","\\("),")","\\)") 'Excape ( and )
RenameEx = Replace(RenameEx,"+","\\+") 'Excape +
RenameTo = Replace(RenameTo," "," ") 'Remove unnecessary space in RenameTo
'msgbox "Current App: " + MLCurrApp + vbcrlf + "Previous App: " + MLPrevApp + vbcrlf + vbcrlf + "Rename To: " + RenameTo + vbcrlf + "Pattern: " + RenameEx
if not MLCurrApp = RenameTo then 'After all of the processing the current app name might be good enough
str = "Select * from apprename where RenameTo = '" & RenameTo & "';"
rs.Open str, adoconn, 3, 3 'OpenType, LockType
if not rs.eof then rs.MoveFirst
do while not rs.eof
re.Pattern = rs("RegEx")
If re.Test(MLCurrApp) then
if int(rs("Hits")) < 5 then
rs("Hits") = int(rs("Hits")) + 1
rs.update
end if
MLfound = True
rs.movenext
end if
loop
if MLfound = false then
str = "INSERT INTO apprename(RegEx,RenameTo,Hits,Confirmed) values('" & RenameEx & "','" & RenameTo & "','1','0');"
adoconn.Execute(str)
end if
rs.close
end if
End Function
Function PadVersion(InputVersion)
Dim PaddedVersion
j = 0
for i = 1 to len(InputVersion)
if mid(InputVersion,i,1) = "." Then
'msgbox mid(InputVersion,i - j,j)
if j < 6 then
PaddedVersion = PaddedVersion & left("000000",6 - j) & mid(InputVersion,i - j,j)
Else
PaddedVersion = PaddedVersion & mid(InputVersion,i - j,j)
end if
j = - 1
end if
j = j + 1
Next
if j > 0 and j < 6 then
PaddedVersion = PaddedVersion & left("000000",6 - j) & mid(InputVersion,len(InputVersion) - j + 1,j)
Else
if PaddedVersion = "" then
PaddedVersion = InputVersion
Else
PaddedVersion = PaddedVersion & mid(InputVersion,len(InputVersion) - j + 1,j)
end if
end if
'msgbox PaddedVersion
PadVersion = PaddedVersion
End Function
Function CompareVersions(NumberOne, NumberTwo)
Dim WinningNum
WinningNum = 0
If Len(NumberOne) > len(NumberTwo) Then
WinningNum = 1
for i = 1 to Len(NumberTwo)
If mid(NumberOne,i,1) > mid(NumberTwo,i,1) Then
WinningNum = 1
i = len(NumberTwo)
elseif mid(NumberOne,i,1) < mid(NumberTwo,i,1) then
WinningNum = 2
i = len(NumberTwo)
end if
next
elseif Len(NumberOne) < len(NumberTwo) then
WinningNum = 2
for i = 1 to Len(NumberOne)
If mid(NumberOne,i,1) > mid(NumberTwo,i,1) Then
WinningNum = 1
i = len(NumberOne)
elseif mid(NumberOne,i,1) < mid(NumberTwo,i,1) then
WinningNum = 2
i = len(NumberOne)
end if
next
Else
for i = 1 to Len(NumberOne)
If mid(NumberOne,i,1) > mid(NumberTwo,i,1) Then
WinningNum = 1
i = len(NumberOne)
elseif mid(NumberOne,i,1) < mid(NumberTwo,i,1) then
WinningNum = 2
i = len(NumberOne)
end if
next
end if
'msgbox WinningNum
CompareVersions = WinningNum
End Function
Function SendMail(TextRcv,TextSubject)
Const cdoSendUsingPickup = 1 'Send message using the local SMTP service pickup directory.
Const cdoSendUsingPort = 2 'Send the message using the network (SMTP over the network).
Const cdoAnonymous = 0 'Do not authenticate
Const cdoBasic = 1 'basic (clear-text) authentication
Const cdoNTLM = 2 'NTLM
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = TextSubject
objMessage.From = RptFromEmail
objMessage.To = TextRcv
objMessage.HTMLBody = outputl
'==This section provides the configuration information for the remote SMTP server.
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
'Name or IP of Remote SMTP Server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = EmailSvr
'Type of authentication, NONE, Basic (Base64 encoded), NTLM
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = EmailAuthType
if EmailAuthType > 0 then
'Your UserID on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusername") = EmailUserName
'Your password on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendpassword") = EmailPassword
end if
'Server port (typically 25)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = EmailPort
'Use SSL for the connection (False or True)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False
'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
objMessage.Configuration.Fields.Update
'==End remote SMTP server configuration section==
objMessage.Send
End Function
Function Format(vExpression, sFormat)
Dim nExpression
nExpression = sFormat
if isnull(vExpression) = False then
if instr(1,sFormat,"Y") > 0 or instr(1,sFormat,"M") > 0 or instr(1,sFormat,"D") > 0 or instr(1,sFormat,"H") > 0 or instr(1,sFormat,"S") > 0 then 'Time/Date Format
vExpression = cdate(vExpression)
if instr(1,sFormat,"AM/PM") > 0 and int(hour(vExpression)) > 12 then
nExpression = replace(nExpression,"HH",right("00" & hour(vExpression)-12,2)) '2 character hour
nExpression = replace(nExpression,"H",hour(vExpression)-12) '1 character hour
nExpression = replace(nExpression,"AM/PM","PM") 'If if its afternoon, its PM
else
nExpression = replace(nExpression,"HH",right("00" & hour(vExpression),2)) '2 character hour
nExpression = replace(nExpression,"H",hour(vExpression)) '1 character hour
if int(hour(vExpression)) = 12 then nExpression = replace(nExpression,"AM/PM","PM") '12 noon is PM while anything else in this section is AM (fixed 04/19/2019 thanks to our HR Dept.)
nExpression = replace(nExpression,"AM/PM","AM") 'If its not PM, its AM
end if
nExpression = replace(nExpression,":MM",":" & right("00" & minute(vExpression),2)) '2 character minute
nExpression = replace(nExpression,"SS",right("00" & second(vExpression),2)) '2 character second
nExpression = replace(nExpression,"YYYY",year(vExpression)) '4 character year
nExpression = replace(nExpression,"YY",right(year(vExpression),2)) '2 character year
nExpression = replace(nExpression,"DD",right("00" & day(vExpression),2)) '2 character day
nExpression = replace(nExpression,"D",day(vExpression)) '(N)N format day
nExpression = replace(nExpression,"MMM",left(MonthName(month(vExpression)),3)) '3 character month name
if instr(1,sFormat,"MM") > 0 then
nExpression = replace(nExpression,"MM",right("00" & month(vExpression),2)) '2 character month
else
nExpression = replace(nExpression,"M",month(vExpression)) '(N)N format month
end if
elseif instr(1,sFormat,"N") > 0 then 'Number format
nExpression = vExpression
if instr(1,sFormat,".") > 0 then 'Decimal format
if instr(1,nExpression,".") > 0 then 'Both have decimals
do while instr(1,sFormat,".") > instr(1,nExpression,".")
nExpression = "0" & nExpression
loop
if len(nExpression)-instr(1,nExpression,".") >= len(sFormat)-instr(1,sFormat,".") then
nExpression = left(nExpression,instr(1,nExpression,".")+len(sFormat)-instr(1,sFormat,"."))
else
do while len(nExpression)-instr(1,nExpression,".") < len(sFormat)-instr(1,sFormat,".")
nExpression = nExpression & "0"
loop
end if
else
nExpression = nExpression & "."
do while len(nExpression) < len(sFormat)
nExpression = nExpression & "0"
loop
end if
else
do while len(nExpression) < sFormat
nExpression = "0" and nExpression
loop
end if
else
msgbox "Formating issue on page. Unrecognized format: " & sFormat
end if
Format = nExpression
end if
End Function
'Read text file
function GetFile(FileName)
If FileName<>"" Then
Dim FS, FileStream
Set FS = CreateObject("Scripting.FileSystemObject")
on error resume Next
Set FileStream = FS.OpenTextFile(FileName)
GetFile = FileStream.ReadAll
End If
End Function
Function ReadIni( myFilePath, mySection, myKey ) 'Thanks to http://www.robvanderwoude.com
' This function returns a value read from an INI file
'
' Arguments:
' myFilePath [string] the (path and) file name of the INI file
' mySection [string] the section in the INI file to be searched
' myKey [string] the key whose value is to be returned
'
' Returns:
' the [string] value for the specified key in the specified section
'
' CAVEAT: Will return a space if key exists but value is blank
'
' Written by Keith Lacelle
' Modified by Denis St-Pierre and Rob van der Woude
Const ForReading = 1
Const ForWriting = 2
Const ForAppending = 8
Dim intEqualPos
Dim objFSO, objIniFile
Dim strFilePath, strKey, strLeftString, strLine, strSection
Set objFSO = CreateObject( "Scripting.FileSystemObject" )
ReadIni = ""
strFilePath = Trim( myFilePath )
strSection = Trim( mySection )
strKey = Trim( myKey )
If objFSO.FileExists( strFilePath ) Then
Set objIniFile = objFSO.OpenTextFile( strFilePath, ForReading, False )
Do While objIniFile.AtEndOfStream = False
strLine = Trim( objIniFile.ReadLine )
' Check if section is found in the current line
If LCase( strLine ) = "[" & LCase( strSection ) & "]" Then
strLine = Trim( objIniFile.ReadLine )
' Parse lines until the next section is reached
Do While Left( strLine, 1 ) <> "["
' Find position of equal sign in the line
intEqualPos = InStr( 1, strLine, "=", 1 )
If intEqualPos > 0 Then
strLeftString = Trim( Left( strLine, intEqualPos - 1 ) )
' Check if item is found in the current line
If LCase( strLeftString ) = LCase( strKey ) Then
ReadIni = Trim( Mid( strLine, intEqualPos + 1 ) )
' In case the item exists but value is blank
If ReadIni = "" Then
ReadIni = " "
End If
' Abort loop when item is found
Exit Do
End If
End If
' Abort if the end of the INI file is reached
If objIniFile.AtEndOfStream Then Exit Do
' Continue with next line
strLine = Trim( objIniFile.ReadLine )
Loop
Exit Do
End If
Loop
objIniFile.Close
Else
WScript.Echo strFilePath & " doesn't exists. Exiting..."
Wscript.Quit 1
End If
End Function
Sub WriteIni( myFilePath, mySection, myKey, myValue ) 'Thanks to http://www.robvanderwoude.com
' This subroutine writes a value to an INI file
'
' Arguments:
' myFilePath [string] the (path and) file name of the INI file
' mySection [string] the section in the INI file to be searched
' myKey [string] the key whose value is to be written
' myValue [string] the value to be written (myKey will be
' deleted if myValue is <DELETE_THIS_VALUE>)
'
' Returns:
' N/A
'
' CAVEAT: WriteIni function needs ReadIni function to run
'
' Written by Keith Lacelle
' Modified by Denis St-Pierre, Johan Pol and Rob van der Woude
Const ForReading = 1
Const ForWriting = 2
Const ForAppending = 8
Dim blnInSection, blnKeyExists, blnSectionExists, blnWritten
Dim intEqualPos
Dim objFSO, objNewIni, objOrgIni
Dim strFilePath, strFolderPath, strKey, strLeftString
Dim strLine, strSection, strTempDir, strTempFile, strValue
strFilePath = Trim( myFilePath )
strSection = Trim( mySection )
strKey = Trim( myKey )
strValue = Trim( myValue )
Set objFSO = CreateObject( "Scripting.FileSystemObject" )
strTempDir = wshShell.ExpandEnvironmentStrings( "%TEMP%" )
strTempFile = objFSO.BuildPath( strTempDir, objFSO.GetTempName )
Set objOrgIni = objFSO.OpenTextFile( strFilePath, ForReading, True )