v0.4.0-preview0003
Pre-release[v0.4.0-preview0003]
Added
-
Get-RegistrySubKey
to replaceOpen-RegistrySubKey
. This implementation follows
the .net class better -
Invoke-DeleteSubKey
andInvoke-DeleteSubKeyTree
private functions for removing
subkeys -
Remove-RegistrySubKey
andRemoving-RegistryKeyTree
public
public implementation -
New Private function
Get-RegistrySubKeyOperation
for managing the logic of
opening a key or using an existing one provided inRemove-RegistrySubKey
-
New-RegistryKeyValuesObject
:-
Retrieves and exports all the values of a specified registry key or subkey
into a custom object. The object includes the registry path, backup date, user,
computer name, and a dictionary of the key's values (including data type and value). -
Supports backing up both root keys and subkeys.
-
-
Get-RegistryValueNames
:- Retrieves all the value names from a specified registry key. This function
simplifies the process of listing all registry values for a given key.
- Retrieves all the value names from a specified registry key. This function
-
Get-RegistryValueKind
:- Retrieves the type (kind) of a specified registry key value. This allows for
easy identification of value types such asString
,DWord
, andBinary
within registry keys.
- Retrieves the type (kind) of a specified registry key value. This allows for
Fixed
- Error Handling for
[System.Security.SecurityException]
inOpen-RegistryKey
Changed
Get-RegistrySubKey
includes an alias forOpen-RegistrySubKey
to for compatibility