-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPRegistryPolicyParser.psm1
762 lines (632 loc) · 22.5 KB
/
GPRegistryPolicyParser.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
###########################################################
#
# Group Policy - Registry Policy parser module
#
# Copyright (c) Microsoft Corporation, 2016
#
###########################################################
data LocalizedData
{
# culture="en-US"
ConvertFrom-StringData @'
InvalidHeader = File '{0}' has an invalid header.
InvalidVersion = File '{0}' has an invalid version. It should be 1.
InvalidFormatBracket = File '{0}' has an invalid format. A [ or ] was expected at location {1}.
InvalidFormatSemicolon = File '{0}' has an invalid format. A ; was expected at location {1}.
OnlyCreatingKey = Some values are null. Only the registry key is created.
InvalidPath = Path {0} doesn't point to an existing registry key/property.
InternalError = Internal error while creating a registry entry for {0}
InvalidIntegerSize = Invalid size for an integer. Must be less than or equal to 8.
'@
}
Import-LocalizedData LocalizedData -filename GPRegistryPolicyParser.Strings.psd1
$script:REGFILE_SIGNATURE = 0x67655250 # PRef
$script:REGISTRY_FILE_VERSION = 0x00000001 #Initially defined as 1, then incremented each time the file format is changed.
$script:DefaultEntries = @(
"Software\Policies"
)
Enum RegType {
REG_NONE = 0 # No value type
REG_SZ = 1 # Unicode null terminated string
REG_EXPAND_SZ = 2 # Unicode null terminated string (with environmental variable references)
REG_BINARY = 3 # Free form binary
REG_DWORD = 4 # 32-bit number
REG_DWORD_LITTLE_ENDIAN = 4 # 32-bit number (same as REG_DWORD)
REG_DWORD_BIG_ENDIAN = 5 # 32-bit number
REG_LINK = 6 # Symbolic link (Unicode)
REG_MULTI_SZ = 7 # Multiple Unicode strings, delimited by \0, terminated by \0\0
REG_RESOURCE_LIST = 8 # Resource list in resource map
REG_FULL_RESOURCE_DESCRIPTOR = 9 # Resource list in hardware description
REG_RESOURCE_REQUIREMENTS_LIST = 10
REG_QWORD = 11 # 64-bit number
REG_QWORD_LITTLE_ENDIAN = 11 # 64-bit number (same as REG_QWORD)
}
Class GPRegistryPolicy
{
[string] $KeyName
[string] $ValueName
[RegType] $ValueType
[string] $ValueLength
[object] $ValueData
GPRegistryPolicy()
{
$this.KeyName = $Null
$this.ValueName = $Null
$this.ValueType = [RegType]::REG_NONE
$this.ValueLength = 0
$this.ValueData = $Null
}
GPRegistryPolicy(
[string] $KeyName,
[string] $ValueName,
[RegType] $ValueType,
[string] $ValueLength,
[object] $ValueData
)
{
$this.KeyName = $KeyName
$this.ValueName = $ValueName
$this.ValueType = $ValueType
$this.ValueLength = $ValueLength
$this.ValueData = $ValueData
}
[string] GetRegTypeString()
{
[string] $Result = ""
switch ($this.ValueType)
{
([RegType]::REG_SZ) { $Result = "String" }
([RegType]::REG_EXPAND_SZ) { $Result = "ExpandString" }
([RegType]::REG_BINARY) { $Result = "Binary" }
([RegType]::REG_DWORD) { $Result = "DWord" }
([RegType]::REG_MULTI_SZ) { $Result = "MultiString" }
([RegType]::REG_QWORD) { $Result = "QWord" }
default { $Result = "" }
}
return $Result
}
static [RegType] GetRegTypeFromString( [string] $Type )
{
$Result = [RegType]::REG_NONE
switch ($Type)
{
"String" { $Result = [RegType]::REG_SZ }
"ExpandString" { $Result = [RegType]::REG_EXPAND_SZ }
"Binary" { $Result = [RegType]::REG_BINARY }
"DWord" { $Result = [RegType]::REG_DWORD }
"MultiString" { $Result = [RegType]::REG_MULTI_SZ }
"QWord" { $Result = [RegType]::REG_QWORD }
default { $Result = [RegType]::REG_NONE }
}
return $Result
}
}
Function New-GPRegistryPolicy
{
param (
[Parameter(Mandatory=$true,Position=0)]
[ValidateNotNullOrEmpty()]
[string]
$keyName,
[Parameter(Position=1)]
[string]
$valueName = $null,
[Parameter(Position=2)]
[RegType]
$valueType = [RegType]::REG_NONE,
[Parameter(Position=3)]
[string]
$valueLength = $null,
[Parameter(Position=4)]
[object]
$valueData = $null
)
$Policy = [GPRegistryPolicy]::new($keyName, $valueName, $valueType, $valueLength, $valueData)
return $Policy;
}
Function Get-RegType
{
param (
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string]
$Type
)
return [GPRegistryPolicy]::GetRegTypeFromString($Type)
}
<#
.SYNOPSIS
Reads and parses a .pol file.
.DESCRIPTION
Reads a .pol file, parses it and returns an array of Group Policy registry settings.
.PARAMETER Path
Specifies the path to the .pol file.
.EXAMPLE
C:\PS> Read-PolFile -Path "C:\Registry.pol"
#>
Function Read-PolFile
{
[Alias("Parse-PolFile")]
[OutputType([Array])]
param (
[Parameter(Mandatory=$true,Position=0)]
[string]
$Path
)
[Array] $RegistryPolicies = @()
$index = 0
[string] $policyContents = Get-Content $Path -Raw
if ( $PSVersionTable.PSVersion.Major -le "5")
{
[byte[]] $policyContentInBytes = Get-Content $Path -Raw -Encoding Byte
}
elseif ($PSVersionTable.PSVersion.Major -gt "5")
{
[byte[]] $policyContentInBytes= get-content $path -AsByteStream -Raw
}
# 4 bytes are the signature PReg
$signature = [System.Text.Encoding]::ASCII.GetString($policyContents[0..3])
$index += 4
Assert ($signature -eq 'PReg') ($LocalizedData.InvalidHeader -f $Path)
# 4 bytes are the version
$version = [System.BitConverter]::ToInt32($policyContentInBytes, 4)
$index += 4
Assert ($version -eq 1) ($LocalizedData.InvalidVersion -f $Path)
# Start processing at byte 8
while($index -lt $policyContents.Length - 2)
{
[string]$keyName = $null
[string]$valueName = $null
[int]$valueType = $null
[int]$valueLength = $null
[object]$value = $null
# Next UNICODE character should be a [
$leftbracket = [System.BitConverter]::ToChar($policyContentInBytes, $index)
Assert ($leftbracket -eq '[') "Missing the openning bracket"
$index+=2
# Next UNICODE string will continue until the ; less the null terminator
$semicolon = $policyContents.IndexOf(";", $index)
Assert ($semicolon -ge 0) "Failed to locate the semicolon after key name."
$keyName = [System.Text.Encoding]::UNICODE.GetString($policyContents[($index)..($semicolon-3)]) # -3 to exclude the null termination and ';' characters
$index = $semicolon + 2
# Next UNICODE string will continue until the ; less the null terminator
$semicolon = $policyContents.IndexOf(";", $index)
Assert ($semicolon -ge 0) "Failed to locate the semicolon after value name."
$valueName = [System.Text.Encoding]::UNICODE.GetString($policyContents[($index)..($semicolon-3)]) # -3 to exclude the null termination and ';' characters
$index = $semicolon + 2
# Next DWORD will continue until the ;
$semicolon = $index + 4 # DWORD Size
Assert ([System.BitConverter]::ToChar($policyContentInBytes, $semicolon) -eq ';') "Failed to locate the semicolon after value type."
$valueType = [System.BitConverter]::ToInt32($policyContentInBytes, $index)
$index=$semicolon + 2 # Skip ';'
# Next DWORD will continue until the ;
$semicolon = $index + 4 # DWORD Size
Assert ([System.BitConverter]::ToChar($policyContentInBytes, $semicolon) -eq ';') "Failed to locate the semicolon after value length."
$valueLength = Convert-StringToInt -ValueString $policyContentInBytes[$index..($index+3)]
$index=$semicolon + 2 # Skip ';'
if ($valueLength -gt 0)
{
# String types less the null terminator for REG_SZ and REG_EXPAND_SZ
# REG_SZ: string type (ASCII)
if($valueType -eq [RegType]::REG_SZ)
{
[string] $value = [System.Text.Encoding]::UNICODE.GetString($policyContents[($index)..($index+$valueLength-3)]) # -3 to exclude the null termination and ']' characters
$index += $valueLength
}
# REG_EXPAND_SZ: string, includes %ENVVAR% (expanded by caller) (ASCII)
if($valueType -eq [RegType]::REG_EXPAND_SZ)
{
[string] $value = [System.Text.Encoding]::UNICODE.GetString($policyContents[($index)..($index+$valueLength-3)]) # -3 to exclude the null termination and ']' characters
$index += $valueLength
}
# For REG_MULTI_SZ leave the last null terminator
# REG_MULTI_SZ: multiple strings, delimited by \0, terminated by \0\0 (ASCII)
if($valueType -eq [RegType]::REG_MULTI_SZ)
{
[string] $value = [System.Text.Encoding]::UNICODE.GetString($policyContents[($index)..($index+$valueLength-3)])
$index += $valueLength
}
# REG_BINARY: binary values
if($valueType -eq [RegType]::REG_BINARY)
{
[byte[]] $value = $policyContentInBytes[($index)..($index+$valueLength-1)]
$index += $valueLength
}
}
# DWORD: (4 bytes) in little endian format
if($valueType -eq [RegType]::REG_DWORD)
{
$value = Convert-StringToInt -ValueString $policyContentInBytes[$index..($index+3)]
$index += 4
}
# QWORD: (8 bytes) in little endian format
if($valueType -eq [RegType]::REG_QWORD)
{
$value = Convert-StringToInt -ValueString $policyContentInBytes[$index..($index+7)]
$index += 8
}
# Next UNICODE character should be a ]
$rightbracket = $policyContents.IndexOf("]", $index) # Skip over null data value if one exists
Assert ($rightbracket -ge 0) "Missing the closing bracket."
$index = $rightbracket + 2
$entry = New-GPRegistryPolicy $keyName $valueName $valueType $valueLength $value
$RegistryPolicies += $entry
}
return $RegistryPolicies
}
<#
.SYNOPSIS
Reads registry policies from a list of entries.
.DESCRIPTION
Reads registry policies from a list of entries and returns an array of GPRegistryPolicies.
.PARAMETER Division
Specifies the division from which the registry entries will be read.
.EXAMPLE
C:\PS> Read-RegistryPolicies -Division "LocalMachine"
.EXAMPLE
C:\PS> Read-RegistryPolicies -Division "LocalMachine" -Entries @('Software\Policies\Microsoft\Windows', 'Software\Policies\Microsoft\WindowsFirewall')
#>
Function Read-RegistryPolicies
{
[OutputType([Array])]
param (
[ValidateSet("LocalMachine", "CurrentUser", "Users")]
[string]
$Division = "LocalMachine",
[string[]]
$Entries = $script:DefaultEntries
)
[Array] $RegistryPolicies = @()
switch ($Division)
{
'LocalMachine' { $Hive = [Microsoft.Win32.Registry]::LocalMachine }
'CurrentUser' { $Hive = [Microsoft.Win32.Registry]::CurrentUser }
'Users' { $Hive = [Microsoft.Win32.Registry]::Users }
}
foreach ($entry in $Entries)
{
#if (Test-Path -Path $entry)
if (IsRegistryKey -Path $entry -Hive $Hive)
{
# $entry is a key.
$Key = $Hive.OpenSubKey($entry)
# Add the key itself
$rp = New-GPRegistryPolicy -keyName $entry
$RegistryPolicies += $rp
# Check default value
if ($Key.GetValue(''))
{
$info = Get-RegKeyInfo -RegKey $Key -ValueName ''
$rp = New-GPRegistryPolicy -keyName $entry -valueName '' -valueType $info.Type -valueLength $info.Size -valueData $info.Data
$RegistryPolicies += $rp
}
if ($Key.ValueCount -gt 0)
{
# Copy values under the key
$ValueNames = $Key.GetValueNames()
foreach($value in $ValueNames)
{
if ([System.String]::IsNullOrEmpty($value))
{
$rp = New-GPRegistryPolicy -keyName $entry
}
else
{
$info = Get-RegKeyInfo -RegKey $Key -ValueName $value
$rp = New-GPRegistryPolicy -keyName $entry -valueName $value -valueType $info.Type -valueLength $info.Size -valueData $info.Data
}
$RegistryPolicies += $rp
}
}
if ($Key.SubKeyCount -gt 0)
{
# Copy subkeys recursively
$SubKeyNames = $Key.GetSubKeyNames()
$newEntries = @()
foreach($subkey in $SubKeyNames)
{
$newEntry = Join-Path -Path $entry -ChildPath $subkey
$newEntries += ,$newEntry
}
$RegistryPolicies += Read-RegistryPolicies -Entries $newEntries -Division $Division
}
}
else
{
$Tokens = $entry.Split('\')
$Property = $Tokens[-1]
$ParentKey = $Tokens[0..($Tokens.Count-2)] -join '\'
$NoSuchKeyOrProperty = $false
if (IsRegistryKey -Path $ParentKey -Hive $Hive)
{
# $entry is a property.
# [key;value;type;size;data]
$Key = $Hive.OpenSubKey($ParentKey)
if ($Key.GetValueNames() -icontains $Property)
{
$info = Get-RegKeyInfo -RegKey $Key -ValueName $Property
$rp = [GPRegistryPolicy]::new($ParentKey, $Property, $info.Type, $info.Size, $info.Data)
$RegistryPolicies += $rp
}
else
{
$NoSuchKeyOrProperty = $true
}
}
else
{
$NoSuchKeyOrProperty = $true
}
if ( $NoSuchKeyOrProperty -and @('Continue', 'SilentlyContinue', 'Ignore' ) -inotcontains $ErrorActionPreference)
{
# $entry points to a key/property that doesn't exist.
$NoSuchKeyOrProperty = $true
Fail -ErrorMessage ($LocalizedData.InvalidPath -f $entry)
}
}
}
return $RegistryPolicies
}
<#
.SYNOPSIS
Creates a .pol file entry byte array from a GPRegistryPolicy instance.
.DESCRIPTION
Creates a .pol file entry byte array from a GPRegistryPolicy instance. This entry can be written
in a .pol file later.
.PARAMETER RegistryPolicy
Specifies the registry policy entry.
#>
Function New-RegistrySettingsEntry
{
[OutputType([Array])]
[Alias("Create-RegistrySettingsEntry")]
param (
[Parameter(Mandatory = $true)]
[alias("RP")]
[GPRegistryPolicy]
$RegistryPolicy
)
# Entry format: [key;value;type;size;data]
[Byte[]] $Entry = @()
$Entry += [System.Text.Encoding]::Unicode.GetBytes('[') # Openning bracket
$Entry += [System.Text.Encoding]::Unicode.GetBytes($RP.KeyName + "`0")
$Entry += [System.Text.Encoding]::Unicode.GetBytes(';') # semicolon as delimiter
$Entry += [System.Text.Encoding]::Unicode.GetBytes($RP.ValueName + "`0")
$Entry += [System.Text.Encoding]::Unicode.GetBytes(';') # semicolon as delimiter
$Entry += [System.BitConverter]::GetBytes([Int32]$RP.ValueType)
$Entry += [System.Text.Encoding]::Unicode.GetBytes(';') # semicolon as delimiter
#Assert $type ($LocalizedData.InternalError -f $key)
# Get data bytes then compute byte size based on data and type
switch ($RP.ValueType)
{
{ @([RegType]::REG_SZ, [RegType]::REG_EXPAND_SZ, [RegType]::REG_MULTI_SZ) -contains $_ }
{
$dataBytes = [System.Text.Encoding]::Unicode.GetBytes($RP.ValueData + "`0")
$dataSize = $dataBytes.Count
}
([RegType]::REG_BINARY)
{
$dataBytes = [System.Text.Encoding]::Unicode.GetBytes($RP.ValueData)
$dataSize = $dataBytes.Count
}
([RegType]::REG_DWORD)
{
$dataBytes = [System.BitConverter]::GetBytes([Int32]$RP.ValueData)
$dataSize = 4
}
([RegType]::REG_QWORD)
{
$dataBytes = [System.BitConverter]::GetBytes([Int64]$RP.ValueData)
$dataSize = 8
}
default
{
$dataBytes = [System.Text.Encoding]::Unicode.GetBytes("")
$dataSize = 0
}
}
#Assert $type ($LocalizedData.InternalError -f $key)
$Entry += [System.BitConverter]::GetBytes($dataSize)
$Entry += [System.Text.Encoding]::Unicode.GetBytes(';') # semicolon as delimiter
#Assert $type ($LocalizedData.InternalError -f $key)
$Entry += $dataBytes
$Entry += [System.Text.Encoding]::Unicode.GetBytes(']') # Closing bracket
return $Entry
}
<#
.SYNOPSIS
Appends an array of registry policy entries to a file.
.DESCRIPTION
Appends an array of registry policy entries to a file.
.PARAMETER RegistryPolicies
An array of registry policy entries.
.PARAMETER Path
Path to a file (.pol extension)
#>
Function Add-RegistryPolicies
{
[Alias("Append-RegistryPolicies")]
param (
[Parameter(Mandatory = $true)]
[GPRegistryPolicy[]]
$RegistryPolicies,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string]
$Path
)
foreach ($rp in $RegistryPolicies)
{
[Byte[]] $Entry =New-RegistrySettingsEntry -RegistryPolicy $rp
$Entry | Add-Content -Path $Path -Encoding Byte
}
}
Function Assert
{
param (
[Parameter(Mandatory)]
$Condition,
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]
$ErrorMessage
)
if (!$Condition)
{
Fail -ErrorMessage $ErrorMessage;
}
}
Function Fail
{
param (
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]
$ErrorMessage
)
throw $ErrorMessage
}
<#
.SYNOPSIS
Creates a file and initializes it with Group Policy Registry file format signature.
.DESCRIPTION
Creates a file and initializes it with Group Policy Registry file format signature.
.PARAMETER Path
Path to a file (.pol extension)
#>
Function New-GPRegistryPolicyFile
{
[Alias("Create-GPRegistryPolicyFile")]
param (
[Parameter(Mandatory)]
$Path
)
$null = Remove-Item -Path $Path -Force -Verbose -ErrorAction SilentlyContinue
New-Item -Path $Path -Force -Verbose -ErrorAction Stop | Out-Null
[System.BitConverter]::GetBytes($script:REGFILE_SIGNATURE) | Add-Content -Path $Path -Encoding Byte
[System.BitConverter]::GetBytes($script:REGISTRY_FILE_VERSION) | Add-Content -Path $Path -Encoding Byte
}
<#
.SYNOPSIS
Returns the type, size and data values of a given registry key.
.DESCRIPTION
Returns the type, size and data values of a given registry key.
.PARAMETER RegKey
Registry Key
.PARAMETER ValueName
The name of the Value under the given registry key
#>
Function Get-RegKeyInfo
{
param (
[Parameter(Mandatory = $true)]
[Microsoft.Win32.RegistryKey]
$RegKey,
[Parameter(Mandatory = $true)]
[AllowEmptyString()]
[string]
$ValueName
)
switch ($RegKey.GetValueKind($ValueName))
{
"String" {
$Type = $RegKey.GetValueKind($ValueName)
$Data = $RegKey.GetValue($ValueName)
$Size = $Data.Length
}
"ExpandString" {
$Type = $RegKey.GetValueKind($ValueName)
$Data = $RegKey.GetValue($ValueName,$null,[Microsoft.Win32.RegistryValueOptions]::DoNotExpandEnvironmentNames)
$Size = $Data.Length
}
"Binary" {
$Type = $RegKey.GetValueKind($ValueName)
$value = $RegKey.GetValue($ValueName)
$Data = [System.Text.Encoding]::Unicode.GetString($value)
$Size = $Data.Count
}
"DWord" {
$Type = $RegKey.GetValueKind($ValueName)
$Data = $RegKey.GetValue($ValueName)
$Size = 4
}
"MultiString" {
$Type = $RegKey.GetValueKind($ValueName)
$Data = ($RegKey.GetValue($ValueName) -join "`0") + "`0"
$Size = $Data.Length
}
"QWord" {
$Type = $RegKey.GetValueKind($ValueName)
$Data = $RegKey.GetValue($ValueName)
$Size = 8
}
default {
$Type = $null
$Data = $null
$Size = 0
}
}
return @{
'Type' = $Type;
'Size' = $Size;
'Data' = $Data;
}
}
Function IsRegistryKey
{
param (
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[string]
$Path,
[Microsoft.Win32.RegistryKey]
$Hive = [Microsoft.Win32.Registry]::LocalMachine
)
$key = $Hive.OpenSubKey($Path)
if ($key)
{
if ($PSVersionTable.PSEdition -ieq 'Core')
{
$key.Flush()
$key.Dispose()
}
else
{
$key.Close()
}
return $true
}
else
{
return $false
}
}
Function Convert-StringToInt
{
param (
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[System.Object[]]
$ValueString
)
if ($ValueString.Length -le 4)
{
[int32] $result = 0
}
elseif ($ValueString.Length -le 8)
{
[int64] $result = 0
}
else
{
Fail -ErrorMessage $LocalizedData.InvalidIntegerSize
}
for ($i = $ValueString.Length - 1 ; $i -ge 0 ; $i -= 1)
{
$result = $result -shl 8
$result = $result + ([int][char]$ValueString[$i])
}
return $result
}
Export-ModuleMember -Function 'Read-PolFile','Read-RegistryPolicies','New-RegistrySettingsEntry','New-GPRegistryPolicyFile','Add-RegistryPolicies'
Export-ModuleMember -Alias 'Parse-PolFile','Create-RegistrySettingsEntry','Append-RegistryPolicies','Create-GPRegistryPolicyFile'