From c22c62ce3b07ccedab11d549f5e86ce789d93be3 Mon Sep 17 00:00:00 2001 From: Matt Gucci Date: Wed, 29 Nov 2017 18:35:25 +0900 Subject: [PATCH] Fix parameter's position in Get-Random.md --- .../Get-Random.md | 17 ++++--- .../Get-Random.md | 16 ++++--- .../Get-Random.md | 12 ++--- .../Get-Random.md | 12 ++--- .../Get-Random.md | 45 ++++--------------- 5 files changed, 42 insertions(+), 60 deletions(-) diff --git a/reference/3.0/Microsoft.PowerShell.Utility/Get-Random.md b/reference/3.0/Microsoft.PowerShell.Utility/Get-Random.md index 55c184d5ab73..dae494d72868 100644 --- a/reference/3.0/Microsoft.PowerShell.Utility/Get-Random.md +++ b/reference/3.0/Microsoft.PowerShell.Utility/Get-Random.md @@ -14,13 +14,15 @@ Gets a random number, or selects objects randomly from a collection. ## SYNTAX ### RandomNumberParameterSet (Default) -``` -Get-Random [-SetSeed ] [[-Maximum] ] [-Minimum ] [] +```powershell +Get-Random [[-Maximum] ] [-SetSeed ] [-Minimum ] + [] ``` ### RandomListItemParameterSet -``` -Get-Random [-SetSeed ] [-InputObject] [-Count ] [] +```powershell +Get-Random [-InputObject] [-SetSeed ] [-Count ] + [] ``` ## DESCRIPTION @@ -172,7 +174,8 @@ PS C:\> Get-Random 10001 ``` This command gets a random integer less than 10001. -Because the Maximum parameter has position 1, you can omit the parameter name when the value is the first or only unnamed parameter in the command. +Because the **Maximum** parameter has position 0, you can omit the parameter name when the value is the first or only unnamed parameter in the command. + ### Example 14 ``` PS C:\> Get-Random -Minimum ([Int64]::MinValue)3738173363251507200 @@ -219,7 +222,7 @@ Parameter Sets: RandomListItemParameterSet Aliases: Required: True -Position: 1 +Position: 0 Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False @@ -247,7 +250,7 @@ Parameter Sets: RandomNumberParameterSet Aliases: Required: False -Position: 1 +Position: 0 Default value: Int32.MaxValue, Double.MaxValue, Int64.MaxValue Accept pipeline input: False Accept wildcard characters: False diff --git a/reference/4.0/Microsoft.PowerShell.Utility/Get-Random.md b/reference/4.0/Microsoft.PowerShell.Utility/Get-Random.md index a2bdaeb46087..c32d4043cd2f 100644 --- a/reference/4.0/Microsoft.PowerShell.Utility/Get-Random.md +++ b/reference/4.0/Microsoft.PowerShell.Utility/Get-Random.md @@ -16,13 +16,15 @@ Gets a random number, or selects objects randomly from a collection. ## SYNTAX ### RandomNumberParameterSet (Default) -``` -Get-Random [-SetSeed ] [[-Maximum] ] [-Minimum ] [] +```powershell +Get-Random [[-Maximum] ] [-SetSeed ] [-Minimum ] + [] ``` ### RandomListItemParameterSet -``` -Get-Random [-SetSeed ] [-InputObject] [-Count ] [] +```powershell +Get-Random [-InputObject] [-SetSeed ] [-Count ] + [] ``` ## DESCRIPTION @@ -187,7 +189,7 @@ PS C:\> Get-Random 10001 ``` This command gets a random integer less than 10001. -Because the Maximum parameter has position 1, you can omit the parameter name when the value is the first or only unnamed parameter in the command. +Because the **Maximum** parameter has position 0, you can omit the parameter name when the value is the first or only unnamed parameter in the command. ### Example 14 ``` @@ -236,7 +238,7 @@ Parameter Sets: RandomListItemParameterSet Aliases: Required: True -Position: 1 +Position: 0 Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False @@ -264,7 +266,7 @@ Parameter Sets: RandomNumberParameterSet Aliases: Required: False -Position: 1 +Position: 0 Default value: Int32.MaxValue, Double.MaxValue, Int64.MaxValue Accept pipeline input: False Accept wildcard characters: False diff --git a/reference/5.0/Microsoft.PowerShell.Utility/Get-Random.md b/reference/5.0/Microsoft.PowerShell.Utility/Get-Random.md index c59603d522f8..93778c23fda0 100644 --- a/reference/5.0/Microsoft.PowerShell.Utility/Get-Random.md +++ b/reference/5.0/Microsoft.PowerShell.Utility/Get-Random.md @@ -16,13 +16,15 @@ Gets a random number, or selects objects randomly from a collection. ## SYNTAX ### RandomNumberParameterSet (Default) -``` -Get-Random [-SetSeed ] [[-Maximum] ] [-Minimum ] [] +```powershell +Get-Random [[-Maximum] ] [-SetSeed ] [-Minimum ] + [] ``` ### RandomListItemParameterSet -``` -Get-Random [-SetSeed ] [-InputObject] [-Count ] [] +```powershell +Get-Random [-InputObject] [-SetSeed ] [-Count ] + [] ``` ## DESCRIPTION @@ -186,7 +188,7 @@ PS C:\> Get-Random 10001 ``` This command gets a random integer less than 10001. -Because the *Maximum* parameter has position 1, you can omit the parameter name when the value is the first or only unnamed parameter in the command. +Because the **Maximum** parameter has position 0, you can omit the parameter name when the value is the first or only unnamed parameter in the command. ### Example 14: Get random 64-bit numbers ``` diff --git a/reference/5.1/Microsoft.PowerShell.Utility/Get-Random.md b/reference/5.1/Microsoft.PowerShell.Utility/Get-Random.md index c59603d522f8..93778c23fda0 100644 --- a/reference/5.1/Microsoft.PowerShell.Utility/Get-Random.md +++ b/reference/5.1/Microsoft.PowerShell.Utility/Get-Random.md @@ -16,13 +16,15 @@ Gets a random number, or selects objects randomly from a collection. ## SYNTAX ### RandomNumberParameterSet (Default) -``` -Get-Random [-SetSeed ] [[-Maximum] ] [-Minimum ] [] +```powershell +Get-Random [[-Maximum] ] [-SetSeed ] [-Minimum ] + [] ``` ### RandomListItemParameterSet -``` -Get-Random [-SetSeed ] [-InputObject] [-Count ] [] +```powershell +Get-Random [-InputObject] [-SetSeed ] [-Count ] + [] ``` ## DESCRIPTION @@ -186,7 +188,7 @@ PS C:\> Get-Random 10001 ``` This command gets a random integer less than 10001. -Because the *Maximum* parameter has position 1, you can omit the parameter name when the value is the first or only unnamed parameter in the command. +Because the **Maximum** parameter has position 0, you can omit the parameter name when the value is the first or only unnamed parameter in the command. ### Example 14: Get random 64-bit numbers ``` diff --git a/reference/6/Microsoft.PowerShell.Utility/Get-Random.md b/reference/6/Microsoft.PowerShell.Utility/Get-Random.md index 6f30a86f451b..93778c23fda0 100644 --- a/reference/6/Microsoft.PowerShell.Utility/Get-Random.md +++ b/reference/6/Microsoft.PowerShell.Utility/Get-Random.md @@ -16,15 +16,15 @@ Gets a random number, or selects objects randomly from a collection. ## SYNTAX ### RandomNumberParameterSet (Default) -``` -Get-Random [-SetSeed ] [[-Maximum] ] [-Minimum ] [-InformationAction ] - [-InformationVariable ] [] +```powershell +Get-Random [[-Maximum] ] [-SetSeed ] [-Minimum ] + [] ``` ### RandomListItemParameterSet -``` -Get-Random [-SetSeed ] [-InputObject] [-Count ] - [-InformationAction ] [-InformationVariable ] [] +```powershell +Get-Random [-InputObject] [-SetSeed ] [-Count ] + [] ``` ## DESCRIPTION @@ -188,7 +188,7 @@ PS C:\> Get-Random 10001 ``` This command gets a random integer less than 10001. -Because the *Maximum* parameter has position 1, you can omit the parameter name when the value is the first or only unnamed parameter in the command. +Because the **Maximum** parameter has position 0, you can omit the parameter name when the value is the first or only unnamed parameter in the command. ### Example 14: Get random 64-bit numbers ``` @@ -224,33 +224,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InformationAction -```yaml -Type: ActionPreference -Parameter Sets: (All) -Aliases: infa -Accepted values: SilentlyContinue, Stop, Continue, Inquire, Ignore, Suspend - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -InformationVariable -```yaml -Type: String -Parameter Sets: (All) -Aliases: iv - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -InputObject Specifies a collection of objects. **Get-Random** gets randomly selected objects in random order from the collection. @@ -263,7 +236,7 @@ Parameter Sets: RandomListItemParameterSet Aliases: Required: True -Position: 1 +Position: 0 Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False @@ -291,7 +264,7 @@ Parameter Sets: RandomNumberParameterSet Aliases: Required: False -Position: 1 +Position: 0 Default value: None Accept pipeline input: False Accept wildcard characters: False