forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStopTranscriptCmdlet.cs
More file actions
54 lines (44 loc) · 1.49 KB
/
Copy pathStopTranscriptCmdlet.cs
File metadata and controls
54 lines (44 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System;
using System.Management.Automation;
using System.Management.Automation.Internal;
namespace Microsoft.PowerShell.Commands
{
/// <summary>
///
/// Implements the stop-transcript cmdlet
///
/// </summary>
[Cmdlet(VerbsLifecycle.Stop, "Transcript", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113415")]
[OutputType(typeof(String))]
public sealed class StopTranscriptCommand : PSCmdlet
{
/// <summary>
///
/// Starts the transcription
/// </summary>
protected override
void
BeginProcessing()
{
try
{
string outFilename = Host.UI.StopTranscribing();
if (outFilename != null)
{
PSObject outputObject = new PSObject(
StringUtil.Format(TranscriptStrings.TranscriptionStopped, outFilename));
outputObject.Properties.Add(new PSNoteProperty("Path", outFilename));
WriteObject(outputObject);
}
}
catch (Exception e)
{
throw PSTraceSource.NewInvalidOperationException(
e, TranscriptStrings.ErrorStoppingTranscript, e.Message);
}
}
}
}