Powershell Tip #4: Difference between Break and Continue By powershellgu | July 9, 2015 2 Comments Tip: The difference between Break and Continue statements: Continue : the loop continues but skips just the current iteration. Break : exits a loop or a switch statement. Note: to exit a function, use the return statement.
Pingback: Powershell Tip #5: Automatic variable ($PSBoundParameters) | Powershell Guru
Pingback: Powershell Tip #3: Change default parameter values ($PSDefaultParameterValues) | Powershell Guru