There is a small typo in the help doc of the Select-String Cmdlet: 'The "sst" alias for the Select-String cmdlet was introduced in Windows PowerShell 3.0.'{ Help Select-String -Full | Select-String 'notes' -Context 0,4 } -----------------------------------------------------------------------------------------------------------PS C:\> Get-Alias -Name slsCommandType Name ModuleName----------- ---- ----------Alias sls -> Select-StringPS C:\>PS C:\>PS C:\>PS C:\>PS C:\> Help Select-String -Full | Select-String 'notes' -Context 0,4> NOTES Select-String is like the Grep command in UNIX and the FindStr command in Windows.----> The "sst" alias for the Select-String cmdlet was introduced in Windows PowerShell 3.0.PS C:\>PS C:\>PS C:\>PS C:\>PS C:\> Get-Alias -Name sstGet-Alias : This command cannot find a matching alias because an alias with the name 'sst' does not exist.At line:1 char:1+ Get-Alias -Name sst+ ~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (sst:String) [Get-Alias], ItemNotFoundException + FullyQualifiedErrorId : ItemNotFoundException,Microsoft.PowerShell.Commands.GetAliasCommandPS C:\> $PSVersionTableName Value---- -----PSVersion 3.0WSManStackVersion 3.0SerializationVersion 1.1.0.1CLRVersion 4.0.30319.18010BuildVersion 6.2.9200.16434PSCompatibleVersions {1.0, 2.0, 3.0}PSRemotingProtocolVersion 2.2
Where do you see this documentation issue.
Please wait...