You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PS >Get-ScriptAnalyzerRule-Name 'PSUseCorrectCasing'|Format-List
Name : PSUseCorrectCasing
Severity : Information
Description : For better readability and consistency, use the exact casing of the cmdlet/function/parameter.
SourceName : PS
PS >
Actual behavior
PS >Get-ScriptAnalyzerRule-Name 'PSUseCorrectCasing'|Format-List
Name :
Severity : Information
Description : For better readability and consistency, use the exact casing of the cmdlet/function/parameter.
SourceName : PS
PS >
If an unexpected error was thrown then please report the full error details using e.g. $error[0] | Select-Object *
Environment data
>$PSVersionTable
Name Value
---------
PSVersion 7.4.3
PSEdition Core
GitCommitId 7.4.3
OS Microsoft Windows 10.0.22631
Platform Win32NT
PSCompatibleVersions {1.0,2.0,3.0,4.0}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0> (Get-Module-ListAvailable PSScriptAnalyzer).Version |ForEach-Object { $_.ToString() }
1.22.01.22.0
If selecting all properties with format list:
PS >Get-ScriptAnalyzerRule-Name 'PSUseCorrectCasing'|Format-List-Property '*'
RuleName : PSUseCorrectCasing
CommonName : Use exact casing of cmdlet/function/parameter name.
Description : For better readability and consistency, use the exact casing of the cmdlet/function/parameter.
SourceType : Builtin
SourceName : PS
Severity : Information
ImplementingType : Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules.UseCorrectCasing
PS >
The text was updated successfully, but these errors were encountered:
o-l-a-v
changed the title
"PSScriptAnalyzer" default view shows no value for property "Name"Get-ScriptAnalyzerRule default list view shows no value for property "Name"
Jul 7, 2024
This looks to be an issue with the format file definition, which outlines the default type definition of RuleInfo. It is referencing a Name property - which does not exist on the type.
Before submitting a bug report:
Steps to reproduce
Expected behavior
Actual behavior
If an unexpected error was thrown then please report the full error details using e.g.
$error[0] | Select-Object *
Environment data
If selecting all properties with format list:
The text was updated successfully, but these errors were encountered: