Skip to content

Commit d9e9419

Browse files
alievertzAndy Lievertz
andauthored
Minor documentation corrections; v1.0.1
Co-authored-by: Andy Lievertz <[email protected]>
1 parent f1ddd70 commit d9e9419

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
|Date|Version|Comment|
44
|----|-------|-------|
5+
|2025-Jun-04|1.0.1|Minor documentation corrections.|
56
|2025-Jun-01|1.0.0|Initial release including `Convert-OZORegistryString`,`Get-OZORegistryKey`,`Read-OZORegistryKeyNameValue`,`Read-OZORegistryKeyNameType`,and `Write-OZORegistryKeyNameValue`.|

Documentation/Get-OZORegistryKey.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ProgramFilesPath ExpandString %ProgramFiles%
6565
ProgramW6432Dir String C:\Program Files
6666
```
6767

68-
### Example 3
68+
### Example 4
6969
Get the value and the type for the _ProgramFilesDir_ name.
7070
```powershell
7171
$ozoRegistryKey = (Get-OZORegistryKey -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion")
@@ -75,7 +75,7 @@ $ozoRegistryKey.ReturnKeyNameType("ProgramFilesDIr")
7575
String
7676
```
7777

78-
### Example 4
78+
### Example 5
7979
Get add a new name to an existing registry key.
8080
```powershell
8181
$ozoRegistryKey = (Get-OZORegistryKey -Key "HKEY_LOCAL_MACHINE\SOFTWARE\One Zero One")
@@ -84,7 +84,7 @@ If (($ozoRegistryKey.AddKeyName("Version","1.0.0")) -eq $true) {
8484
}
8585
```
8686

87-
### Example 5
87+
### Example 6
8888
Update an existing registry key name with a new value.
8989
```powershell
9090
$ozoRegistryKey = (Get-OZORegistryKey -Key "HKEY_LOCAL_MACHINE\SOFTWARE\One Zero One")
@@ -93,7 +93,7 @@ If (($ozoRegistryKey.UpdateKeyName("Version","2.0.0")) -eq $true) {
9393
}
9494
```
9595

96-
### Example 6
96+
### Example 7
9797
Remove an existing name from a registry key
9898
```powershell
9999
$ozoRegistryKey = (Get-OZORegistryKey -Key "HKEY_LOCAL_MACHINE\SOFTWARE\One Zero One")

OZORegistry/OZORegistry.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Script module or binary module file associated with this manifest.
77
RootModule = 'OZORegistry.psm1'
88
# Version number of this module.
9-
ModuleVersion = '1.0.0'
9+
ModuleVersion = '1.0.1'
1010
# Supported PSEditions
1111
# CompatiblePSEditions = @()
1212
# ID used to uniquely identify this module

0 commit comments

Comments
 (0)