Remote Registry PowerShell Module

About two years ago I wrote a Stand alone registry functions library to help managing Windows Registry on local or remote computers. Now that PowerShell 2.0 has released, I’ve taken the time to convert the library to Advanced Functions and now they are part of a PowerShell module.
The big improvement in the functions, beside the richness of PowerShell 2.0 features used in the module (support for Common Parameters, Comment Based Help and declaring a function that acts similar to a compiled cmdlet), is that now the functions can be used together in a pipeline. All functions are documented so you can get help (code examples etc) for any function with Get-Help.
The project, PSRemoteRegistry, is released on Microsoft’s MSDN code gallery. Here’s a list of the functions:
Get-RegBinary
Get-RegDefault
Get-RegDWord
Get-RegExpandString
Get-RegKey
Get-RegMultiString
Get-RegQWord
Get-RegString
Get-RegValue
New-RegKey
Remove-RegKey
Remove-RegValue
Set-RegBinary
Set-RegDefault
Set-RegDWord
Set-RegExpandString
Set-RegMultiString
Set-RegQWord
Set-RegString
Test-RegKey
Test-RegValue
I’d love to hear your comments, suggestions, bugs (if you find any), please report them on the project’s Discussions page or in the comments box below.