Gets or sets a value that indicates whether the executable supports shell processing, using shell commands that automatically enable the correct application, identified by path type. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As ExecutableDescription
Dim value As Boolean

value = instance.SupportShellProcessing

instance.SupportShellProcessing = value

Syntax

Visual Basic
<XmlAttributeAttribute("UseShellProcessing")> _
<DefaultValueAttribute(True)> _
Public Property SupportShellProcessing As Boolean
C#
[XmlAttributeAttribute("UseShellProcessing")] 
[DefaultValueAttribute(true)] 
public bool SupportShellProcessing { get; set; }
C++
[XmlAttributeAttribute(L"UseShellProcessing")] 
[DefaultValueAttribute(true)] 
public:
property bool SupportShellProcessing {
		bool get ();
		void set (bool value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public boolean get_SupportShellProcessing ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_SupportShellProcessing (boolean value)
JScript
DebuggerStepThroughAttribute 
public function get SupportShellProcessing () : boolean

DebuggerStepThroughAttribute 
public function set SupportShellProcessing (value : boolean)

Property Value

true if shell processing is supported; otherwise false.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also