database-tools

Vertical Grid View

You can always pipe objects to Out-GridView and get a nice extra window with all of the object properties lined up as table. That's useful if...

read more

Finding Type Accelerators

PowerShell maintains a list of shortcuts for .NET types to make coding more convenient for you. For example, to convert a string to a DateTime type,...

read more

Returning Multiple Values

A PowerShell function can return multiple values. To receive them, simply assign the result to multiple variables: function Get-DateTimeInfo { #...

read more