Bill Kindle profile picture

Follow Bill

Bill Kindle

Petri Contributor

Husband to a wonderful woman that he doesn't deserve, and the father of two adorable children. Bill is a career Systems Administrator / Cyber Security Engineer focused on infrastructure, security, and automation.

Bill was an author for The PowerShell Conference Book Volume 2, editor for Volume 3, and senior editor for [Modern IT Automation with PowerShell](https://www.amazon.com/Modern-Automation-PowerShell-Michael-Zanatta/dp/B0BSC55Y8N)
Bill has a passion for helping others already or wanting to be in IT. He occasionally does presentations for [@FortWayneVMUG](https://twitter.com/FortWayneVMUG).

You can find some of Bill's work at [AdamTheAutomator](https://adamtheautomator.com/author/bill/) and [TechSnips LLC](https://www.youtube.com/c/TechSnips).

LATEST

PowerShell

5 Easy Ways to Install PowerShell 7 on Windows

Last Update: Mar 22, 2024

Looking to install the latest version of Powershell? Here’s the tutorial to install the latest version of the platform.

View Article
PowerShell

Set-ExecutionPolicy – Mastering PowerShell Execution Policy

Last Update: Dec 08, 2023

PowerShell is considered secure by default due to various design principles and features that Microsoft incorporated into its architecture. These measures aim to ensure that PowerShell provides a robust, yet safe, scripting environment for system administration tasks. One feature of PowerShell that contributes to this are known as execution policies, which can be set using…

View Article
PowerShell

How to Use PowerShell If Statements to Add Conditional Logic to Your Scripts

Last Update: Aug 02, 2023

PowerShell is a powerful scripting language for many reasons. One such reason is its support for conditional logic, which can help you supercharge your PowerShell scripts to make them even more efficient and effective. In this article, I’m going to teach you how to use If, Else, and Elseif conditional logic and explain how this…

View Article
PowerShell

Use PowerShell Functions to Quickly Simplify Your Scripts

Last Update: Jul 31, 2023

Are you creating PowerShell scripts for the first time? One important skill to master is how to write PowerShell functions, which work as a block of code that you can easily reuse. In this article, you will learn about the basics of building your first function and how to call it when you need it….

View Article