forked from LesFerch/WinSetView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWinSetView.hta
1754 lines (1532 loc) · 59.3 KB
/
WinSetView.hta
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
<!DOCTYPE html>
<!--
WinSetView (Globally Set Explorer Folder Views) v2
Les Ferch, [email protected], GitHub repository created 2021-03-26
WinSetView.hta (GUI tool to select desired views)
-->
<html>
<head>
<meta charset="UTF-8" http-equiv="X-UA-Compatible" content="IE=7">
<hta:application
id=oHTA
icon=powershell.exe
applicationname=WinSetView
selection=yes
singleinstance=yes
>
<script language="VBScript">
Option Explicit
RequiredWidth = 700
If RequiredWidth>screen.availWidth Then RequiredWidth = screen.availWidth
Window.ResizeTo RequiredWidth, screen.availHeight
Window.MoveTo (screen.availWidth - RequiredWidth) / 2, 4
SetLocale(1033)
Const ForReading = 1
Const ForWriting = 2
Const Unicode = -1
Const Ansi = 0
Const HKCU = &H80000001
Dim oWSH, oFSO, oFolder, oFile, oFiles, oOption, oReg, oElement
Dim oFolderTypes, oWMI, oSettings, oSearchOnly, oOption1, oOption2
Dim i, j, Q, V, X, Y, Z, Temp, TestFile, Section, CheckCount, Value, Key, ArrKeys, Result, SubKey
Dim AvailHeight, HeadHeight, RequiredWidth, CurrentWidth, Maximized, Fonts
Dim AppData, WinVer, Folder, INIFile, rbShow, BodyHTML, TaggedHTML, Tag, Item
Dim Language,LangDir, LangFile, LangCount, LangData, LangIndex, UBFolderType, YScrollPos
Dim ViewFile, ViewData, FolderTypeFile, Scale, FontsFile, Backup, F1, F2
Dim ColFile, ColData, SelectedFont1, SelectedFont2, FontFile, Checkmark, LRArrow
Dim CmdLine, Line, Order, sOrder, SelectedSize1, SelectedSize2, GUID, Found
Dim C1, C2, LastColSel, FTindex, Data, Show, TempFile, File, PartsDir, FileDialogExe
Dim ColWid, ColShow, SortBy, BaseScale, UpArrow, DnArrow, MyLoc, MyPath, CurDir
Dim Gidx, Midx, Nidx, Pidx, Widx, S1idx, S2idx, S3idx, S4idx, Sort1, Sort2, Sort3, Sort4
Dim ArrSort1, ArrSort2, ArrSort3, ArrSort4, ArrFonts
Dim ArrSort1Order, ArrSort2Order, ArrSort3Order, ArrSort4Order
Dim ArrLang, ArrView, ArrColData, ArrColDataItem, ArrColumnEntry, ArrColumnList, ArrLine
Dim ArrData(21), ArrFolderTypeGUID(60), ArrFolderType(60), ArrFolderTypeLang(60), ArrInherit(60)
Dim ArrColumnLists, ArrGroupBy, ArrInheritFlag, ArrHTML1, ArrHTML2, ArrViewChoice
Dim ArrSortBy, ArrIncludeFlag, ArrIconSize
Z = vbCRLF
Q = Chr(34)
Language = "en-US"
Set oWSH = CreateObject("Wscript.Shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oReg = GetObject("winmgmts:\\.\root\default:StdRegProv")
Set oWMI = GetObject("winmgmts:\\.\root\cimv2")
Set oSearchOnly = CreateObject("Scripting.Dictionary")
oSearchOnly.Add "ItemFolderPathDisplay",""
oSearchOnly.Add "ItemFolderPathDisplayNarrow",""
oSearchOnly.Add "ItemPathDisplay",""
oSearchOnly.Add "ItemFolderNameDisplay",""
BaseScale = GetScale(): Scale = BaseScale
' Get Windows major version from ProductName value
' Treat Windows 11 same as Windows 10 because they
' have same folder types and properties
WinVer = oWSH.RegRead("HKLM\Software\Microsoft\Windows NT\CurrentVersion\ProductName")
WinVer = Trim(Replace(Mid(WinVer,9,2),"."," "))
If WinVer="11" Then WinVer="10"
If WinVer<>"7" And WinVer<>"8" And WinVer<>"10" Then
MsgBox "Windows 7, 8, 10, or 11 is required.",vbCritical,"Error"
Self.Close
End If
' This code allows the script to run from a UNC or mapped drive
' whether it's double-clicked or found with Windows Search
MyLoc = Mid(document.url,8)
MyPath = Left(MyLoc,InStrRev(MyLoc,"\")-1)
CurDir = oWSH.CurrentDirectory
If CurDir<>MyPath Then oWSH.CurrentDirectory = MyPath
Temp = oWSH.ExpandEnvironmentStrings("%Temp%")
TempFile = Temp & "\WinSetView.tmp"
LangDir = ".\Language\"
PartsDir = ".\AppParts\"
AppData = ".\AppData"
Backup = ".\AppData\Backup"
FontsFile = PartsDir & "Fonts.txt"
FileDialogExe = PartsDir & "FileDialog.exe"
If WinVer="7" Or WinVer="8" Then
UpArrow = "↑"
DnArrow = "↓"
Checkmark = "√"
LRArrow = "←→"
Else
UpArrow = "⮬"
DnArrow = "⮯"
Checkmark = "✔"
LRArrow = "⟷"
End If
' Set AppData to current folder if we have write access
' Otherwise set AppData to user profile AppData
TestFile = ".\" & Replace(Replace(Replace(Now(),"/",""),":","")," ","") & ".txt"
On Error Resume Next
Set oFile = oFSO.OpenTextFile(TestFile,ForWriting,True,Ansi)
oFile.Write ""
oFile.Close
On Error Goto 0
If oFSO.FileExists(TestFile) Then
oFSO.DeleteFile(TestFile)
Else
AppData = oWSH.ExpandEnvironmentStrings("%APPDATA%") & "\WinSetView"
End If
If Not oFSO.FolderExists(AppData) Then oFSO.CreateFolder(AppData)
If Not oFSO.FolderExists(Backup) Then oFSO.CreateFolder(Backup)
' See if there are any backup reg files in the Backup folder
Set oFolder = oFSO.GetFolder(Backup)
Set oFiles = oFolder.Files
rbShow = False
For Each oFile In oFiles
If LCase(oFSO.GetExtensionName(oFile.Name)) = "reg" Then rbShow = True
Next
' Get data from INI file
INIFile = AppData & "\Win" & WinVer & ".ini"
Ini2Dict INIFile
' Set language choice from INI or Windows
SetLang
' On exit kill any open instances of filedialog.exe
Sub window_OnUnload
oWSH.Run "TaskKill /im FileDialog.exe /f",0,False
End Sub
Sub window_OnLoad
'Populate language dropdown menu
LangCount = 0
If oFSO.FolderExists(LangDir) Then
Set oFolder = oFSO.GetFolder(LangDir)
For Each oFolder In oFolder.SubFolders
Folder = oFSO.GetBaseName(oFolder)
LangCount = LangCount + 1
Set oOption = document.createElement("Option")
oOption.Text = Folder
oOption.Value = Folder
Lang.Add(oOption)
Next
End If
' Set language drop down item to selected language
If LangCount>0 Then
LangIndex = 0
For i = 0 To (LangCount - 1)
If LCase(Language)=LCase(lang.options(i).value) Then
LangIndex = i
Exit For
End If
Next
lang.SelectedIndex = LangIndex
End If
' Populate font menu
For i = 8 to 24
Set oOption1 = document.createElement("Option")
oOption1.Text = i
oOption1.Value = i
Size1.Add(oOption1)
Set oOption2 = document.createElement("Option")
oOption2.Text = i
oOption2.Value = i
Size2.Add(oOption2)
Next
' Populate horizontal scroll control menu
For i = 0 to 9
Set oOption = document.createElement("Option")
If i=0 Then
oOption.Disabled = True
oOption.Text = "⟷"
oOption.Value = i
Else
oOption.Text = i
oOption.Value = i
End If
xs.Add(oOption)
Next
cbo.Value = Checkmark & Checkmark
cbc.Value = Checkmark
' Saved current body HTML so that language can be switched without restarting
TaggedHTML = Document.Body.InnerHTML
' Set up pages in selected language and font
UpdateLang(False)
End Sub
' The following code is needed for scaling the checkboxes and radio buttons
Function GetScale()
GetScale = 1.0
Value = oWSH.RegRead("HKCU\Control Panel\Desktop\WindowMetrics\AppliedDPI")
If Value > 96 Then
'Custom scaling is set
GetScale = Value/96
Else
'See if standard scaling is set
Key = "Control Panel\Desktop\PerMonitorSettings"
Result = oReg.EnumKey(HKCU, Key, ArrKeys)
If Result=0 Then
'Assume first monitor in list is the one we want
For Each SubKey In ArrKeys
Exit For
Next
Value = oWSH.RegRead("HKCU\" & Key & "\" & SubKey & "\DPIValue")
If Value>0 Then GetScale = 1 + (Value * 0.25)
End If
End If
End Function
' Get data from INI file into scripting dictionary
Sub Ini2Dict(INIFile)
Set oSettings = CreateObject("Scripting.Dictionary")
If oFSO.FileExists(IniFile) Then
Set oFile = oFSO.OpenTextFile(IniFile,ForReading,,Ansi)
Do Until oFile.AtEndOfStream
Line = Trim(oFile.ReadLine)
If Line<>"" And Left(Line,1)<>";" Then
If Left(Line,1)="[" Then
Section = Line
Else
ArrLine = Split(Line,"=")
If UBound(Arrline)=1 Then oSettings.Add Section & ArrLine(0),ArrLine(1)
End If
End If
Loop
oFile.Close
End If
End Sub
' Set preferred language
Sub SetLang
Language = "en-US"
On Error Resume Next
Language = oWSH.RegRead("HKCU\Control Panel\International\LocaleName")
Language = oWSH.RegRead("HKCU\Control Panel\Desktop\PreferredUILanguages")(0)
On Error Goto 0
If oSettings.Exists("[Options]Language") Then Language = oSettings.Item("[Options]Language")
If Not oFSO.FolderExists(LangDir & Language) Then Language = "en-US"
If Not oFSO.FolderExists(LangDir & Language) Then
MsgBox "Language folder missing: " & LangDir & Language,vbCritical,"Error"
Self.Close
End If
End Sub
' Update pages with selected language, font, and size
Sub UpdateLang(OnChange)
'Read in language file
If LangCount>0 Then
LangIndex = lang.SelectedIndex
Language = lang.options(LangIndex).value
LangFile = LangDir & Language & "\Labels.txt"
If oFSO.FileExists(LangFile) Then
Set oFile = oFSO.OpenTextFile(LangFile,ForReading,,Unicode)
LangData = oFile.ReadAll
oFile.Close
End If
End If
' Make fist array element a blank line so that text editor line numbers match array indices
ArrLang = Split(Z & LangData,Z)
FolderTypeFile = LangDir & Language & "\FolderTypes.txt"
' Read FolderType file contents into and array
' If Win 7 or 8, skip folder types that don't exist
If oFSO.FileExists(FolderTypeFile) Then
Set oFile = oFSO.OpenTextFile(FolderTypeFile,ForReading,,Unicode)
Set oFolderTypes = CreateObject("Scripting.Dictionary")
i = -1
Do Until oFile.AtEndOfStream
Line = Trim(oFile.ReadLine)
If Line<>"" And Left(Line,1)<>";" And InStr(Line,";") Then
ArrLine = Split(Line,";")
GUID = Trim(ArrLine(0))
Found = True
If Not(WinVer="10" Or i=-1) Then
On Error Resume Next
oWSH.RegRead "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes\" & GUID & "\CanonicalName"
If Err.Number<>0 Then Found = False
On Error Goto 0
End If
If Found Then
i = i + 1
ArrFolderTypeGUID(i) = GUID
ArrFolderType(i) = Trim(ArrLine(1))
ArrFolderTypeLang(i) = Trim(ArrLine(2))
oFolderTypes.Add ArrLine(1),i
End If
End If
Loop
oFile.Close
Else
ArrFolderType(0) = "Global"
ArrFolderTypeLang(0) = "Global"
End If
' Set upper bound of folder types
UBFolderType = i
ReDim ArrSort1(UBFolderType), ArrSort2(UBFolderType), ArrSort3(UBFolderType), ArrSort4(UBFolderType)
ReDim ArrSort1Order(UBFolderType), ArrSort2Order(UBFolderType), ArrSort3Order(UBFolderType), ArrSort4Order(UBFolderType)
ReDim ArrColumnLists(UBFolderType), ArrGroupBy(UBFolderType), ArrViewChoice(UBFolderType), ArrIconSize(UBFolderType)
ReDim ArrHTML1(UBFolderType), ArrInheritFlag(UBFolderType), ArrIncludeFlag(UBFolderType)
' Set up inheritance based upon first string match up to first period in folder type
' For StorageProvider (OneDrive) items, match inheritance on next part of string
For i = 0 To UBFolderType
If InStr(ArrFolderType(i),".") Then
Key = Split(ArrFolderType(i),".")(0)
ArrInherit(i) = oFolderTypes.Item(Key)
Else
If InStr(ArrFolderType(i),"StorageProvider") Then
Key = Mid(ArrFolderType(i),16)
ArrInherit(i) = oFolderTypes.Item(Key)
Else
ArrInherit(i) = 0
End If
End If
Next
' For easier reference, copy data from scripting dictionary to variables
Dict2Var(OnChange)
' Get Details view column headings
ColFile = LangDir & Language & "\Columns-Win" & WinVer & ".txt"
Set oFile = oFSO.OpenTextFile(ColFile,ForReading,,Unicode)
ColData = oFile.ReadAll
oFile.Close
ArrColData = Split(ColData,Z)
ReDim ArrHTML2(UBound(ArrColData))
' Dynamically gernerate HTML page data
BuildPages
Document.title = ArrLang(1)
lang.SelectedIndex = LangIndex
Size1.SelectedIndex = SelectedSize1 - 8
Size2.SelectedIndex = SelectedSize2 - 8
ViewFile = LangDir & Language & "\ViewList.txt"
If oFSO.FileExists(ViewFile) Then
' Get View menu data from file
Set oFile = oFSO.OpenTextFile(ViewFile,ForReading,,Unicode)
ViewData = oFile.ReadAll
oFile.Close
ArrView = Split(ViewData,Z)
' Populate the two View menus on the Options page
For j = 0 To 8
Set oOption = document.createElement("Option")
oOption.Text = ArrView(j)
oOption.Value = j
If j=0 Then oOption.Disabled = True
fdv.Add(oOption)
Set oOption = document.createElement("Option")
oOption.Text = ArrView(j)
oOption.Value = j
If j=0 Then oOption.Disabled = True
tpv.Add(oOption)
Next
' Populate each folder type setting (View, IconSize, GroupBy, SortBy, and Columns to display)
For i = 0 To UBFolderType
For j = 0 To 8
Set oOption = document.createElement("Option")
oOption.Text = ArrView(j)
oOption.Value = j
If j=0 Then oOption.Disabled = True
Document.GetElementByID(i & "View").Add(oOption)
Next
If ArrViewChoice(i)<>"" Then
Document.GetElementByID(i & "View").SelectedIndex = ArrViewChoice(i)
Else
Document.GetElementByID(i & "View").SelectedIndex = 1
ArrViewChoice(i) = 1
End If
If ArrIconSize(i)="" Then
IconSizeUpdate(i)
Else
Document.GetElementByID(i & "IconSize").Value = ArrIconSize(i)
Document.GetElementByID(i & "IconSize").Disabled = ArrIconSize(i)=""
End If
If ArrGroupBy(i)="" Then
Document.GetElementByID(i & "GroupBy").InnerHTML = ArrView(9)
Else
On Error Resume Next
Document.GetElementByID(i & "GroupBy").InnerHTML = Document.GetElementByID("L~" & ArrGroupBy(i)).Value
On Error Goto 0
End If
If ArrSort1(i)="" Then ArrSort1(i) = "ItemNameDisplay"
If ArrSort1Order(i)="" Then ArrSort1Order(i)="+"
On Error Resume Next
Sort1 = ArrSort1Order(i) & Document.GetElementByID("L~" & ArrSort1(i)).Value
Sort2 = "": Sort3 = "": Sort4 = ""
If ArrSort2(i)<>"" Then Sort2 = ArrSort2Order(i) & Document.GetElementByID("L~" & ArrSort2(i)).Value
If ArrSort3(i)<>"" Then Sort3 = ArrSort3Order(i) & Document.GetElementByID("L~" & ArrSort3(i)).Value
If ArrSort4(i)<>"" Then Sort4 = ArrSort4Order(i) & Document.GetElementByID("L~" & ArrSort4(i)).Value
On Error Goto 0
SortBy = Sort1
If Sort2<>"" Then SortBy = SortBy & ", " & Sort2
If Sort3<>"" Then SortBy = SortBy & ", " & Sort3
If Sort4<>"" Then SortBy = SortBy & ", " & Sort4
Document.GetElementByID(i & "SortBy").InnerHTML = SortBy
If i>0 Then
Document.GetElementByID(i & "Inherit").Checked = ArrInheritFlag(i)
Document.GetElementByID(i & "Include").Checked = ArrIncludeFlag(i)
If ArrInheritFlag(i)="1" Then
Document.GetElementByID(i & "View").Disabled = True
Document.GetElementByID(i & "IconSize").Disabled = True
Document.GetElementByID(i & "SelCol").Disabled = True
End If
If ArrIncludeFlag(i)="0" Then
Document.GetElementByID(i & "FTtitle").ClassName = "ftl"
Document.GetElementByID(i & "FTsettings").Style.Visibility = "hidden"
End If
End If
ArrColumnList = Split(ArrColumnLists(i),";")
ColShow = ""
For j = 0 To UBound(ArrColumnList)
ArrColumnEntry = Split(ArrColumnList(j),",")
If ArrColumnEntry(0)="0" Then
If ColShow<>"" Then ColShow = ColShow & " | "
x = "X1"
If ArrColumnEntry(2)="Search.Rank" Then x = "X2"
If oSearchOnly.Exists(ArrColumnEntry(2)) Then
If so.checked Then x = "X4" Else x = "X3"
End If
On Error Resume Next
ColShow = ColShow & "<span class=" & x & ">" & Document.GetElementByID("L~" & ArrColumnEntry(2)).Value & "</span>"
On Error Goto 0
End If
Next
Document.GetElementByID(i & "ColShow").InnerHTML = ColShow
Next
End If
' Get list of fonts from file
If Not oFSO.FileExists(FontsFile) Then
ArrFonts = Array(SelectedFont1,SelectedFont2)
Else
Set oFile = oFSO.OpenTextFile(FontsFile,ForReading,,Ansi)
Fonts = oFile.ReadAll
oFile.Close
ArrFonts = Split(Fonts,Z)
End If
' Populate font menu
For i = 0 To UBound(ArrFonts)
Set oOption1 = document.createElement("Option")
Set oOption2 = document.createElement("Option")
If ArrFonts(i)<>"" Then
oOption1.Text = ArrFonts(i)
oOption2.Text = ArrFonts(i)
oOption1.Value = ArrFonts(i)
oOption2.Value = ArrFonts(i)
Font1.Add(oOption1)
Font2.Add(oOption2)
If SelectedFont1=ArrFonts(i) Then Font1.SelectedIndex = i
If SelectedFont2=ArrFonts(i) Then Font2.SelectedIndex = i
End If
Next
' Copy remaining settings from scripting dictionary to the HTML pages
Dict2Dom
' Update page elements to selectd font and size
UpdateFont1
' Hide or unhide controls based on Reset checkbox
OptionReset
' Hide Restore button if no backup files
If Not rbshow Then rb.disabled = True
End Sub
' Get preferred font for the selected language and Windows version
Sub GetFontFromFile
FontFile = ""
F1 = LangDir & Language & "\Font-Win" & WinVer & ".txt"
F2 = LangDir & Language & "\Font.txt"
If oFSO.FileExists(F1) Then
FontFile = F1
Else
If oFSO.FileExists(F2) Then FontFile = F2
End If
If FontFile<>"" Then
Set oFile = oFSO.OpenTextFile(FontFile,ForReading,,Ansi)
SelectedFont1 = oFile.ReadLine
oFile.Close
End If
End Sub
' Populate variables from settings dictionary object
Sub Dict2Var(OnChange)
If OnChange Then
GetFontFromFile
Else
SelectedFont1 = "Segoe UI": SelectedSize1 = "11": SelectedFont2 = "Consolas": SelectedSize2 = "10"
GetFontFromFile
If oSettings.Exists("[Options]Font1") Then SelectedFont1 = oSettings.Item("[Options]Font1")
If oSettings.Exists("[Options]Font2") Then SelectedFont2 = oSettings.Item("[Options]Font2")
If oSettings.Exists("[Options]Size1") Then SelectedSize1 = oSettings.Item("[Options]Size1")
If oSettings.Exists("[Options]Size2") Then SelectedSize2 = oSettings.Item("[Options]Size2")
End If
For i = 0 To UBFolderType
ArrViewChoice(i) = oSettings.Item("[" & ArrFolderType(i) & "]View")
ArrIconSize(i) = oSettings.Item("[" & ArrFolderType(i) & "]IconSize")
ArrColumnLists(i) = oSettings.Item("[" & ArrFolderType(i) & "]ColumnList")
ArrGroupBy(i) = oSettings.Item("[" & ArrFolderType(i) & "]GroupBy")
ArrInheritFlag(i) = oSettings.Item("[" & ArrFolderType(i) & "]Inherit")
ArrIncludeFlag(i) = oSettings.Item("[" & ArrFolderType(i) & "]Include")
If ArrColumnLists(i)="" Then ArrColumnLists(i) = "0,34,ItemNameDisplay"
If ArrInheritFlag(i)="" Then ArrInheritFlag(i) = "1"
If ArrIncludeFlag(i)="" Then
If ArrFolderType(i)="FileItemAPIs" Then
ArrIncludeFlag(i) = "0"
Else
ArrIncludeFlag(i) = "1"
End If
End If
ArrSort1Order(i) = "+": ArrSort1(i) = "ItemNameDisplay"
ArrSort2Order(i) = "+": ArrSort2(i) = ""
ArrSort3Order(i) = "+": ArrSort3(i) = ""
ArrSort4Order(i) = "+": ArrSort4(i) = ""
SortBy = oSettings.Item("[" & ArrFolderType(i) & "]SortBy")
ArrSortBy = Split(SortBy,";")
ReDim Preserve ArrSortBy(3)
ArrSort1Order(i) = Left(ArrSortBy(0),1): ArrSort1(i) = Mid(ArrSortBy(0),2)
ArrSort2Order(i) = Left(ArrSortBy(1),1): ArrSort2(i) = Mid(ArrSortBy(1),2)
ArrSort3Order(i) = Left(ArrSortBy(2),1): ArrSort3(i) = Mid(ArrSortBy(2),2)
ArrSort4Order(i) = Left(ArrSortBy(3),1): ArrSort4(i) = Mid(ArrSortBy(3),2)
If ArrSort1Order(i)<>"+" And ArrSort1Order(i)<>"-" Then ArrSort1(i) = ArrSort1Order(i) & ArrSort1(i): ArrSort1Order(i) = "+"
If ArrSort2Order(i)<>"+" And ArrSort2Order(i)<>"-" Then ArrSort2(i) = ArrSort2Order(i) & ArrSort2(i): ArrSort2Order(i) = "+"
If ArrSort3Order(i)<>"+" And ArrSort3Order(i)<>"-" Then ArrSort3(i) = ArrSort3Order(i) & ArrSort3(i): ArrSort3Order(i) = "+"
If ArrSort4Order(i)<>"+" And ArrSort4Order(i)<>"-" Then ArrSort4(i) = ArrSort4Order(i) & ArrSort4(i): ArrSort4Order(i) = "+"
Next
End Sub
' Populate HTML pages directly from scripting dictionary fro some settings
Sub Dict2Dom
wd.checked = oSettings.Item("[Options]Reset")
x = oSettings.Item("[Options]ShowExt")
If x="" Then se.checked = 1 Else se.checked = x
x = oSettings.Item("[Options]CompView")
If x="" Then cv.checked = 1 Else cv.checked = x
gn.checked = oSettings.Item("[Options]Generic")
x = oSettings.Item("[Options]SearchOnly")
If x="" Then so.checked = 1 Else so.checked = x
x = oSettings.Item("[Options]SetVirtualFolders")
If x="" Then vf.checked = 1 Else vf.checked = x
ka.checked = oSettings.Item("[Options]KeepViews")
fd.checked = oSettings.Item("[Options]FileDialogOption")
tp.checked = oSettings.Item("[Options]ThisPCoption")
x = oSettings.Item("[Options]FileDialogNG")
If x="" Then fdg.checked = 1 Else fdg.checked = x
x = oSettings.Item("[Options]ThisPCNG")
If x="" Then tpg.checked = 1 Else tpg.checked = x
x = oSettings.Item("[Options]FileDialogView")
If x="" Then fdv.SelectedIndex = 1 Else fdv.SelectedIndex = x
x = oSettings.Item("[Options]ThisPCView")
If x="" Then tpv.SelectedIndex = 1 Else tpv.SelectedIndex = x
x = oSettings.Item("[Options]Scroll")
If x="" Then xs.SelectedIndex = 1 Else xs.SelectedIndex = x: xschange
End Sub
' Load Settings button
Sub LoadSettings
oWSH.Run "TaskKill /im FileDialog.exe /f",0,True
If Not oFSO.FileExists(FileDialogExe) Then
MsgBox "File missing: " & FileDialogExe,vbCritical,"Error"
Else
oWSH.Run FileDialogExe & " Open ""*.ini|*.ini"" ..\AppData",0,False
Window.SetTimeOut "GetINIFile", 500
End If
End Sub
' Save Settings button
Sub SaveSettings
oWSH.Run "TaskKill /im FileDialog.exe /f",0,True
If Not oFSO.FileExists(FileDialogExe) Then
MsgBox "File missing: " & FileDialogExe,vbCritical,"Error"
Else
oWSH.Run FileDialogExe & " Save ""*.ini|*.ini"" ..\AppData",0,False
Window.SetTimeOut "SaveINIFile", 500
End If
End Sub
' Restore button
Sub Restore
oWSH.Run "TaskKill /im FileDialog.exe /f",0,True
If Not oFSO.FileExists(FileDialogExe) Then
MsgBox "File missing: " & FileDialogExe,vbCritical,"Error"
Else
oWSH.Run FileDialogExe & " Open ""*.reg|*.reg"" ..\AppData\Backup",0,False
Window.SetTimeOut "GetRegFile", 500
End If
End Sub
' Wait for Open INI filename to be selected in FileDialog.exe
Sub GetINIFile
On Error Resume Next
File = oWSH.RegRead("HKCU\Software\FileDialog\")
On Error Goto 0
If File="?" Then
Window.SetTimeOut "GetINIFile", 500
Else
If File<>"" Then
Ini2Dict File
If oSettings.Exists("[Options]Language") Then
SetLang
UpdateLang(False)
End If
End If
End If
End Sub
' Wait for Save INI filename to be entered/selected in FileDialog.exe
Sub SaveINIFile
On Error Resume Next
File = oWSH.RegRead("HKCU\Software\FileDialog\")
On Error Goto 0
If File="?" Then
Window.SetTimeOut "SaveINIFile", 500
Else
If File<>"" Then Var2Ini(File)
End If
End Sub
' Wait for Open REG filename to be selected in FileDialog.exe
Sub GetRegFile
On Error Resume Next
File = oWSH.RegRead("HKCU\Software\FileDialog\")
On Error Goto 0
If File="?" Then
Window.SetTimeOut "GetRegFile", 500
Else
If File<>"" Then RunScript File
End If
End Sub
' Write vars to INI file
Sub Var2Ini(INIFile)
Set oFile = oFSO.OpenTextFile(INIFile,ForWriting,True,Ansi)
oFile.Write "[Options]" & Z
oFile.Write "Language=" & Language & Z
oFile.Write "Font1=" & Font1.Options(Font1.SelectedIndex).Value & Z
oFile.Write "Font2=" & Font2.Options(Font2.SelectedIndex).Value & Z
oFile.Write "Size1=" & Size1.Options(Size1.SelectedIndex).Value & Z
oFile.Write "Size2=" & Size2.Options(Size2.SelectedIndex).Value & Z
oFile.Write "Scroll=" & xs.SelectedIndex & Z
oFile.Write "Reset=" & Abs(Int(wd.checked)) & Z
oFile.Write "ShowExt=" & Abs(Int(se.checked)) & Z
oFile.Write "CompView=" & Abs(Int(cv.checked)) & Z
oFile.Write "Generic=" & Abs(Int(gn.checked)) & Z
oFile.Write "SearchOnly=" & Abs(Int(so.checked)) & Z
oFile.Write "SetVirtualFolders=" & Abs(Int(vf.checked)) & Z
oFile.Write "KeepViews=" & Abs(Int(ka.checked)) & Z
oFile.Write "FileDialogOption=" & Abs(Int(fd.checked)) & Z
oFile.Write "FileDialogView=" & fdv.SelectedIndex & Z
oFile.Write "FileDialogNG=" & Abs(Int(fdg.checked)) & Z
oFile.Write "ThisPCoption=" & Abs(Int(tp.checked)) & Z
oFile.Write "ThisPCView=" & tpv.SelectedIndex & Z
oFile.Write "ThisPCNG=" & Abs(Int(tpg.checked)) & Z
For i = 0 To UBFolderType
oFile.Write "[" & ArrFolderType(i) & "]" & Z
If i>0 Then
oFile.Write "GUID=" & ArrFolderTypeGUID(i) & Z
oFile.Write "Include=" & ArrIncludeFlag(i) & Z
oFile.Write "Inherit=" & ArrInheritFlag(i) & Z
End If
If ArrIncludeFlag(i)<>"0" Then
oFile.Write "View=" & Document.GetElementByID(i & "View").SelectedIndex & Z
oFile.Write "IconSize=" & Document.GetElementByID(i & "IconSize").Value & Z
oFile.Write "ColumnList=" & ArrColumnLists(i) & Z
oFile.Write "GroupBy=" & ArrGroupBy(i) & Z
SortBy = ArrSort1Order(i) & ArrSort1(i)
If ArrSort2(i)<>"" Then SortBy = SortBy & ";" & ArrSort2Order(i) & ArrSort2(i)
If ArrSort3(i)<>"" Then SortBy = SortBy & ";" & ArrSort3Order(i) & ArrSort3(i)
If ArrSort4(i)<>"" Then SortBy = SortBy & ";" & ArrSort4Order(i) & ArrSort4(i)
oFile.Write "SortBy=" & SortBy & Z
End If
Next
oFile.Close
End Sub
' Script for displaying synchronized views of registry before/after views
Sub Inspection(i)
Key = "\Software\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes\"
oWSH.Run "Reg Export " & "HKLM" & Key & ArrFolderTypeGUID(i) & " " & Q & TempFile & Q & " /y",0,True
Set oFile = oFSO.OpenTextFile(TempFile,ForReading,,Unicode)
Data = oFile.ReadAll
oFile.Close
Txt1.Value = Data
oFSO.DeleteFile TempFile
oWSH.Run "Reg Export " & "HKCU" & Key & ArrFolderTypeGUID(i) & " " & Q & TempFile & Q & " /y",0,True
If oFSO.FileExists(TempFile) Then
Set oFile = oFSO.OpenTextFile(TempFile,ForReading,,Unicode)
Data = oFile.ReadAll
oFile.Close
Txt2.Value = Data
End If
YScrollPos = Document.documentElement.ScrollTop
Pg1.style.display = "none"
Pg2.style.display = "none"
UpdateFont2
UpdateSize2
document.documentElement.style.overflow = "hidden"
HeadHeight = P3hd.ScrollHeight + 50
AvailHeight = document.documentElement.clientHeight - HeadHeight
y = Int(AvailHeight / 2)
Txt1.Style.Height = y
Txt2.Style.Height = y
Window.ScrollTo 0, 0
End Sub
' Display Options page
Sub Options
YScrollPos = Document.documentElement.ScrollTop
Pg1.style.display = "none"
Pg4.style.display = "inline"
OptionFileDialogs
OptionThisPC
End Sub
' Save settings and run WinSetView.ps1
Sub Submit
Var2Ini(INIFile)
RunScript INIFile
End Sub
' Run WinSetView.ps1 with supplied parameter (INI or REG filename)
Sub RunScript(Param)
If window.event.altKey Then x = "-NoExit" Else x = ""
CmdLine = "Powershell.exe " & x & " -ExecutionPolicy Bypass .\WinSetView.ps1 " & Param
oWSH.Run CmdLine,1,False
Window.Close
End Sub
' Set values for column selection page
Sub SelectColumns(i)
FTindex = i
'Reset everything
For i = 0 To UBound(ArrColData)
If ArrColData(i)<>"" Then
ArrColDataItem = Split(ArrColData(i),";")
C1 = ArrColDataItem(1): C2 = ArrColDataItem(0)
Pidx = "P~" & C1: Widx = "W~" & C1: Nidx = "N~" & C1: Gidx = "G~" & C1: S1idx = "S1~" & C1: S2idx = "S2~" & C1: S3idx = "S3~" & C1: S4idx = "S4~" & C1: Midx = "M~" & C1
Document.GetElementByID(Nidx).Value = ""
Document.GetElementByID(Widx).Value = ""
Document.GetElementByID(Gidx).Style.Zoom = Scale
Document.GetElementByID(S1idx).Style.Zoom = Scale
Document.GetElementByID(S2idx).Style.Zoom = Scale
Document.GetElementByID(S3idx).Style.Zoom = Scale
Document.GetElementByID(S4idx).Style.Zoom = Scale
Document.GetElementByID(Pidx).Style.Zoom = Scale
Document.GetElementByID(Midx).Style.Zoom = Scale
If C1="ItemNameDisplay" Then
Document.GetElementByID(Pidx).Checked = True
Document.GetElementByID(Midx).Checked = True
Document.GetElementByID(Pidx).Disabled = True
Document.GetElementByID(Midx).Disabled = True
Else
Document.GetElementByID(Pidx).Checked = False
Document.GetElementByID(Midx).Checked = False
End If
If ArrGroupBy(FTindex)="" Then
GroupBy(i).style.visibility = "hidden"
Document.GetElementByID(Gidx).Checked = False
Else
GroupBy(i).style.visibility = "visible"
If ArrGroupBy(FTindex)=C1 Then Document.GetElementByID(Gidx).Checked = True
End If
If ArrSort1(FTindex)=C1 Then Document.GetElementByID(S1idx).Checked = True
If ArrSort2(FTindex)="" Then
RBS2(i).style.visibility = "hidden"
Document.GetElementByID(S2idx).Checked = False
Else
RBS2(i).style.visibility = "visible"
If ArrSort2(FTindex)=C1 Then Document.GetElementByID(S2idx).Checked = True
End If
If ArrSort3(FTindex)="" Then
RBS3(i).style.visibility = "hidden"
Document.GetElementByID(S3idx).Checked = False
Else
RBS3(i).style.visibility = "visible"
If ArrSort3(FTindex)=C1 Then Document.GetElementByID(S3idx).Checked = True
End If
If ArrSort4(FTindex)="" Then
RBS4(i).style.visibility = "hidden"
Document.GetElementByID(S4idx).Checked = False
Else
RBS4(i).style.visibility = "visible"
If ArrSort4(FTindex)=C1 Then Document.GetElementByID(S4idx).Checked = True
End If
End If
Next
If ArrGroupBy(FTindex)="" Then cbg.Value = "X" Else cbg.Value = "{ }"
If ArrSort1Order(FTindex)="+" Then cbs1.Value = UpArrow Else cbs1.Value = DnArrow
If ArrSort2Order(FTindex)="+" Then cbs2.Value = UpArrow Else cbs2.Value = DnArrow
If ArrSort3Order(FTindex)="+" Then cbs3.Value = UpArrow Else cbs3.Value = DnArrow
If ArrSort4Order(FTindex)="+" Then cbs4.Value = UpArrow Else cbs4.Value = DnArrow
If ArrSort2(FTindex)="" Then cbs2.Value = "X"
If ArrSort3(FTindex)="" Then cbs3.Value = "X"
If ArrSort4(FTindex)="" Then cbs4.Value = "X"
ArrColumnList = Split(ArrColumnLists(FTindex),";")
Order = 0
For i = 0 To UBound(ArrColumnList)
ArrColumnEntry = Split(ArrColumnList(i),",")
C1 = ArrColumnEntry(2)
Pidx = "P~" & C1: Widx = "W~" & C1: Nidx = "N~" & C1: Midx = "M~" & C1:
Show = ArrColumnEntry(0)
On Error Resume Next
Document.GetElementByID(Pidx).Checked = True
If Show="0" Then
Document.GetElementByID(Nidx).Value = Order
Document.GetElementByID(Midx).Checked = True
End If
Document.GetElementByID(Widx).Value = ArrColumnEntry(1)
On Error Goto 0
Order = Order + 1
Next
CheckCount = i
cs.InnerHTML = Document.GetElementByID(FTindex & "ColShow").InnerHTML
P2tt.InnerHTML = ArrFolderTypeLang(FTindex)
tab2.Style.LineHeight = Int(Scale * 10) & "pt"
YScrollPos = Document.documentElement.ScrollTop
Pg1.style.display = "none"
Pg2.style.display = "inline"
Pg3.style.display = "none"
tcin.Style.MarginTop = fix2.ScrollHeight - 15
Window.ScrollTo 0, 0
End Sub
' Generate column heading list based with click order data included
Sub GenColShow
j = -1
For i = 0 To UBound(ArrColData)
If ArrColData(i)<>"" Then
ArrColDataItem = Split(ArrColData(i),";")
C1 = ArrColDataItem(1): C2 = ArrColDataItem(0)
Pidx = "P~" & C1: Widx = "W~" & C1: Nidx = "N~" & C1
Show = "": sOrder = ""
sOrder = Document.GetElementByID(Nidx).Value
If sOrder<>"" Then
Show = "0"
Else
If Document.GetElementByID(Pidx).Checked Then Show = "1"
End If
If Show<>"" Then
ColWid = Document.GetElementByID(Widx).Value
j = j + 1
ArrData(j) = Show & ";" & Right("000" & sOrder, 3) & ";" & ColWid & ";" & ArrColData(i)
End If
End If
Next
LastColSel = j
' Sort list
x = LastColSel - 1
For i = x To 0 Step -1
For j= 0 To i
If ArrData(j)>ArrData(j+1) Then
y = ArrData(j+1)
ArrData(j+1) = ArrData(j)
ArrData(j) = y
End If
Next
Next
' Create list to be displayed
Data = ""
ColShow = ""
For i = 0 To LastColSel
ArrColumnEntry = Split(ArrData(i),";")
If Data<>"" Then Data = Data & ";"
Data = Data & ArrColumnEntry(0) & "," & ArrColumnEntry(2) & "," & ArrColumnEntry(4)
If ArrColumnEntry(0)="0" Then
If ColShow<>"" Then ColShow = ColShow & " | "
x = "X1"
If ArrColumnEntry(4)="Search.Rank" Then x = "X2"
If oSearchOnly.Exists(ArrColumnEntry(4)) Then
If so.checked Then x = "X4" Else x = "X3"
End If
ColShow = ColShow & "<span class=" & x & ">" & ArrColumnEntry(3) & "</span>"
End If
Next
' Display column heading list
cs.InnerHTML = ColShow
End Sub
' Return values from column selection page
Sub P2Exit
GenColShow
ArrColumnLists(FTindex) = Data
Document.GetElementByID(FTindex & "ColShow").InnerHTML = ColShow
If cbg.Value="X" Then ArrGroupBy(FTindex)=""
If ArrGroupBy(FTindex)="" Then
Document.GetElementByID(FTindex & "GroupBy").InnerHTML = ArrView(9)
Else
On Error Resume Next
Document.GetElementByID(FTindex & "GroupBy").InnerHTML = Document.GetElementByID("L~" & ArrGroupBy(FTindex)).Value
On Error Goto 0