-
Notifications
You must be signed in to change notification settings - Fork 134
/
MSFT_xRegistryResource.psm1
1451 lines (1205 loc) · 43.9 KB
/
MSFT_xRegistryResource.psm1
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
$errorActionPreference = 'Stop'
Set-StrictMode -Version 'Latest'
# Import CommonResourceHelper for Get-LocalizedData
$script:dscResourcesFolderFilePath = Split-Path $PSScriptRoot -Parent
$script:commonResourceHelperFilePath = Join-Path -Path $script:dscResourcesFolderFilePath -ChildPath 'CommonResourceHelper.psm1'
Import-Module -Name $script:commonResourceHelperFilePath
# Localized messages for verbose and error statements in this resource
$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_xRegistryResource'
$script:registryDriveRoots = @{
'HKCC' = 'HKEY_CURRENT_CONFIG'
'HKCR' = 'HKEY_CLASSES_ROOT'
'HKCU' = 'HKEY_CURRENT_USER'
'HKLM' = 'HKEY_LOCAL_MACHINE'
'HKUS' = 'HKEY_USERS'
}
<#
.SYNOPSIS
Retrieves the current state of the Registry resource with the given Key.
.PARAMETER Key
The path of the registry key to retrieve the state of.
This path must include the registry hive.
.PARAMETER ValueName
The name of the registry value to retrieve the state of.
.PARAMETER ValueData
Used only as a boolean flag (along with ValueType) to determine if the target entity is the
Default Value or the key itself.
.PARAMETER ValueType
Used only as a boolean flag (along with ValueData) to determine if the target entity is the
Default Value or the key itself.
#>
function Get-TargetResource
{
[CmdletBinding()]
[OutputType([Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$Key,
[Parameter(Mandatory = $true)]
[ValidateNotNull()]
[String]
[AllowEmptyString()]
$ValueName,
[String[]]
$ValueData,
[ValidateSet('String', 'Binary', 'DWord', 'QWord', 'MultiString', 'ExpandString')]
[String]
$ValueType
)
Write-Verbose -Message ($script:localizedData.GetTargetResourceStartMessage -f $Key)
$registryResource = @{
Key = $Key
Ensure = 'Absent'
ValueName = $null
ValueType = $null
ValueData = $null
}
# Retrieve the registry key at the specified path
$registryKey = Get-RegistryKey -RegistryKeyPath $Key
# Check if the registry key exists
if ($null -eq $registryKey)
{
Write-Verbose -Message ($script:localizedData.RegistryKeyDoesNotExist -f $Key)
}
else
{
Write-Verbose -Message ($script:localizedData.RegistryKeyExists -f $Key)
# Check if the user specified a value name to retrieve
$valueNameSpecified = (-not [String]::IsNullOrEmpty($ValueName)) -or $PSBoundParameters.ContainsKey('ValueType') -or $PSBoundParameters.ContainsKey('ValueData')
if ($valueNameSpecified)
{
$valueDisplayName = Get-RegistryKeyValueDisplayName -RegistryKeyValueName $ValueName
$registryResource['ValueName'] = $valueDisplayName
# If a value name was specified, retrieve the value with the specified name from the retrieved registry key
$registryKeyValue = Get-RegistryKeyValue -RegistryKey $registryKey -RegistryKeyValueName $ValueName
# Check if the registry key value exists
if ($null -eq $registryKeyValue)
{
Write-Verbose -Message ($script:localizedData.RegistryKeyValueDoesNotExist -f $Key, $valueDisplayName)
}
else
{
Write-Verbose -Message ($script:localizedData.RegistryKeyValueExists -f $Key, $valueDisplayName)
# If the registry key value exists, retrieve its type
$actualValueType = Get-RegistryKeyValueType -RegistryKey $registryKey -RegistryKeyValueName $ValueName
# If the registry key value exists, convert it to a readable string
$registryKeyValueAsReadableString = @() + (ConvertTo-ReadableString -RegistryKeyValue $registryKeyValue -RegistryKeyValueType $actualValueType)
$registryResource['Ensure'] = 'Present'
$registryResource['ValueType'] = $actualValueType
$registryResource['ValueData'] = $registryKeyValueAsReadableString
}
}
else
{
$registryResource['Ensure'] = 'Present'
}
}
Write-Verbose -Message ($script:localizedData.GetTargetResourceEndMessage -f $Key)
return $registryResource
}
<#
.SYNOPSIS
Sets the Registry resource with the given Key to the specified state.
.PARAMETER Key
The path of the registry key to set the state of.
This path must include the registry hive.
.PARAMETER ValueName
The name of the registry value to set.
To add or remove a registry key, specify this property as an empty string without
specifying ValueType or ValueData. To modify or remove the default value of a registry key,
specify this property as an empty string while also specifying ValueType or ValueData.
.PARAMETER Ensure
Specifies whether or not the registry key with the given path and the registry key value with the given name should exist.
To ensure that the registry key and value exists, set this property to Present.
To ensure that the registry key and value do not exist, set this property to Absent.
The default value is Present.
.PARAMETER ValueData
The data to set as the registry key value.
.PARAMETER ValueType
The type of the value to set.
The supported types are:
String (REG_SZ)
Binary (REG-BINARY)
Dword 32-bit (REG_DWORD)
Qword 64-bit (REG_QWORD)
Multi-string (REG_MULTI_SZ)
Expandable string (REG_EXPAND_SZ)
.PARAMETER Hex
Specifies whether or not the value data should be expressed in hexadecimal format.
If specified, DWORD/QWORD value data is presented in hexadecimal format.
Not valid for other value types.
The default value is $false.
.PARAMETER Force
Specifies whether or not to overwrite the registry key with the given path with the new
value if it is already present.
#>
function Set-TargetResource
{
[CmdletBinding(SupportsShouldProcess = $true)]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$Key,
[Parameter(Mandatory = $true)]
[ValidateNotNull()]
[String]
[AllowEmptyString()]
$ValueName,
[ValidateSet('Present', 'Absent')]
[String]
$Ensure = 'Present',
[ValidateNotNull()]
[String[]]
$ValueData = @(),
[ValidateSet('String', 'Binary', 'DWord', 'QWord', 'MultiString', 'ExpandString')]
[String]
$ValueType = 'String',
[Boolean]
$Hex = $false,
[Boolean]
$Force = $false
)
Write-Verbose -Message ($script:localizedData.SetTargetResourceStartMessage -f $Key)
# Retrieve the registry key at the specified path
$registryKey = Get-RegistryKey -RegistryKeyPath $Key -WriteAccessAllowed
# Check if the registry key exists
if ($null -eq $registryKey)
{
Write-Verbose -Message ($script:localizedData.RegistryKeyDoesNotExist -f $Key)
# Check if the user wants the registry key to exist
if ($Ensure -eq 'Present')
{
Write-Verbose -Message ($script:localizedData.CreatingRegistryKey -f $Key)
$registryKey = New-RegistryKey -RegistryKeyPath $Key
}
}
# Check if the registry key exists
if ($null -ne $registryKey)
{
Write-Verbose -Message ($script:localizedData.RegistryKeyExists -f $Key)
$valueNameSpecified = (-not [String]::IsNullOrEmpty($ValueName)) -or $PSBoundParameters.ContainsKey('ValueType') -or $PSBoundParameters.ContainsKey('ValueData')
# Check if the user wants to set a registry key value
if ($valueNameSpecified)
{
# Retrieve the display name of the specified registry key value
$valueDisplayName = Get-RegistryKeyValueDisplayName -RegistryKeyValueName $ValueName
# Retrieve the existing registry key value
$actualRegistryKeyValue = Get-RegistryKeyValue -RegistryKey $registryKey -RegistryKeyValueName $ValueName
# Check if the user wants to add/modify or remove the registry key value
if ($Ensure -eq 'Present')
{
# Convert the specified registry key value to the specified type
$expectedRegistryKeyValue = switch ($ValueType)
{
'Binary' { ConvertTo-Binary -RegistryKeyValue $ValueData; break }
'DWord' { ConvertTo-DWord -RegistryKeyValue $ValueData -Hex $Hex; break }
'MultiString' { ConvertTo-MultiString -RegistryKeyValue $ValueData; break }
'QWord' { ConvertTo-QWord -RegistryKeyValue $ValueData -Hex $Hex; break }
default { ConvertTo-String -RegistryKeyValue $ValueData}
}
# Retrieve the name of the registry key
$registryKeyName = Get-RegistryKeyName -RegistryKey $registryKey
# Check if the registry key value exists
if ($null -eq $actualRegistryKeyValue)
{
# If the registry key value does not exist, set the new value
Write-Verbose -Message ($script:localizedData.SettingRegistryKeyValue -f $valueDisplayName, $Key)
$null = Set-RegistryKeyValue -RegistryKeyName $registryKeyName -RegistryKeyValueName $ValueName -RegistryKeyValue $expectedRegistryKeyValue -ValueType $ValueType
}
else
{
# If the registry key value exists, check if the specified registry key value matches the retrieved registry key value
if (Test-RegistryKeyValuesMatch -ExpectedRegistryKeyValue $expectedRegistryKeyValue -ActualRegistryKeyValue $actualRegistryKeyValue -RegistryKeyValueType $ValueType)
{
# If the specified registry key value matches the retrieved registry key value, no change is needed
Write-Verbose -Message ($script:localizedData.RegistryKeyValueAlreadySet -f $valueDisplayName, $Key)
}
else
{
# If the specified registry key value matches the retrieved registry key value, check if the user wants to overwrite the value
if (-not $Force)
{
# If the user does not want to overwrite the value, throw an error
New-InvalidOperationException -Message ($script:localizedData.CannotOverwriteExistingRegistryKeyValueWithoutForce -f $Key, $valueDisplayName)
}
else
{
# If the user does want to overwrite the value, overwrite the value
Write-Verbose -Message ($script:localizedData.OverwritingRegistryKeyValue -f $valueDisplayName, $Key)
$null = Set-RegistryKeyValue -RegistryKeyName $registryKeyName -RegistryKeyValueName $ValueName -RegistryKeyValue $expectedRegistryKeyValue -ValueType $ValueType
}
}
}
}
else
{
# Check if the registry key value exists
if ($null -ne $actualRegistryKeyValue)
{
Write-Verbose -Message ($script:localizedData.RemovingRegistryKeyValue -f $valueDisplayName, $Key)
# If the specified registry key value exists, check if the user specified a registry key value with a name to remove
if (-not [String]::IsNullOrEmpty($ValueName))
{
# If the user specified a registry key value with a name to remove, remove the registry key value with the specified name
$null = Remove-ItemProperty -Path $Key -Name $ValueName -Force
}
else
{
# If the user did not specify a registry key value with a name to remove, remove the default registry key value
$null = Remove-DefaultRegistryKeyValue -RegistryKey $registryKey
}
}
}
}
else
{
# Check if the user wants to remove the registry key
if ($Ensure -eq 'Absent')
{
# Retrieve the number of subkeys the registry key has
$registryKeySubKeyCount = Get-RegistryKeySubKeyCount -RegistryKey $registryKey
# Check if the registry key has subkeys and the user does not want to forcibly remove the registry key
if ($registryKeySubKeyCount -gt 0 -and -not $Force)
{
New-InvalidOperationException -Message ($script:localizedData.CannotRemoveExistingRegistryKeyWithSubKeysWithoutForce -f $Key)
}
else
{
# Remove the registry key
Write-Verbose -Message ($script:localizedData.RemovingRegistryKey -f $Key)
$null = Remove-Item -Path $Key -Recurse -Force
}
}
}
}
Write-Verbose -Message ($script:localizedData.SetTargetResourceEndMessage -f $Key)
}
<#
.SYNOPSIS
Tests if the Registry resource with the given key is in the specified state.
.PARAMETER Key
The path of the registry key to test the state of.
This path must include the registry hive.
.PARAMETER ValueName
The name of the registry value to check for.
Specify this property as an empty string ('') to check the default value of the registry key.
.PARAMETER Ensure
Specifies whether or not the registry key and value should exist.
To test that they exist, set this property to "Present".
To test that they do not exist, set the property to "Absent".
The default value is "Present".
.PARAMETER ValueData
The data the registry key value should have.
.PARAMETER ValueType
The type of the value.
The supported types are:
String (REG_SZ)
Binary (REG-BINARY)
Dword 32-bit (REG_DWORD)
Qword 64-bit (REG_QWORD)
Multi-string (REG_MULTI_SZ)
Expandable string (REG_EXPAND_SZ)
.PARAMETER Hex
Not used in Test-TargetResource.
.PARAMETER Force
Not used in Test-TargetResource.
#>
function Test-TargetResource
{
[CmdletBinding()]
[OutputType([Boolean])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$Key,
[Parameter(Mandatory = $true)]
[AllowEmptyString()]
[ValidateNotNull()]
[String]
$ValueName,
[ValidateSet('Present', 'Absent')]
[String]
$Ensure = 'Present',
[ValidateNotNull()]
[String[]]
$ValueData = @(),
[ValidateSet('String', 'Binary', 'DWord', 'QWord', 'MultiString', 'ExpandString')]
[String]
$ValueType = 'String',
[Boolean]
$Hex = $false,
[Boolean]
$Force = $false
)
Write-Verbose -Message ($script:localizedData.TestTargetResourceStartMessage -f $Key)
$registryResourceInDesiredState = $false
$getTargetResourceParameters = @{
Key = $Key
ValueName = $ValueName
}
if ($PSBoundParameters.ContainsKey('ValueType'))
{
$getTargetResourceParameters['ValueType'] = $ValueType
}
if ($PSBoundParameters.ContainsKey('ValueData'))
{
$getTargetResourceParameters['ValueData'] = $ValueData
}
$registryResource = Get-TargetResource @getTargetResourceParameters
# Check if the user specified a value name to retrieve
$valueNameSpecified = (-not [String]::IsNullOrEmpty($ValueName)) -or $PSBoundParameters.ContainsKey('ValueType') -or $PSBoundParameters.ContainsKey('ValueData')
if ($valueNameSpecified)
{
$valueDisplayName = Get-RegistryKeyValueDisplayName -RegistryKeyValueName $ValueName
if ($registryResource.Ensure -eq 'Absent')
{
Write-Verbose -Message ($script:localizedData.RegistryKeyValueDoesNotExist -f $Key, $valueDisplayName)
$registryResourceInDesiredState = $Ensure -eq 'Absent'
}
else
{
Write-Verbose -Message ($script:localizedData.RegistryKeyValueExists -f $Key, $valueDisplayName)
if ($Ensure -eq 'Absent')
{
$registryResourceInDesiredState = $false
}
elseif ($PSBoundParameters.ContainsKey('ValueType') -and $ValueType -ne $registryResource.ValueType)
{
Write-Verbose -Message ($script:localizedData.RegistryKeyValueTypeDoesNotMatch -f $valueDisplayName, $Key, $ValueType, $registryResource.ValueType)
$registryResourceInDesiredState = $false
}
elseif ($PSBoundParameters.ContainsKey('ValueData'))
{
# Need to get the actual registry key value since Get-TargetResource returns
$registryKey = Get-RegistryKey -RegistryKeyPath $Key
$actualRegistryKeyValue = Get-RegistryKeyValue -RegistryKey $registryKey -RegistryKeyValueName $ValueName
if (-not $PSBoundParameters.ContainsKey('ValueType') -and $null -ne $registryResource.ValueType)
{
$ValueType = $registryResource.ValueType
}
# Convert the specified registry key value to the specified type
$expectedRegistryKeyValue = switch ($ValueType)
{
'Binary' { ConvertTo-Binary -RegistryKeyValue $ValueData; break }
'DWord' { ConvertTo-DWord -RegistryKeyValue $ValueData -Hex $Hex; break }
'MultiString' { ConvertTo-MultiString -RegistryKeyValue $ValueData; break }
'QWord' { ConvertTo-QWord -RegistryKeyValue $ValueData -Hex $Hex; break }
default { ConvertTo-String -RegistryKeyValue $ValueData; break }
}
if (-not (Test-RegistryKeyValuesMatch -ExpectedRegistryKeyValue $expectedRegistryKeyValue -ActualRegistryKeyValue $actualRegistryKeyValue -RegistryKeyValueType $ValueType))
{
Write-Verbose -Message ($script:localizedData.RegistryKeyValueDoesNotMatch -f $valueDisplayName, $Key, $ValueData, $registryResource.ValueData)
$registryResourceInDesiredState = $false
}
else
{
$registryResourceInDesiredState = $true
}
}
else
{
$registryResourceInDesiredState = $true
}
}
}
else
{
if ($registryResource.Ensure -eq 'Present')
{
Write-Verbose -Message ($script:localizedData.RegistryKeyExists -f $Key)
$registryResourceInDesiredState = $Ensure -eq 'Present'
}
else
{
Write-Verbose -Message ($script:localizedData.RegistryKeyDoesNotExist -f $Key)
$registryResourceInDesiredState = $Ensure -eq 'Absent'
}
}
Write-Verbose -Message ($script:localizedData.TestTargetResourceEndMessage -f $Key)
return $registryResourceInDesiredState
}
<#
.SYNOPSIS
Retrieves the root of the specified path.
.PARAMETER Path
The path to retrieve the root of.
#>
function Get-PathRoot
{
[OutputType([String])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$Path
)
$pathParent = Split-Path -Path $Path -Parent
$pathRoot = $Path
while (-not [String]::IsNullOrEmpty($pathParent))
{
$pathRoot = Split-Path -Path $pathParent -Leaf
$pathParent = Split-Path -Path $pathParent -Parent
}
return $pathRoot
}
<#
.SYNOPSIS
Converts the specified registry drive root to its corresponding registry drive name.
.PARAMETER RegistryDriveRoot
The registry drive root to convert.
#>
function ConvertTo-RegistryDriveName
{
[OutputType([String])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$RegistryDriveRoot
)
$registryDriveName = $null
if ($script:registryDriveRoots.ContainsValue($RegistryDriveRoot))
{
foreach ($registryDriveRootsKey in $script:registryDriveRoots.Keys)
{
if ($script:registryDriveRoots[$registryDriveRootsKey] -ieq $RegistryDriveRoot)
{
$registryDriveName = $registryDriveRootsKey
break
}
}
}
return $registryDriveName
}
<#
.SYNOPSIS
Retrieves the name of the registry drive at the root of the the specified registry key path.
.PARAMETER RegistryKeyPath
The registry key path to retrieve the registry drive name from.
#>
function Get-RegistryDriveName
{
[OutputType([String])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$RegistryKeyPath
)
$registryKeyPathRoot = Get-PathRoot -Path $RegistryKeyPath
$registryKeyPathRoot = $registryKeyPathRoot.TrimEnd('\')
if ($registryKeyPathRoot.Contains(':'))
{
$registryDriveName = $registryKeyPathRoot.TrimEnd(':')
if (-not $script:registryDriveRoots.ContainsKey($registryDriveName))
{
New-InvalidArgumentException -ArgumentName 'Key' -Message ($script:localizedData.InvalidRegistryDrive -f $registryDriveName)
}
}
else
{
$registryDriveName = ConvertTo-RegistryDriveName -RegistryDriveRoot $registryKeyPathRoot
if ([String]::IsNullOrEmpty($registryDriveName))
{
New-InvalidArgumentException -ArgumentName 'Key' -Message ($script:localizedData.InvalidRegistryDrive -f $registryKeyPathRoot)
}
}
return $registryDriveName
}
<#
.SYNOPSIS
Mounts the registry drive with the specified name.
.PARAMETER RegistryKeyName
The name of the registry drive to mount.
#>
function Mount-RegistryDrive
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$RegistryDriveName
)
$registryDriveInfo = Get-PSDrive -Name $RegistryDriveName -ErrorAction 'SilentlyContinue'
if ($null -eq $registryDriveInfo)
{
$newPSDriveParameters = @{
Name = $RegistryDriveName
Root = $script:registryDriveRoots[$RegistryDriveName]
PSProvider = 'Registry'
Scope = 'Script'
}
$registryDriveInfo = New-PSDrive @newPSDriveParameters
}
# Validate that the specified PSDrive is valid
if (($null -eq $registryDriveInfo) -or ($null -eq $registryDriveInfo.Provider) -or ($registryDriveInfo.Provider.Name -ine 'Registry'))
{
New-InvalidOperationException -Message ($script:localizedData.RegistryDriveCouldNotBeMounted -f $RegistryDriveName)
}
}
<#
.SYNOPSIS
Opens the specified registry sub key under the specified registry parent key.
This is a wrapper function for unit testing.
.PARAMETER ParentKey
The parent registry key which contains the sub key to open.
.PARAMETER SubKey
The sub key to open.
.PARAMETER WriteAccessAllowed
Specifies whether or not to open the sub key with permissions to write to it.
#>
function Open-RegistrySubKey
{
[OutputType([Microsoft.Win32.RegistryKey])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[Microsoft.Win32.RegistryKey]
$ParentKey,
[Parameter(Mandatory = $true)]
[String]
[AllowEmptyString()]
$SubKey,
[Parameter()]
[Switch]
$WriteAccessAllowed
)
return $ParentKey.OpenSubKey($SubKey, $WriteAccessAllowed)
}
<#
.SYNOPSIS
Opens and retrieves the registry key at the specified path.
.PARAMETER RegistryKeyPath
The path to the registry key to open.
The path must include the registry drive.
.PARAMETER WriteAccessAllowed
Specifies whether or not to open the key with permissions to write to it.
.NOTES
This method is used instead of Get-Item so that there is no ambiguity between
forward slashes as path separators vs literal characters in a key name
(which is valid in the registry).
#>
function Get-RegistryKey
{
[OutputType([Microsoft.Win32.RegistryKey])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$RegistryKeyPath,
[Switch]
$WriteAccessAllowed
)
# Parse the registry drive from the specified registry key path
$registryDriveName = Get-RegistryDriveName -RegistryKeyPath $RegistryKeyPath
# Mount the registry drive if needed
Mount-RegistryDrive -RegistryDriveName $registryDriveName
# Retrieve the registry drive key
$registryDriveKey = Get-Item -LiteralPath ($registryDriveName + ':')
# Parse the registry drive subkey from the specified registry key path
$indexOfBackSlashInPath = $RegistryKeyPath.IndexOf('\')
if ($indexOfBackSlashInPath -ge 0 -and $indexOfBackSlashInPath -lt ($RegistryKeyPath.Length - 1))
{
$registryDriveSubKey = $RegistryKeyPath.Substring($RegistryKeyPath.IndexOf('\') + 1)
}
else
{
$registryDriveSubKey = ''
}
# Open the registry drive subkey
$registryKey = Open-RegistrySubKey -ParentKey $registryDriveKey -SubKey $registryDriveSubKey -WriteAccessAllowed:$WriteAccessAllowed
# Return the opened registry key
return $registryKey
}
<#
.SYNOPSIS
Retrieves the display name of the default registry key value if needed.
.PARAMETER RegistryKeyValueName
The name of the registry key value to retrieve the display name of.
#>
function Get-RegistryKeyValueDisplayName
{
[OutputType([String])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[String]
[AllowNull()]
[AllowEmptyString()]
$RegistryKeyValueName
)
$registryKeyValueDisplayName = $RegistryKeyValueName
if ([String]::IsNullOrEmpty($RegistryKeyValueName))
{
$registryKeyValueDisplayName = $script:localizedData.DefaultValueDisplayName
}
return $registryKeyValueDisplayName
}
<#
.SYNOPSIS
Retrieves the registry key value with the specified name from the specified registry key.
This is a wrapper function for unit testing.
.PARAMETER RegistryKey
The registry key to retrieve the value from.
.PARAMETER RegistryKeyValueName
The name of the registry key value to retrieve.
#>
function Get-RegistryKeyValue
{
[OutputType([Object[]])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[Microsoft.Win32.RegistryKey]
$RegistryKey,
[Parameter(Mandatory = $true)]
[ValidateNotNull()]
[String]
[AllowEmptyString()]
$RegistryKeyValueName
)
$registryValueOptions = [Microsoft.Win32.RegistryValueOptions]::DoNotExpandEnvironmentNames
$registryKeyValue = $RegistryKey.GetValue($RegistryKeyValueName, $null, $registryValueOptions)
return ,$registryKeyValue
}
<#
.SYNOPSIS
Retrieves the type of the registry key value with the specified name from the the specified
registry key.
This is a wrapper function for unit testing.
.PARAMETER RegistryKey
The registry key to retrieve the type of the value from.
.PARAMETER RegistryKeyValueName
The name of the registry key value to retrieve the type of.
#>
function Get-RegistryKeyValueType
{
[OutputType([Type])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[Microsoft.Win32.RegistryKey]
$RegistryKey,
[Parameter(Mandatory = $true)]
[ValidateNotNull()]
[String]
[AllowEmptyString()]
$RegistryKeyValueName
)
return $RegistryKey.GetValueKind($RegistryKeyValueName)
}
<#
.SYNOPSIS
Converts the specified byte array to a hex string.
.PARAMETER ByteArray
The byte array to convert.
#>
function Convert-ByteArrayToHexString
{
[OutputType([String])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNull()]
[Object[]]
[AllowEmptyCollection()]
$ByteArray
)
$hexString = ''
foreach ($byte in $ByteArray)
{
$hexString += ('{0:x2}' -f $byte)
}
return $hexString
}
<#
.SYNOPSIS
Converts the specified registry key value to a readable string.
.PARAMETER RegistryKeyValue
The registry key value to convert.
.PARAMETER RegistryKeyValueType
The type of the registry key value to convert.
#>
function ConvertTo-ReadableString
{
[OutputType([String])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[Object[]]
[AllowNull()]
[AllowEmptyCollection()]
$RegistryKeyValue,
[Parameter(Mandatory = $true)]
[ValidateSet('String', 'Binary', 'DWord', 'QWord', 'MultiString', 'ExpandString')]
[String]
$RegistryKeyValueType
)
$registryKeyValueAsString = [String]::Empty
if ($null -ne $RegistryKeyValue)
{
# For Binary type data, convert the received bytes back to a readable hex-string
if ($RegistryKeyValueType -eq 'Binary')
{
$RegistryKeyValue = Convert-ByteArrayToHexString -ByteArray $RegistryKeyValue
}
if ($RegistryKeyValueType -ne 'MultiString')
{
$RegistryKeyValue = [String[]]@() + $RegistryKeyValue
}
if ($RegistryKeyValue.Count -eq 1 -and -not [String]::IsNullOrEmpty($RegistryKeyValue[0]))
{
$registryKeyValueAsString = $RegistryKeyValue[0].ToString()
}
elseif ($RegistryKeyValue.Count -gt 1)
{
$registryKeyValueAsString = "($($RegistryKeyValue -join ', '))"
}
}
return $registryKeyValueAsString
}
<#
.SYNOPSIS
Creates a new subkey with the specified name under the specified registry key.
This is a wrapper function for unit testing.
.PARAMETER ParentRegistryKey
The parent registry key to create the new subkey under.
.PARAMETER SubKeyName
The name of the new subkey to create.
#>
function New-RegistrySubKey
{
[OutputType([Microsoft.Win32.RegistryKey])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[Microsoft.Win32.RegistryKey]
$ParentRegistryKey,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$SubKeyName
)
return $ParentRegistryKey.CreateSubKey($SubKeyName)
}
<#
.SYNOPSIS
Creates a new registry key at the specified registry key path.
.PARAMETER RegistryKeyPath
The path at which to create the registry key.
This path must include the registry drive.
#>
function New-RegistryKey
{
[OutputType([Microsoft.Win32.RegistryKey])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$RegistryKeyPath
)
# registry key names can contain forward slashes, so we can't use Split-Path here (it will split on /)
$lastSep = $RegistryKeyPath.LastIndexOf('\')
$parentRegistryKeyPath = $RegistryKeyPath.Substring(0, $lastSep)
$newRegistryKeyName = $RegistryKeyPath.Substring($lastSep + 1)