Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /remoting /commands /NewPSSessionOptionCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Globalization; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Remoting; | |
| using System.Management.Automation.Runspaces; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// This class implements New-PSSessionOption cmdlet. | |
| /// Spec: TBD. | |
| /// </summary> | |
| [] | |
| [] | |
| public sealed class NewPSSessionOptionCommand : PSCmdlet | |
| { | |
| /// <summary> | |
| /// The MaximumRedirection parameter enables the implicit redirection functionality | |
| /// -1 = no limit | |
| /// 0 = no redirection. | |
| /// </summary> | |
| [] | |
| public int MaximumRedirection | |
| { | |
| get { return _maximumRedirection.Value; } | |
| set { _maximumRedirection = value; } | |
| } | |
| private int? _maximumRedirection; | |
| /// <summary> | |
| /// If false, underlying WSMan infrastructure will compress data sent on the network. | |
| /// If true, data will not be compressed. Compression improves performance by | |
| /// reducing the amount of data sent on the network. Compression my require extra | |
| /// memory consumption and CPU usage. In cases where available memory / CPU is less, | |
| /// set this property to "true". | |
| /// By default the value of this property is "false". | |
| /// </summary> | |
| [] | |
| public SwitchParameter NoCompression { get; set; } | |
| /// <summary> | |
| /// If <see langword="true"/> then Operating System won't load the user profile (i.e. registry keys under HKCU) on the remote server | |
| /// which can result in a faster session creation time. This option won't have any effect if the remote machine has | |
| /// already loaded the profile (i.e. in another session). | |
| /// </summary> | |
| [] | |
| public SwitchParameter NoMachineProfile { get; set; } | |
| /// <summary> | |
| /// Culture that the remote session should use. | |
| /// </summary> | |
| [] | |
| [] | |
| public CultureInfo Culture { get; set; } | |
| /// <summary> | |
| /// UI culture that the remote session should use. | |
| /// </summary> | |
| [] | |
| [] | |
| public CultureInfo UICulture { get; set; } | |
| /// <summary> | |
| /// Total data (in bytes) that can be received from a remote machine | |
| /// targeted towards a command. If null, then the size is unlimited. | |
| /// Default is unlimited data. | |
| /// </summary> | |
| [] | |
| public int MaximumReceivedDataSizePerCommand | |
| { | |
| get { return _maxRecvdDataSizePerCommand.Value; } | |
| set { _maxRecvdDataSizePerCommand = value; } | |
| } | |
| private int? _maxRecvdDataSizePerCommand; | |
| /// <summary> | |
| /// Maximum size (in bytes) of a deserialized object received from a remote machine. | |
| /// If null, then the size is unlimited. Default is unlimited object size. | |
| /// </summary> | |
| [] | |
| public int MaximumReceivedObjectSize | |
| { | |
| get { return _maxRecvdObjectSize.Value; } | |
| set { _maxRecvdObjectSize = value; } | |
| } | |
| private int? _maxRecvdObjectSize; | |
| /// <summary> | |
| /// Specifies the output mode on the server when it is in Disconnected mode | |
| /// and its output data cache becomes full. | |
| /// </summary> | |
| [] | |
| public OutputBufferingMode OutputBufferingMode { get; set; } | |
| /// <summary> | |
| /// Maximum number of times a connection will be re-attempted when a connection fails due to network | |
| /// issues. | |
| /// </summary> | |
| [] | |
| [] | |
| public int MaxConnectionRetryCount { get; set; } | |
| /// <summary> | |
| /// Application arguments the server can see in <see cref="System.Management.Automation.Remoting.PSSenderInfo.ApplicationArguments"/> | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public PSPrimitiveDictionary ApplicationArguments { get; set; } | |
| /// <summary> | |
| /// The duration for which PowerShell remoting waits (in milliseconds) before timing | |
| /// out on a connection to a remote machine. Simply put, the timeout for a remote | |
| /// runspace creation. | |
| /// | |
| /// The user would like to tweak this timeout depending on whether | |
| /// he/she is connecting to a machine in the data center or across a slow WAN. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public int OpenTimeout | |
| { | |
| get | |
| { | |
| return _openTimeout ?? RunspaceConnectionInfo.DefaultOpenTimeout; | |
| } | |
| set | |
| { | |
| _openTimeout = value; | |
| } | |
| } | |
| private int? _openTimeout; | |
| /// <summary> | |
| /// The duration for which PowerShell should wait (in milliseconds) before it | |
| /// times out on cancel operations (close runspace or stop powershell). For | |
| /// instance, when the user hits ctrl-C, New-PSSession cmdlet tries to call a | |
| /// stop on all remote runspaces which are in the Opening state. The user | |
| /// wouldn't mind waiting for 15 seconds, but this should be time bound and of a | |
| /// shorter duration. A high timeout here like 3 minutes will give the user | |
| /// a feeling that the PowerShell client is not responding. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public int CancelTimeout | |
| { | |
| get | |
| { | |
| return _cancelTimeout ?? BaseTransportManager.ClientCloseTimeoutMs; | |
| } | |
| set | |
| { | |
| _cancelTimeout = value; | |
| } | |
| } | |
| private int? _cancelTimeout; | |
| /// <summary> | |
| /// The duration for which a Runspace on server needs to wait (in milliseconds) before it | |
| /// declares the client dead and closes itself down. | |
| /// This is especially important as these values may have to be configured differently | |
| /// for enterprise administration scenarios. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public int IdleTimeout | |
| { | |
| get | |
| { | |
| return _idleTimeout ?? RunspaceConnectionInfo.DefaultIdleTimeout; | |
| } | |
| set | |
| { | |
| _idleTimeout = value; | |
| } | |
| } | |
| private int? _idleTimeout; | |
| /// <summary> | |
| /// By default, ProxyAccessType is None, that means Proxy information (ProxyAccessType, | |
| /// ProxyAuthenticationMechanism and ProxyCredential)is not passed to WSMan at all. | |
| /// </summary> | |
| [] | |
| [] | |
| public ProxyAccessType ProxyAccessType { get; set; } = ProxyAccessType.None; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "ProxyAuthentication". | |
| /// This parameter takes a set of authentication methods the user can select | |
| /// from. The available options should be as follows: | |
| /// - Negotiate: Use the default authentication (as defined by the underlying | |
| /// protocol) for establishing a remote connection. | |
| /// - Basic: Use basic authentication for establishing a remote connection | |
| /// - Digest: Use Digest authentication for establishing a remote connection. | |
| /// </summary> | |
| [] | |
| public AuthenticationMechanism ProxyAuthentication { get; set; } = AuthenticationMechanism.Negotiate; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "ProxyCredential". | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public PSCredential ProxyCredential { get; set; } | |
| /// <summary> | |
| /// The following is the definition of the input parameter "SkipCACheck". | |
| /// When connecting over HTTPS, the client does not validate that the server | |
| /// certificate is signed by a trusted certificate authority (CA). Use only when | |
| /// the remote computer is trusted by other means, for example, if the remote | |
| /// computer is part of a network that is physically secure and isolated or the | |
| /// remote computer is listed as a trusted host in WinRM configuration. | |
| /// </summary> | |
| [] | |
| public SwitchParameter SkipCACheck | |
| { | |
| get { return _skipcacheck; } | |
| set { _skipcacheck = value; } | |
| } | |
| private bool _skipcacheck; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "SkipCNCheck". | |
| /// Indicates that certificate common name (CN) of the server need not match the | |
| /// hostname of the server. Used only in remote operations using https. This | |
| /// option should only be used for trusted machines. | |
| /// </summary> | |
| [] | |
| public SwitchParameter SkipCNCheck | |
| { | |
| get { return _skipcncheck; } | |
| set { _skipcncheck = value; } | |
| } | |
| private bool _skipcncheck; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "SkipRevocation". | |
| /// Indicates that certificate common name (CN) of the server need not match the | |
| /// hostname of the server. Used only in remote operations using https. This | |
| /// option should only be used for trusted machines. | |
| /// </summary> | |
| [] | |
| public SwitchParameter SkipRevocationCheck | |
| { | |
| get { return _skiprevocationcheck; } | |
| set { _skiprevocationcheck = value; } | |
| } | |
| private bool _skiprevocationcheck; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "Timeout". | |
| /// Defines the timeout in milliseconds for the wsman operation. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public int OperationTimeout | |
| { | |
| get | |
| { | |
| return _operationtimeout ?? BaseTransportManager.ClientDefaultOperationTimeoutMs; | |
| } | |
| set | |
| { | |
| _operationtimeout = value; | |
| } | |
| } | |
| private int? _operationtimeout; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "UnEncrypted". | |
| /// Specifies that no encryption will be used when doing remote operations over | |
| /// http. Unencrypted traffic is not allowed by default and must be enabled in | |
| /// the local configuration. | |
| /// </summary> | |
| [] | |
| public SwitchParameter NoEncryption | |
| { | |
| get | |
| { | |
| return _noencryption; | |
| } | |
| set | |
| { | |
| _noencryption = value; | |
| } | |
| } | |
| private bool _noencryption; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "UTF16". | |
| /// Indicates the request is encoded in UTF16 format rather than UTF8 format; | |
| /// UTF8 is the default. | |
| /// </summary> | |
| [] | |
| [] | |
| public SwitchParameter UseUTF16 | |
| { | |
| get | |
| { | |
| return _useutf16; | |
| } | |
| set | |
| { | |
| _useutf16 = value; | |
| } | |
| } | |
| private bool _useutf16; | |
| /// <summary> | |
| /// Uses Service Principal Name (SPN) along with the Port number during authentication. | |
| /// </summary> | |
| [] | |
| [] | |
| public SwitchParameter IncludePortInSPN | |
| { | |
| get { return _includePortInSPN; } | |
| set { _includePortInSPN = value; } | |
| } | |
| private bool _includePortInSPN; | |
| /// <summary> | |
| /// Performs initialization of cmdlet execution. | |
| /// </summary> | |
| protected override void BeginProcessing() | |
| { | |
| PSSessionOption result = new PSSessionOption(); | |
| // Begin: WSMan specific options | |
| result.ProxyAccessType = this.ProxyAccessType; | |
| result.ProxyAuthentication = this.ProxyAuthentication; | |
| result.ProxyCredential = this.ProxyCredential; | |
| result.SkipCACheck = this.SkipCACheck; | |
| result.SkipCNCheck = this.SkipCNCheck; | |
| result.SkipRevocationCheck = this.SkipRevocationCheck; | |
| if (_operationtimeout.HasValue) | |
| { | |
| result.OperationTimeout = TimeSpan.FromMilliseconds(_operationtimeout.Value); | |
| } | |
| result.NoEncryption = this.NoEncryption; | |
| result.UseUTF16 = this.UseUTF16; | |
| result.IncludePortInSPN = this.IncludePortInSPN; | |
| // End: WSMan specific options | |
| if (_maximumRedirection.HasValue) | |
| { | |
| result.MaximumConnectionRedirectionCount = this.MaximumRedirection; | |
| } | |
| result.NoCompression = this.NoCompression.IsPresent; | |
| result.NoMachineProfile = this.NoMachineProfile.IsPresent; | |
| result.MaximumReceivedDataSizePerCommand = _maxRecvdDataSizePerCommand; | |
| result.MaximumReceivedObjectSize = _maxRecvdObjectSize; | |
| if (this.Culture != null) | |
| { | |
| result.Culture = this.Culture; | |
| } | |
| if (this.UICulture != null) | |
| { | |
| result.UICulture = this.UICulture; | |
| } | |
| if (_openTimeout.HasValue) | |
| { | |
| result.OpenTimeout = TimeSpan.FromMilliseconds(_openTimeout.Value); | |
| } | |
| if (_cancelTimeout.HasValue) | |
| { | |
| result.CancelTimeout = TimeSpan.FromMilliseconds(_cancelTimeout.Value); | |
| } | |
| if (_idleTimeout.HasValue) | |
| { | |
| result.IdleTimeout = TimeSpan.FromMilliseconds(_idleTimeout.Value); | |
| } | |
| result.OutputBufferingMode = OutputBufferingMode; | |
| result.MaxConnectionRetryCount = MaxConnectionRetryCount; | |
| if (this.ApplicationArguments != null) | |
| { | |
| result.ApplicationArguments = this.ApplicationArguments; | |
| } | |
| this.WriteObject(result); | |
| } | |
| } | |
| } | |