Tag Archives: export

Export and Import Hash Tables

I use hash tables quite a bit and with the impending arrival of PowerShell 3.0 I expect even more so. PowerShell v3 allows you to define a hash table of default parameter values. I’m not going to to cover that … Continue reading

Posted in PowerShell, PowerShell v2.0, Scripting | Tagged , , , , , , | 13 Comments

Importing and Exporting Registry Items

A while ago I posted a function to export registry items to either a CSV or XML file. Recently I had a question on Twitter about importing, which I assumed meant from my exported file. The import is actually pretty … Continue reading

Posted in PowerShell, PowerShell v2.0, Registry | Tagged , , , , , , , | 1 Comment

Export Registry

Over the last week or so I’ve posted some functions for testing whether a given registry item exists or not, or even validating its value. To round this out, today I have an advanced function that makes it easier to … Continue reading

Posted in PowerShell v2.0, Registry, Scripting | Tagged , , , , | 1 Comment

Export-Function

I love that you can do so much with PowerShell on the fly.  For example, I don’t need to launch a script editor to create a PowerShell function. I can do it right from the command prompt. PS C:\> function … Continue reading

Posted in PowerShell v2.0, Scripting | Tagged , , , | 1 Comment