database-tools

Test Nested Depth

When you call a function, PowerShell increases the nest level. When a function calls another function, or script, this will again increase the nest...

Aborting Pipeline

Sometimes you might want to abort a pipeline when a certain condition is met. Here is a creative way of doing this. It works all the way back to...

"Continue" and Labels

When you use the "Continue" statement inside a loop, you can skip the remainder of this loop iteration, and continue with the next....

Get Memory Consumption

To get a rough understanding how much memory a script takes, or how much memory PowerShell puts aside when you store results in a variable, here is...

Mutual Exclusive Parameters

Sometimes, PowerShell functions have parameters that should be mutually exclusive: the user should only be able to use either one, not both. To...

Life of a DBA in GIFs

A Database Administrator experiences a wide range of emotions. It could be one those endless meetings, friendly disagreements with fellow...

Parsing PowerShell Scripts

If you'd like to create your own color-coded PowerShell scripts, for example formatting them in HTML, here is a sample that gets you started....

Aborting the Pipeline

If you know beforehand how many results you expect from a pipeline, you can use Select-Object to stop the upstream cmdlets. This can save a lot of...

Passing Arrays to Pipeline

If a function returns more than one value, PowerShell wraps them in an array. However, if you pass the results to another function inside a...

Free PowerShell Module for Admins

One feedback we got on a previous tip directed us to "Carbon", a free PowerShell module crammed with useful PowerShell functions. One is...

Converting CSV to Excel File

PowerShell can easily create CSV files using Export-Csv, and if Microsoft Excel is installed on your system, PowerShell can then have Excel convert...

Who is Accessing Network Resources?

Provided you have Administrator privileges, you can use a simple WMI class to check whether someone is accessing your resources via the network:...

Disable Automatic Reboot After Update

Are you tired of Windows unexpectedly rebooting, just because some newly installed updates required a reboot? Like most things, you can control the...

Removing Whitespace (and Line Breaks)

You may know that each string object has a method called Trim() that trims away whitespace both from the beginning and end of a string: $text =...

Why "exit" can kill PowerShell

Occasionally, there are misunderstandings how "exit" works. Take this example: function abc { 'Start' exit 100 'Done' }...

Identifying Risky NTFS Permissions

Here is a quick and easy way to find NTFS permissions that are potentially dangerous. The script tests all folders in $pathsToCheck and reports any...

1 93 94 95 96 97 159