While Going through Help of Get-content in Powershell V2, i couldn't find -Wait parameter. Although i can use this parameter with the same cmdlet. This is not one of commonParameters for sure.
NAME
Get-Content
SYNOPSIS
Gets the content of the item at the specified location.
SYNTAX
Get-Content [-LiteralPath] <string[]> [-Credential <PSCredential>] [-Exclude <string[]>] [-Filter <string>] [-Force
] [-Include <string[]>] [-ReadCount <Int64>] [-TotalCount <Int64>] [-UseTransaction] [<CommonParameters>]
Get-Content [-Path] <string[]> [-Credential <PSCredential>] [-Exclude <string[]>] [-Filter <string>] [-Force] [-Inc
lude <string[]>] [-ReadCount <Int64>] [-TotalCount <Int64>] [-UseTransaction] [<CommonParameters>]
The only commandlet i could find where -Wait parameter was mentioned explicitly in Powershell V2 was Start-process
Does get-content calls Start-process under the hood? How am i able to use -Wait parameter with Get-content?
This may help in discovering other Parameters which are not mentioned in the Help, but can be used with that cmdlet. Thanks in Advance for help!