Show-BluGenieMore
Show-BluGenieMore
SYNOPSIS
Show-BluGenieMore is a command used to view content one screen at a time in case the file is large.
SYNTAX
Show-BluGenieMore [[-Source] <Object>] [[-LineCount] <Int32>] [[-Suffix] <String>] [-Walkthrough] [<CommonParameters>]DESCRIPTION
Show-BluGenieMore is a command used to view content one screen at a time in case the file is large. You can define how many lines are diplayed to the screen as well. The default is 25.
EXAMPLES
EXAMPLE 1
Command: ,$(Get-ChildItem -Path $env:windir\System32 -File | Select-Object -ExpandProperty FullName) | Show-BluGenieMoreDescription: Query C:\Windows\System32 for all files and display the Full Path names 25 lines per page using the Pipeline
Notes:
While sending content over the pipeline you need to use an Unary Comma Operator.
As a binary operator, the comma creates an array. As a unary operator, the comma creates an array with one member. Place the comma before the member.
,$MyArray | MoreEXAMPLE 2
EXAMPLE 3
EXAMPLE 4
EXAMPLE 5
EXAMPLE 6
PARAMETERS
Source
LineCount
Suffix
Walkthrough
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Last updated