-
Notifications
You must be signed in to change notification settings - Fork 7.5k
/
Copy pathInvokeCommandCmdlet.cs
57 lines (49 loc) · 2.09 KB
/
InvokeCommandCmdlet.cs
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
52
53
54
55
56
57
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System.Management.Automation;
using System.Management.Automation.Internal;
namespace Microsoft.PowerShell.Commands
{
/// <summary>
/// Class implementing Invoke-Expression
/// </summary>
[Cmdlet(VerbsLifecycle.Invoke, "Expression", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113343")]
public sealed
class
InvokeExpressionCommand : PSCmdlet
{
#region parameters
/// <summary>
/// Command to execute.
/// </summary>
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true)]
public string Command { get; set; }
#endregion parameters
/// <summary>
/// For each record, execute it, and push the results into the
/// success stream.
/// </summary>
protected override void ProcessRecord()
{
Diagnostics.Assert(null != Command, "Command is null");
ScriptBlock myScriptBlock = InvokeCommand.NewScriptBlock(Command);
// If the runspace has ever been in ConstrainedLanguage, lock down this
// invocation as well - it is too easy for the command to be negatively influenced
// by malicious input (such as ReadOnly + Constant variables)
if (Context.HasRunspaceEverUsedConstrainedLanguageMode)
{
myScriptBlock.LanguageMode = PSLanguageMode.ConstrainedLanguage;
}
var emptyArray = Utils.EmptyArray<object>();
myScriptBlock.InvokeUsingCmdlet(
contextCmdlet: this,
useLocalScope: false,
errorHandlingBehavior: ScriptBlock.ErrorHandlingBehavior.WriteToCurrentErrorPipe,
dollarUnder: AutomationNull.Value,
input: emptyArray,
scriptThis: AutomationNull.Value,
args: emptyArray);
}
}
} // namespace Microsoft.PowerShell.Commands