July 2018
Beginner
552 pages
13h 18m
English
While developing scripts in VSCode, you might see squiggly lines (indicating issues with your code) and a tab called PROBLEMS at the bottom of the window. These notifications are courtesy of PSScriptAnalyzer, a very versatile PowerShell module that helps to analyze your scripts for issues and errors:

Outside of VSCode, or during a build process, you can use PSScriptAnalyzer by using the exported cmdlets of that module. You can specify which built-in rules and rule sets to apply, as well as exclude certain rules on demand:
# On PS GalleryInstall-Module PSScriptAnalyzer -ForceGet-Command -Module PSScriptAnalyzer# this triggers ...
Read now
Unlock full access