database-tools

Using PowerShell Gallery

The PowerShell Gallery is a public repository for PowerShell scripts and modules. It is entirely managed by cmdlets. Before you can use the...

read more

New Where-Syntax

In PowerShell 4.0 and better, there is a new alternative to the Where-Object cmdlet: $all = Get-Service $all | Where-Object { $_.Status -eq...

read more

Updating XML Content

If you need to make changes to an existing XML document, for example to update inventory data, the easiest way is to load the document into an XML...

read more