I'll start with, the code link and quick doc are at the end of this post. If you're not into reading the backstory, feel free to scroll on down and...
database-tools
Integrating Uptime Infrastructure Monitor alerting with Atlassian Hipchat rooms
So I got bored this past Friday night. Having a young child often means earlier bedtimes and well, sometimes I just can't sleep. I got to...
Test-Driving PowerShellGet Module
PowerShell 3+ PowerShell 5.0 ships with a new module called PowerShellGet, and on older PowerShell versions, you can easily download and install...
What it takes to make Pokémon GO a reality
People, the world over, have been awed by the launch of Pokémon Go. The game has brought nostalgia, curiosity, and a unique gaming experience to...
Type-Based Parameter Binding (Part 2)
PowerShell 2+ In a previous tip we introduced automatic type-based parameter binding. Here is a use case. The function Test-Binding accepts files...
Coming Soon…Uptime Infrastructure Monitor version 7.8
We are hard at work on the next release of Uptime Infrastructure Monitor (Uptime IM) version 7.8. This release will include new and improved...
New Free Tool: SQL Query Store Optimizer
IDERA released a new free tool, SQL Query Store Optimizer, designed to help you improve the performance of SQL Server 2016’s Query Store....
Understanding Type-Based Parameter Binding
PowerShell 2+ PowerShell can automatically bind arguments to parameters based on type. Simply define different parameter sets. Here is an example:...
Find All Writeable Object Properties
All Versions .NET objects often have properties that you can read to retrieve information. Some of these properties may actually be writeable, so...
Creating Custom Mandatory Parameters
All Versions While you can declare a parameter as mandatory, this leaves not much control to you. If the user omits the mandatory parameter,...
August #SQLChat – Participate and Win a $100 Amazon Gift Card!
Our next #SQLChat will take place Wednesday, August 17 at 11 AM CT with Pinal Dave (@pinaldave). Pinal will lead a conversation discussing...
Use a Shorter Prompt
All Versions By default, PowerShell displays the current path in its input prompt which wastes as lot of space. When you overwrite the...
Doing Things in Parallel
Any version By processing things in parallel rather than sequential, a script can complete much faster. Here is an example that uses background jobs...
What Did Our #SQLChat Teach you About Growing Your Career?
IDERA hosted its July 2016 #SQLChat on Wednesday, July 6 at 11 AM CT with Monica Rathbun (@SQLEspresso). This was the second largest chat we have...
More Splitting Fun
In the previous tip, we explained how you can use a regular expression to split strings in groups of a given length. Let’s explore what else...
Splitting Groups
All PowerShell Versions Ever wanted to split a string in chunks of a given length? Regular expressions can help. Here is an example that splits a...
Using Form-Based Windows in PowerShell
WPF-based windows are the preferred way to create user interfaces this way - because the code is much easier to write, shorter, and WPF scales well...
Safely Opening WPF Windows
In the previous tip we explained how you can create WPF-based windows in PowerShell. However, when you play with WPF code inside PowerShell ISE, it...
Database Lifecycle Management 2016 Survey
At IDERA, we believe data is king: how you use data, how your organizations use data, and how the world uses data. So, we set out on a journey to...
Easily migrate your ERwin models to ER/Studio!
ER/Studio continues to add new features and capabilities such as Business Data Objects to help you improve the organization and readability of your...
Extended Beacon sample for Delphi 10.1 Berlin: Standard, Alternative and Eddystone beacons
If you look at the ExtendedBeaconScanner sample that is included for Delphi in 10.1 Berlin, you will learn how to scan for Beacon devices using...
Creating WPF Windows
WPF is a great technique to create user interfaces in PowerShell. Most of the window content can be defined using XAML, a description similar to...
Sending Emails (and Diagnosing Mail Servers)
Send-MailMessage has been around for many years. It can be used to quickly send an email without the need to have an email client at hand. All you...
Saving Multiple Credentials
Thanks to Jaap Brasser’s finding, here is an easy way of encrypting a bunch of credentials: $CredPath = "$home\Desktop\mycreds.xml"...