-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_LightSyncHelper.ps1
1162 lines (1032 loc) · 79.2 KB
/
_LightSyncHelper.ps1
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
$ScriptRoot = $PSScriptRoot
if (!$ScriptRoot) {
$ScriptRoot = Get-Location
}
. "$ScriptRoot/../../src/useful/ps-winhelpers/_PS-WinHelpers.ps1"
. "$ScriptRoot/experiments/Experiments.ps1"
###
### High Level Functions
###
function Register-LightSyncScheduledTask {
param(
[string]$ScriptPath
)
if (!($ScriptPath)) {
Throw 'This function must be run from a file, not from the console.'
}
$TaskName = "LightSync.sh - $env:USERNAME"
Register-PowerShellScheduledTask `
-ScriptPath $ScriptPath `
-TaskName $TaskName `
-TimeInterval 15
}
function Install-Dependencies {
Install-ModuleIfNotPresent 'PowerShell-YAML'
Install-ModuleIfNotPresent 'PSMenu'
}
function Invoke-PackagesWizard {
$packages = Get-ChildItem "$PSScriptRoot/packages/*.yaml"
$packages = $packages | Where-Object { $_.Name -ne 'template.yaml' } # Exclude template.yaml
$InitialSelection = Get-LightSyncPackageNames
if (!$InitialSelection) {
# Select all packages by default
$InitialSelection = @(0..$packages.Length)
}
else {
# Compare $packages with $InitialSelection and create an array of the common indexes
# ie load the previously selected packages in the UI
$InitialSelection = $packages | Where-Object { $InitialSelection -contains $_.Name } | ForEach-Object { $packages.IndexOf($_) }
}
$Selection = Show-Menu -MenuItems $packages -MultiSelect -InitialSelection $InitialSelection -MenuItemFormatter { $args | Select-Object -ExpandProperty Name }
# Save new config in registry
Set-LightSyncPackageNames -PackageNames $Selection.Name
$LSDriveObj = Get-LighSyncDrivePath
$defaultValue = $LSDriveObj.DrivePath
$ValueType = $LSDriveObj.Status
$prompt = Read-Host "Select LightSync drive and path (${ValueType}: $($defaultValue))"
$prompt = ($defaultValue, $prompt)[[bool]$prompt]
Set-LightSyncDrivePath -DrivePath $prompt # TODO??
}
function Get-LighSyncDrivePath {
<#
.SYNOPSIS
Get the LightSync virtual drive path from the registry
#>
$RegPath = "$LSDREG\Drive"
$DrivePath = Get-RegValue -FullPath $RegPath -ErrorAction 'SilentlyContinue'
$Status = 'current'
if (!$DrivePath) {
$DrivePath = 'N:\Tools'
$Status = 'default'
}
return @{
DrivePath = $DrivePath
Status = $Status
}
}
function Set-LightSyncDrivePath {
<#
.SYNOPSIS
Set the LightSync virtual drive path in the registry
#>
param(
[string]$DrivePath
)
$RegPath = "$LSDREG\Drive"
Set-RegValue -FullPath $RegPath -Value $DrivePath -Type String -Force
}
function Get-LightSyncPackageNames {
$RegPath = "$LSDREG\Packages"
$Selection = Get-RegValue -FullPath $RegPath -ErrorAction SilentlyContinue
return $Selection
}
function Set-LightSyncPackageNames {
<#
.SYNOPSIS
Set the list of packages that the user has selected for syncing on this computer.
#>
param(
[string[]]$PackageNames
)
$RegPath = "$LSDREG\Packages"
Set-RegValue -FullPath $RegPath -Value $PackageNames -Type MultiString -Force
}
function Install-LightSyncDrive {
<#
.SYNOPSIS
Deploy the script that will mount the Virtal Drive at startup
Why is a virtual drive needed?
The dropbox sync folder path can vary on different computer. Sometimes it's on the D: drive, sometimes is My Documents.
Some portable apps get upset by this, especially those in .paf format.
#>
$SubstFile = "$STARTUP\subst-lightsync.bat"
# Get the drive letter of a path:
$LightSyncDrive = (Get-LighSyncDrivePath).DrivePath -replace '^(.*:).*', '$1'
$DropboxPath = Get-DropboxInstallPath
$formatText = @"
subst $LightSyncDrive $DropboxPath
timeout 2
"@
Set-Content $SubstFile -Value $formatText
if (!((Test-Path 'M:') -and (Test-Path 'N:'))) {
&$SubstFile
}
}
function Convert-ObjectToString {
<#
.SYNOPSIS
Convert an object to an array of strings that can be displayed in the console or logs.
Supports optional padding on the left.
Supports some basic hastable expansion.
.PARAMETER InputObject
The object to convert to a string using the Out-String cmdlet.
.PARAMETER PadCount
The number of characters to pad form left
.Parameter PadChar
The character to use for padding
#>
param(
[Parameter(ValueFromPipeline, Mandatory)][object]$InputObject,
[Parameter(Mandatory = $false)][int]$PadCount = 0,
[Parameter(Mandatory = $false)][char]$PadChar = ' '
)
begin {
# initialize empty generic list
$all = [System.Collections.Generic.List[Object]]::new()
}
process {
# [string]$PSCmdlet.MyInvocation.ExpectingInput can be used to detect if input is coming from pipe or parameter
if (!$InputObject) {
continue
}
$all += $InputObject
}
end {
if ($all[0] -is [hashtable]) {
Write-DebugLog '[hashtable] detected'
$all = $all | ForEach-Object { [PSCustomObject]$_ }
}
if ($all.Count -gt 0) {
$all = $all | Format-Table
}
[string[]]$Result = (Out-String -InputObject $all) -split '\r?\n'
for ($start = 0; [string]::IsNullOrEmpty($Result[$start]) ; $start++) {
# Trace forward until the first non-empty string
}
for ($end = $Result.Count - 1; [string]::IsNullOrEmpty($Result[$end]) ; $end--) {
# Trace back to the last non-empty string
}
# Discard empty strings
$Result = $Result[$start..$end]
$Result = $Result | ForEach-Object { [string]$PadChar * $PadCount + $_ }
return $Result
}
}
function TemplateStr {
<#
.SYNOPSIS
Replace placeholders in a string with values
{PkgNane} = Name of package, ie the .yaml file without the extension
{PkgPath} = {DbxRoot}\{PkgName}, eg. N:\Tools\7-zip
{DbxRoot} = LightSyncDrive root path, eg. N:\Tools
#>
param(
# Nullable
[Parameter(Mandatory = $true)][AllowEmptyString()][string]$InputString,
[Parameter(Mandatory = $true)][string]$PackageName,
[switch]$ExpandString
)
$NewString = $InputString `
-replace '{PkgName}', $PackageName `
-replace '{PkgPath}', "$LIGHTSYNCROOT\$PackageName" `
-replace '{DbxRoot}', "$LIGHTSYNCROOT" `
-replace '{LSRoot}', "$LIGHTSYNCROOT" `
-replace '{LightSyncRoot}', "$LIGHTSYNCROOT" `
-replace '/', '\'
if ($ExpandString) {
$NewString = $ExecutionContext.InvokeCommand.ExpandString($NewString)
}
return $NewString
}
function Update-Shortcuts {
param(
[Parameter(Mandatory = $true)][string]$PackageName,
[Parameter(Mandatory = $true)][string]$PackagePath,
[Parameter(Mandatory = $true)][System.Collections.Generic.List`1[System.Object]]$Tasks
)
foreach ($task in $Tasks) {
$ParentPath = switch ($task.Parent) {
# Wshshell SpecialFolders
'Programs-DBX' { [environment]::getfolderpath('Programs') + "\$START_MENU_FOLDER"; break }
'Startup' { [environment]::getfolderpath('Startup'); break }
default { [environment]::getfolderpath('Programs') + "\$START_MENU_FOLDER"; break }
}
$LinkPath = "${ParentPath}\$(TemplateStr -PackageName $PackageName -InputString $task.Name ) $APP_SHORTCUT_SUFFIX.lnk"
$StartIn = switch ($task.StartIn) {
$null { Split-Path -Path (TemplateStr -PackageName $PackageName -InputString $task.Target) } # Start in the Target Exe's folder by default
default { TemplateStr -PackageName $PackageName -InputString $task.StartIn }
}
$Target = TemplateStr -PackageName $PackageName -InputString $task.Target
$IconPath = switch -regex ($task.Icon) {
'^$' {
if (Test-Path $target -ErrorAction SilentlyContinue) {
if (!(Get-Item $target).PSIsContainer) {
# Use the target exe's icon by default, if it's not a folder
"$Target,0"
}
}
}
',\d+$' {
# Icon path already contains the index
TemplateStr -InputString $_ -PackageName $PackageName
}
default {
# Append trailing `,0` if only an icon or binary was specified
"$(TemplateStr -InputString $_ -PackageName $PackageName ),0"
}
}
$iconFilePath, $iconIndex = $IconPath -split ','
if ([System.IO.Path]::IsPathRooted($iconFilePath)) {
$iconFilePath = Get-RealPath -Path $iconFilePath
}
if ($iconIndex) {
$iconIndex = ",$iconIndex"
}
$IconPath = "${iconFilePath}${iconIndex}"
$Params = @()
foreach ($p in $task.params) {
if ($p -match '{LSRoot}|{PkgName}|{PkgPath}') {
$Params += TemplateStr -PackageName $PackageName -InputString $p
}
else {
$Params += $p
}
}
$WindowStyle = switch ($task.WindowStyle) {
$null { 'Default' }
default { $_ }
}
$KnownTasks = @(
'name',
'target',
'startin',
'params',
'icon',
'assoc',
'assocIcon',
'assocparam',
'tindex',
'_PkgPath',
'_PkgName',
'friendlyAppName',
'parent'
)
$Unrecognized = $task.keys | Where-Object { $_ -notin $KnownTasks }
if ($Unrecognized) {
Write-Warning "Unrecognized keys in task $($task.Name): $Unrecognized"
}
Write-DebugLog "LinkPath: $LinkPath, Target: $Target, Params: $Params, StartIn: $StartIn, IconPath: $IconPath, WindowStyle: $WindowStyle"
try {
$result = New-Shortcut `
-LnkPath $LinkPath `
-TargetExe $Target `
-Arguments $Params `
-WorkingDir $StartIn `
-IconPath $IconPath `
-WindowStyle $WindowStyle
if ($result) {
Write-DebugLog "Created shortcut $LinkPath" -LogLevel Info
}
}
catch {
Write-Error "Failed to create shortcut ${LinkPath}: $_"
}
}
}
function Get-LightSyncPackageData {
<#
Get the package config from Get-LightSyncPackageNames, and load those yaml files into a hashtable with Get-Conent and ConvertFrom-Yaml.
Alternatively, a custom package file can be specified using $PackageFile
.PARAMETER Transpose
Transpose the data into a [PSCustomObject] that works better with Format-Table and Out-GridView
#>
param(
[string]$PackageFile,
[switch]${ConvertTo-Text},
[switch]$Transpose,
[switch]$YamlDump
)
if ($PackageFile) {
$PackageFiles = $PackageFile
$PackageNames = Split-Path $PackageFile -Leaf
}
else {
$PackageRoot = "${LIGHTSYNCROOT}\_Packages\packages"
$PackageNames = Get-LightSyncPackageNames
$PackageFiles = $PackageNames -replace '^', "$PackageRoot\"
}
Write-DebugLog "Retrieved package names: $($PackageNames -join ', ')"
$AllPackagesObj = @()
$_Index = 0
$tindex = 0
foreach ($PackageFile in $PackageFiles) {
# Get filename without path and extension
$PackageName = (Split-Path -Leaf $PackageFile) -replace '\.[^.]*$'
# Create $PackageObj new hashtable
$PackageObj = @()
try {
$PackageObj = Get-Content $PackageFile -ErrorAction Stop | ConvertFrom-Yaml
}
catch {
Continue
}
# | ConvertFrom-Yaml
foreach ($TaskType in $PackageObj.Keys) {
$TaskData = $PackageObj[$TaskType]
if ($TaskData -isnot [System.Collections.Generic.List`1[System.Object]]) {
continue
}
foreach ($Action in $TaskData) {
if ($Action -isnot [System.Collections.Hashtable]) {
continue
}
# Adding metadata to the task objects
$Action.Add('_PkgName', $PackageName)
$Action.Add('_PkgPath' , "${LIGHTSYNCROOT}\$PackageName" )
$Action.Add('tindex' , $tindex)
$tindex++
}
}
$PackageObj.Add('_PkgName', $PackageName)
$PackageObj.Add('_PkgPath' , "${LIGHTSYNCROOT}\$PackageName" )
$PackageObj.Add('_Index', $_Index)
$_Index++
$AllPackagesObj += $PackageObj
}
if ($Transpose) {
return $AllPackagesObj | ForEach-Object { [PSCustomObject]$_ }
}
if (${ConvertTo-Text}) {
$Keys = $AllPackagesObj.Keys | Sort-Object | Get-Unique
$OrderedKeys = @('_Index', '_PkgName', '_PkgPath')
$OrderedKeys += @{Name = 'Shortcuts'; Expression = { $_.Shortcuts.name -join "`n" } }
$OrderedKeys += @{Name = 'Assoc'; Expression = { $_.Shortcuts.assoc } }
$OrderedKeys += @{Name = 'Paths'; Expression = { $_.paths -join "`n" } }
$OrderedKeys += @{Name = 'Exec'; Expression = { $_.exec -join "`n" } }
$OrderedKeys += @{Name = 'Reg'; Expression = { $_.reg.key -join "`n" } }
#$OrderedKeys += @{Name = 'Files'; Expression = { $_.reg.key -join "`n" } }
$OrderedKeysList = $OrderedKeys.Clone() | ForEach-Object { if ($_.Name) { $_.Name } else { $_ } }
$RemainingKeys = (Compare-Object -ReferenceObject $Keys -DifferenceObject $OrderedKeysList | Where-Object SideIndicator -EQ '<=' | Select-Object -ExpandProperty InputObject)
$OrderedKeys += $RemainingKeys
return $AllPackagesObj | ForEach-Object { [PSCustomObject]$_ } | Select-Object -Property $OrderedKeys
}
if ($YamlDump) {
$filename = "${env:TEMP}\LightSyncPackages-$(Get-Date -Format 'yyyyMMdd-HHmmss').yaml"
$AllPackagesObj | ConvertTo-Yaml | Out-File $filename
yq 'sort_keys(..)' -i $filename
Write-DebugLog "Opening $filename" -LogLevel Verbose
Start-Process $filename -Wait
return
}
return , $AllPackagesObj
}
function Update-FileAssocs {
<#
Function for processing `package.shortcuts.assoc` (not `package.assoc`)
Iterates through the PSObject List to register the file associations.
Data is expected in the following format:
_PkgName assoc target name assocParam assocIcon
------- ----- ------ ---- ---------- ---------
7-zip zip {_PkgPath}/7zFM.exe {_PkgName} {_PkgPath}/7z.dll,1
FSViewer jpg {_PkgPath}/{_PkgName}.exe {_PkgName}
FSViewer jpeg {_PkgPath}/{_PkgName}.exe {_PkgName}
LibreOfficePortable-7.4.2 xls {_PkgPath}/LibreOfficeCalcPortable.exe {_PkgName} Calc -o "%1"
Notepad++ txt {_PkgPath}/notepad++.exe {_PkgName} {"%1"}
#>
param(
[PsObject]$FileAssocs
)
foreach ($a in $FileAssocs) {
$Target = TemplateStr -InputString $a.Target -PackageName $a._PkgName
$assocIcon = TemplateStr -InputString $a.AssocIcon -PackageName $a._PkgName
$FriendlyAppName = TemplateStr -InputString $a.FriendlyAppName -PackageName $a._PkgName
Write-DebugLog "Creating assoc for $($a.assoc) -> ``$Target`` : ``$($a.AssocParam)``"
try {
$result = New-FileAssoc -Extension $a.assoc -ExePath $Target -Params $a.AssocParam -IconPath $assocIcon -FriendlyAppName $FriendlyAppName
if ($result) {
Write-DebugLog "Updated assoc for $($a.assoc) -> ``$Target`` : ``$($a.AssocParam)``" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to update Assoc: $_" -LogLevel Error
}
}
}
function Update-FileAssocsExt {
<#
Function for processing `package.assoc` (not `package.shortcuts.assoc`)
Iterates through the PSObject List to do the file associations.
Data is expected in the following format:
_PkgName assoc target assocParam assocIcon description force verb verblabel
------- ----- ------ ---------- --------- ----------- ----- ------- -----
7-zip zip {_PkgPath}/7zFM.exe {_PkgPath}/7z.dll,1 Zip archive true enqueue Enqueue in Winamp
FSViewer jpg {_PkgPath}/{_PkgName}.exe
FSViewer jpeg {_PkgPath}/{_PkgName}.exe
LibreOfficePortable-7.4.2 xls {_PkgPath}/LibreOfficeCalcPortable.exe -o "%1"
Notepad++ txt {_PkgPath}/notepad++.exe {"%1"}
#>
param(
[PsObject]$FileAssocs
)
foreach ($a in $FileAssocs) {
$Target = TemplateStr -InputString $a.Target -PackageName $a._PkgName
Write-DebugLog "New target: $Target" -LogLevel Verbose
$FriendlyAppName = TemplateStr -InputString $a.FriendlyAppName -PackageName $a._PkgName
$assocIcon = TemplateStr -InputString $a.AssocIcon -PackageName $a._PkgName
$iconFilePath, $iconIndex = $assocIcon -split ','
if ([System.IO.Path]::IsPathRooted($iconFilePath)) {
$iconFilePath = Get-RealPath -Path $iconFilePath
}
if ($iconIndex) {
$iconIndex = ",$iconIndex"
}
$assocIcon = "${iconFilePath}${iconIndex}"
Write-DebugLog "Creating assoc for .$($a.assoc) -> ``$Target``, param: ``$($a.AssocParam)``"
try {
$result = New-FileAssocExt `
-Extension $a.assoc `
-ExePath $Target `
-Params $a.AssocParam `
-IconPath $assocIcon `
-Description $a.Description `
-FriendlyAppName $FriendlyAppName `
-AppRegSuffix 'LSH' `
-Verb $a.Verb `
-VerbLabel $a.VerbLabel `
-Force:$a.Force
if ($result) {
Write-DebugLog "Updated assoc for $($a.assoc) -> ``$Target`` : ``$($a.AssocParam)``" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to update AssocExt: $_" -LogLevel Error
}
}
}
function Update-Paths {
<#
Update user %PATH% variables
TODO - Implement removal of paths
#>
param(
[PsObject]$Paths
)
$AddPaths = $Paths | Where-Object { $_.state -eq 'present' } | ForEach-Object { TemplateStr -InputString $_.Path -PackageName $_._PkgName }
$RemovePaths = $Paths | Where-Object { $_.state -eq 'absent' } | ForEach-Object { TemplateStr -InputString $_.Path -PackageName $_._PkgName }
if ($AddPaths) {
Write-DebugLog "Adding paths: $AddPaths" -LogLevel Verbose
try {
$result = Add-UserPaths -Paths $AddPaths
if ($result) {
Write-DebugLog "Added paths: $AddPaths" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to add paths: $AddPaths`n$_" -LogLevel Error
}
}
if ($RemovePaths) {
Write-DebugLog "Removing paths: $RemovePaths - TBC"
}
}
Function Update-Regs {
<#
data type key _PkgPath name _PkgName tindex
---- ---- --- ------- ---- ------- ------
{_PkgPath}/App/ConEmu/ConEmu.exe String HKEY_CURRENT_USER\SOFTWARE\Classes\directory\shell\ConEmu DBX Here N:\Tools\ConEmuPortable Icon ConEmuPortable 2
"{_PkgPath}/ConEmuPortable.exe" -Dir "%1" String HKEY_CURRENT_USER\SOFTWARE\Classes\directory\shell\ConEmu DBX Here\command N:\Tools\ConEmuPortable ConEmuPortable 3
1 DWord HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer N:\Tools\MyTools DisableSearchBoxSuggestions MyTools 16
1 DWord HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer N:\Tools\MyTools ShowRunAsDifferentUserInStart MyTools 17
#>
param(
[PsObject]$Regs
)
foreach ($r in $Regs) {
$Key = TemplateStr -InputString $r.key -PackageName $r._PkgName
$Name = TemplateStr -InputString $r.name -PackageName $r._PkgName
if (!$r.State) {
$r.State = 'present'
}
if ($r.State -eq 'absent' -and (Test-Path -Path $Key)) {
Write-DebugLog "Removing registry value: $Key"
try {
$result = Remove-Item -Path $Key -Recurse -Force -ErrorAction Stop | Out-Null
if ($result) {
Write-DebugLog "Registry value removed: $Key" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to remove registry value: $Key`n$_" -LogLevel Error
}
continue
}
$Type = $r.Type
if ($r.type -in @('String', 'ExpandString', 'REG_SZ', 'REG_EXPAND_SZ')) {
$Data = TemplateStr -InputString $r.data -PackageName $r._PkgName
}
else {
$Data = $r.data
}
# if ($r.Admin -and !$ISADMIN) {
# Write-Warning "[Update-Regs]: Skipping registry key: $($r.key)\$($r.name) = $($r.data) ($($r.type)) - Admin required"
# Continue
# }
Write-DebugLog "Creating registry value: $Key\$Name = $Data ($Type)"
try {
$result = Set-RegValue -FullPath "${Key}\${Name}" -Value $Data -Type $Type -Force
if ($result) {
Write-DebugLog "Registry value created: $Key\$Name = $Data ($Type)" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to create registry value: $Key\$Name = $Data ($Type)" -LogLevel Error
}
}
}
function Update-RegsWild {
param(
[PsObject]$RegsWild
)
foreach ($r in $RegsWild) {
$Key = TemplateStr -InputString $r.key -PackageName $r._PkgName
$Name = TemplateStr -InputString $r.name -PackageName $r._PkgName
$Type = $r.Type
if ($Type -in @('String', 'ExpandString', 'REG_SZ', 'REG_EXPAND_SZ')) {
$Data = TemplateStr -InputString $r.data -PackageName $r._PkgName
}
else {
$Data = $r.data
}
Write-DebugLog "Creating registry value: $Key\$Name = $Data ($Type)"
$keys = Get-Item -Path $key -ErrorAction SilentlyContinue
foreach ($k in $keys) {
Write-DebugLog "Name: $Name" -LogLevel Verbose
if ($Name -match '\*') {
# We're doing wildcard matching in Name also
Write-DebugLog "COMMAND: `$Names = Get-ItemProperty -Path '$($k.PsPath)' -Name '$Name' -ErrorAction SilentlyContinue" -LogLevel Verbose
$Names = Get-ItemProperty -Path $k.PsPath -Name $Name -ErrorAction SilentlyContinue
$Names = $Names.PSObject.Members
$Names = $Names | Where-Object { $_.MemberType -eq 'NoteProperty' -and $_.Name -notin @('PSPath', 'PSParentPath', 'PSChildName', 'PSProvider', 'PSDrive') } | ForEach-Object { $_.Name }
[string[]]$Paths = $Names | ForEach-Object { "$($k.Name)\$_" }
}
else {
[string[]]$Paths = "$($k.Name)\$Name"
}
foreach ($p in $paths) {
Write-Verbose "Creating registry value: $p = $Data ($Type)"
try {
$result = Set-RegValue -FullPath $p -Value $Data -Type $Type
if ($result) {
Write-DebugLog "Registry value created: $p = $Data ($Type)" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to create registry value: $p = $Data ($Type)" -LogLevel Error
}
}
}
}
}
function Update-Fonts {
param(
[PsObject]$Fonts
)
foreach ($f in $Fonts) {
$FontPath = TemplateStr -InputString $f.Path -PackageName $f._PkgName
Write-DebugLog "Installing font: $FontPath"
try {
$result = Install-Font -SourcePath $FontPath
if ($result) {
Write-DebugLog "Installed font: $FontPath" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to install font: $FontPath`n$_" -LogLevel Error
}
}
}
function Update-ShellStaticVerbs {
param(
[PsObject]$ShellStaticVerbs
)
foreach ($v in $ShellStaticVerbs) {
$target = TemplateStr -InputString $v.Target -PackageName $v._PkgName
try {
$result = Set-ShellStaticVerb -class $v.class -Verb $v.Verb -Target $target -Label $v.verblabel
if ($result) {
Write-DebugLog "Updated ShellStaticVerb: $($v.class) -> $($v.Verb) -> $target" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to update ShellStaticVerb: $($v.class) -> $($v.Verb) -> $target`n$_" -LogLevel Error
}
}
}
function Update-DropboxIgnore {
param(
[PsObject[]]$DropboxIgnore
)
foreach ($d in $DropboxIgnore) {
$target = TemplateStr -InputString $d.target -PackageName $d._PkgName
Write-DebugLog "Updating Dropbox ignore file: $target"
try {
$result = Set-DropboxIgnoredPath -Path $target -ErrorAction SilentlyContinue
if ($result) {
Write-DebugLog "Added path to Dropbox ignore: $target" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to add path to Dropbox ignore: $target`n$_" -LogLevel Error
}
}
}
function Update-DropboxOffline {
param(
[PsObject[]]$DropboxOffline
)
foreach ($d in $DropboxOffline) {
$target = TemplateStr -InputString $d.Path -PackageName $d._PkgName
Write-DebugLog "Updating Dropbox offline file: $target, mode: $($d.Mode)"
try {
$result = Set-DropboxItemOfflineMode -Path $target -Mode $d.Mode -ErrorAction SilentlyContinue
if ($result) {
Write-DebugLog "Updated Dropbox offline mode: $target, mode: $($d.Mode)" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to update Dropbox offline mode: $target, mode: $($d.Mode)`n$_" -LogLevel Error
}
}
}
function Update-RunOnce {
param(
[PsObject[]]$RunOnce,
[switch]$Force
)
foreach ($r in $RunOnce) {
$command = TemplateStr -InputString $r.command -PackageName $r._PkgName
# Calculate Hash of the $command string
$hash = Get-StringHash -String $command -HashAlgorithm MD5
$regdata = Get-RegValue -FullPath "$LSDREG\RunOnceData\$hash" -ErrorAction SilentlyContinue
if ($regdata -and !$force) {
Write-DebugLog "This command was already done, skipping: $command"
continue
}
$cmdArgs = @('/c')
$cmdArgs += ($command -split ' ')
Write-DebugLog "Executing command: $command"
$exec = Start-Process 'cmd' -ArgumentList $cmdArgs -NoNewWindow -Wait -PassThru -ErrorAction Continue
if ($exec.ExitCode -ne 0) {
Write-DebugLog "RunOnce command failed: $command" -LogLevel Error
return
}
Write-DebugLog "RunOnce command succeeded: $command" -LogLevel Info
Set-RegValue -FullPath "$LSDREG\RunOnceData\$hash" -Value $command -Type String -Force | Out-Null
}
}
function Update-Junctions {
param(
[PsObject[]]$Junctions
)
foreach ($j in $Junctions) {
# Target is the real path
$target = TemplateStr -InputString $j.target -PackageName $j._PkgName
$target = $ExecutionContext.InvokeCommand.ExpandString($target)
if (!(Test-Path $target)) {
Write-DebugLog "Target doesn't exist: $target. Skipping." -LogLevel Error
Continue
}
$target = Get-RealPath $target
# Junction is the virtual path
$junction = TemplateStr -InputString $j.link -PackageName $j._PkgName
$junction = $ExecutionContext.InvokeCommand.ExpandString($junction)
$junctionParent = Split-Path $junction -Parent
if (!(Test-Path $junctionParent)) {
Write-DebugLog "Junction parent doesn't exist: $junctionParent. Skipping." -LogLevel Error
continue
}
$junctionLeaf = Split-Path $junction -Leaf
$junctionParent = Get-RealPath $junctionParent
$junction = "$junctionParent\$junctionLeaf"
if (Test-Path $junction) {
$jOld = Get-Item $junction
if ($jOld.Target -eq $target) {
Write-DebugLog "Junction already exists: $junction <- $target, skipping."
Continue
}
if ($j.Force) {
$junctionBackup = "$junction-$(Get-Date -Format 'yyyyMMdd-HHmmss')"
Write-DebugLog "Something already exists at the junction's path, moving it out of the way: $junction -> $junctionBackup" -LogLevel Info
Rename-Item -Path $junction -NewName $junctionBackup
}
else {
Write-DebugLog "Something already exists at the junction's path, skipping: $junction" -LogLevel Warning
Continue
}
}
Write-DebugLog "Creating junction: $junction <- $target"
try {
$result = New-Item -ItemType Junction -Path $junction -Target $target
if ($result) {
Write-DebugLog "Created junction: $junction <- $target" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to create junction: $junction <- $target`n$_" -LogLevel Error
}
}
}
function Update-Symlinks {
param(
[PsObject[]]$Symlinks
)
foreach ($s in $Symlinks) {
# Target is the real path
$target = TemplateStr -InputString $s.target -PackageName $s._PkgName
$target = $ExecutionContext.InvokeCommand.ExpandString($target)
if (!(Test-Path $target)) {
Write-DebugLog "Target doesn't exist: $target. Skipping." -LogLevel Error
Continue
}
$target = Get-RealPath $target
# Symlink is the virtual path
$symlink = TemplateStr -InputString $s.link -PackageName $s._PkgName
$symlink = $ExecutionContext.InvokeCommand.ExpandString($symlink)
$symlinkParent = Split-Path $symlink -Parent
if (!(Test-Path $symlinkParent)) {
Write-DebugLog "Symlink parent doesn't exist: $symlinkParent. Skipping." -LogLevel Error
continue
}
$symlinkLeaf = Split-Path $symlink -Leaf
$symlinkParent = Get-RealPath $symlinkParent
$symlink = "$symlinkParent\$symlinkLeaf"
if (Test-Path $symlink) {
$sOld = Get-Item $symlink
if ($sOld.Target -eq $target) {
Write-DebugLog "Symlink already exists: $symlink <- $target, skipping."
Continue
}
if ($s.Force) {
$symlinkBackup = "$symlink-$(Get-Date -Format 'yyyyMMdd-HHmmss')"
Write-DebugLog "Something already exists at the symlink's path, moving it out of the way: $symlink -> $symlinkBackup" -LogLevel Info
Rename-Item -Path $symlink -NewName $symlinkBackup
}
else {
Write-DebugLog "Something already exists at the symlink's path, skipping: $symlink" -LogLevel Warning
Continue
}
}
Write-DebugLog "Creating symlink: $symlink <- $target"
try {
$result = New-Item -ItemType SymbolicLink -Path $symlink -Target $target
if ($result) {
Write-DebugLog "Created symlink: $symlink <- $target" -LogLevel Info
}
}
catch {
Write-DebugLog "Failed to create symlink: $symlink <- $target`n$_" -LogLevel Error
}
}
}
function Update-Files {
param(
[PsObject[]]$Files
)
foreach ($f in $Files) {
Write-DebugLog "Processing: $($f.target)"
if (!$f.State) { $f.State = 'present' }
$f.Target = TemplateStr -InputString $f.Target -PackageName $f._PkgName -ExpandString
if ($f.State -eq 'absent') {
Write-DebugLog "Attempting to remove: $($f.target)" -LogLevel Verbose
if (Test-Path $f.target -PathType Leaf) {
try {
Remove-Item -Path $f.target -Force
Write-DebugLog "Removed file: $($f.target)." -LogLevel INFO
}
catch {
Write-DebugLog -Message $_ -LogLevel Error
}
}
else {
Write-DebugLog "File already removed: $($f.target)" -LogLevel Verbose
continue
}
}
if ($f.State -eq 'present') {
if (!(Test-Path $f.target -PathType Leaf) -or $f.Force) {
Write-DebugLog "Attempting to create: $($f.target)" -LogLevel Verbose
if ($f.Source) {
$f.Source = TemplateStr -InputString $f.Source -PackageName $f._PkgName
try {
Copy-Item -Path $f.Source -Destination $f.Target -Force
Write-DebugLog "Copied file: $($f.Source) -> $($f.target)." -LogLevel INFO
}
catch {
Write-DebugLog "Failed to copy file: $($f.Source) -> $($f.target)." -LogLevel Error
}
}
elseif ($f.Content) {
try {
Set-Content -Path $f.Target -Value $f.Content -Force
Write-DebugLog "Created file from content: $($f.target)." -LogLevel INFO
}
catch {
Write-DebugLog "Failed to create file from content: $($f.target)." -LogLevel Error
}
}
}
}
}
}
function Update-Folders {
param(
[PsObject[]]$Folders
)
foreach ($f in $folders) {
$Path = TemplateStr -InputString $f.Path -PackageName $f._PkgName
if (!$Path) {
Write-DebugLog "Path is empty, skipping: $Path" -LogLevel Error
Continue
}
Write-DebugLog "Processing: $Path"
if ($f.VersionFrom) {
$VersionFrom = TemplateStr -InputString $f.VersionFrom -PackageName $f._PkgName
$VersionFile = Split-Path $VersionFrom -Leaf
if ($VersionFile -eq 'VERSION') {
$Version = Get-Content $VersionFrom
}
else {
$Version = Get-ExeVersion -Path $VersionFrom
}
$result = Set-FolderComment -Path $Path -Comment $Version
if ($result) {
Write-DebugLog "Updated folder comment: $Path -> $Version" -LogLevel Info
}
}
}
}
function Update-WindowsApps {
param(
[PsObject[]]$WindowsApps
)
$allApps = Get-AppxPackage
foreach ($a in $WindowsApps) {
if ($a.state -eq 'absent') {
if ($a.Name -in $allApps.Name) {
Write-DebugLog "Attempting to remove: $($a.Name)" -LogLevel Verbose
try {
Remove-AppxPackage -Package $a.Name
Write-DebugLog "Removed app: $($a.Name)." -LogLevel INFO
}
catch {
Write-DebugLog "COMMAND: Remove-AppxPackage -Package $($a.Name)" -logLevel Verbose
Write-DebugLog -Message $_ -LogLevel Error
}
}
else {
Write-DebugLog "App already removed: $($a.Name)" -LogLevel Verbose
continue
}
}
}
}