Showing results for registry - Scripting Blog [archived]

Feb 6, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Display Registry Keys

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to display registry keys.  How can I use Windows PowerShell to provide a list of registry keys that I can filter, instead of using Regedit to search?  Use the Get-ItemProperty cmdlet and point it to a specific registry hive. The following command looks for         ...

Scripting Guy!Windows PowerShellPowerTip
Feb 5, 2015
Post comments count0
Post likes count0

Registry Cmdlets: Complete the Registry CDXML Module

Doctor Scripto
Doctor Scripto

Summary: Richard Siddaway shows how to complete the registry CDXML module. Honorary Scripting Guy, Richard Siddaway, here today filling in for my good friend, The Scripting Guy. This is the final post in a series. To catch up, read: So far, you’ve seen how to create a CDXML module with a single cmdlet based on the GetStringValue meth...

Windows PowerShellregistryRichard Siddaway
Feb 4, 2015
Post comments count0
Post likes count0

Registry Cmdlets: Advanced CDXML

Doctor Scripto
Doctor Scripto

Summary: Richard Siddaway shows some advanced features in CDXML. Honorary Scripting Guy, Richard Siddaway, here today filling in for my good friend, The Scripting Guy. This is the third post in a series. To catch up, read: Yesterday, you saw that you can create a Windows PowerShell cmdlet from the StdRegProv CIM class by using CDXML, which e...

Windows PowerShellregistryRichard Siddaway
Feb 3, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Find Parameters for CIM Class Method

Doctor Scripto
Doctor Scripto

Summary: Learn how to discover the parameters for a method in a CIM class. How can I find the parameters of a CIM class method, such as GetStringValue in the StdRegprov class? Use Get-CimClass to get the class:$class = Get-CimClass -ClassName StdRegProvTo view the methods:$class.CimClassMethodsTo view the par...

Windows PowerShellPowerTipregistry
Feb 3, 2015
Post comments count0
Post likes count0

Registry Cmdlets: First Steps with CDXML

Doctor Scripto
Doctor Scripto

Summary: Richard Siddaway shows how to start creating CDXML cmdlets. Honorary Scripting Guy, Richard Siddaway, here today filling in for my good friend, The Scripting Guy. This is the second post in a series. Yesterday, in Registry Cmdlets: Working with the Registry, I explained that there aren’t any cmdlets for working directly with the regi...

Windows PowerShellregistryRichard Siddaway