Many people jump into PowerShell and immediately think they need to start writing scripts. That couldn't be further from the truth, and actually I believe that can be counter-productive. Without a ...
When you first start writing scripts, modularity, reusability, and best practices may not be top of mind. As your scripts become more complex, however, creating reusable elements becomes essential. By ...
A script is just a collection of commands saved into a text file (using the special .ps1 extension) that PowerShell understands and executes in sequence to perform different actions. In this post, we ...
Over the last few years, I have created a vast library of PowerShell scripts that I use to keep my servers healthy. These scripts do everything from monitoring disk health to helping me to reclaim ...
Being able to receive real-time feedback as you work is a huge factor in writing script that won't break. Your script could be the most awesome automation tool on the planet. It could ring all the ...
Back in 2008, I wrote a piece called PowerShell Tips and Tricks, which covered the then-relatively new Windows scripting language and some cool things you could do with it. Although PowerShell has ...
PowerShell scripts reduce the effort in running repetitive tasks. If you frequently execute scripts at pre-defined times or specified time intervals, you may want an efficient way of not having to ...
Are you a Windows administrator? Did you make a new year’s resolution to learn PowerShell this year? If so, you have come to the right place. In this piece, I will get you started by orienting you to ...
If you have a laptop, you most likely have Windows, and if you know PowerShell, you can make Windows work for you. The Microsoft PowerShell Certification Bundle shows you how to make Windows your ...
Last night I was playing around with some of the Sysinternals tools and rediscovered a tool called Bginfo. For those who might not be familiar with Sysinternals, it is a collection of free tools ...
FFmpeg was designed as a cross-platform solution for video and audio recording, conversion, and streaming. Its About page describes the command-line tool as “the leading multimedia framework, able to ...