Start-BluGenieNewProcess



Start-BluGenieNewProcess

SYNOPSIS

Start-BluGenieNewProcess is similar to Start-Process but can capture all Standard Output

SYNTAX

Start-BluGenieNewProcess [[-FileName] <String>] [[-Arguments] <String>] [[-WorkingDirectory] <String>] [-Walkthrough] [-ReturnObject] [-OutUnEscapedJSON] [<CommonParameters>]

DESCRIPTION

Start-BluGenieNewProcess is similar to Start-Process but can capture all Standard Output while keeping the screen hidden

EXAMPLES

EXAMPLE 1

Command: Start-BluGenieNewProcess ping.exe 'localhost'
Description: Start a process and capture the Standard Output using the default parameter position
Notes: 
- Sample Output -
FileName         : ping.exe                                                 
Arguments        : localhost                                                
WorkingDirectory :                                                          
StdOut           :                                                          
                 Pinging Computer1 [::1] with 32 bytes of data:
                 Reply from ::1: time<1ms                                 
                 Reply from ::1: time<1ms                                 
                 Reply from ::1: time<1ms                                 
                 Reply from ::1: time<1ms                                 
                                                                          
                 Ping statistics for ::1:                                 
                     Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), 
                 Approximate round trip times in milli-seconds:           
                     Minimum = 0ms, Maximum = 0ms, Average = 0ms

EXAMPLE 2

EXAMPLE 3

EXAMPLE 4

EXAMPLE 5

EXAMPLE 6

EXAMPLE 7

EXAMPLE 8

EXAMPLE 9

PARAMETERS

FileName

Arguments

WorkingDirectory

Walkthrough

ReturnObject

OutUnEscapedJSON

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