Further reading
This was a big chapter, so there is plenty of further reading here:
- Developing PowerShell with VS Code: https://docs.microsoft.com/en-us/powershell/scripting/dev-cross-plat/vscode/using-vscode
- About
if
: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_if - About
switch
: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_switch - About
foreach
: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_foreach - About
do
: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_do - About
while
: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_while - About
for
: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_for - About
break
: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_break - About...