使用內建預設規則集分析指令碼
ScriptAnalyzer 附帶了一組可用於分析指令碼的內建預設規則。這些包括:PSGallery
,DSC
和 CodeFormatting
。它們可以按如下方式執行:
PowerShell 庫規則
要執行 PowerShell 庫規則,請使用以下命令:
Invoke-ScriptAnalyzer -Path /path/to/module/ -Settings PSGallery -Recurse
DSC 規則
要執行 DSC 規則,請使用以下命令:
Invoke-ScriptAnalyzer -Path /path/to/module/ -Settings DSC -Recurse
程式碼格式規則
要執行程式碼格式規則,請使用以下命令:
Invoke-ScriptAnalyzer -Path /path/to/module/ -Settings CodeFormatting -Recurse