Author: Guy Thomas

PowerShell Basics: -Recurse Parameter with Get-ChildItem Examples

Introduction to PowerShell Scripting -Recurse When you want a PowerShell command to search sub-directories -Recurse is a life saver.  In other contexts this concept is called iteration, or sub-directory recursion.  The cmdlet which benefits most from the -Recurse parameter is Get-Childitem. Topics for PowerShell -Recurse Parameter Example 1 Get-ChildItem -Recurse …