NAME
Start-DcsRecordingSession
SYNOPSIS
Starts the specified performance recording session.
SYNTAX
Start-DcsRecordingSession -Session <Object> [ -Connection <String> ] [ -PipelineVariable <String> ]
DESCRIPTION
Starts the specified performance recording session.
PARAMETERS
- -Session<Object>
- The PerformanceRecordingSessionData object, Id, or Caption that identifies the performance recording session. The object can be obtained from Get-DcsRecordingSession.
-
- Required: true
- Position: 1
- Default value:
- Accept pipeline input: true (ByValue)
- Accept wildcard characters: false
-
- -Connection<String>
- Alias of the connection to the server group. If not specified, the default connection is used.
-
- Required: false
- Position: named
- Default value:
- Accept pipeline input: false
- Accept wildcard characters: false
-
- -PipelineVariable<String>
-
- Required: false
- Position: named
- Default value:
- Accept pipeline input: false
- Accept wildcard characters: false
-
INPUTS
PerformanceRecordingSessionData : Object that identifies the session.
OUTPUTS
NOTES
This cmdlet replaces the obsolete cmdlet Start-DcsRecording. Also see Get-DcsRecordingSession, Stop-DcsRecordingSession.
EXAMPLES
Get-DcsRecordingSession -Session "User recording session" | Start-DcsRecordingSession
The cmdlet Get-DcsRecordingSession is invoked to retrieve the PerformanceRecordingSessionData object for the "User recording session" as described in the Caption of the object. This object is piped to Start-DcsRecordingSession to identify the session to start.