VMware Cloud Community
platforminc
Enthusiast
Enthusiast

Urgent help - I cannot get results out from an external script

Hi All.

I have a PS script which runs on an Script server and targets remote machines. Everything works fine, however the issue i am having is that I cannot get the output from my script back. I have tried several ways to do this, the closest thing I have so far is to use the getXML method, it dumps out a lot of XML but all I need is just the filename which my powershell script returns.

I would be grateful if anyone can explain to me how to do this correctly, I will need to do this a lot in the course of my work, sometimes my Ps file will be expected to return multiple values etc, but most of the time it will be a single value.

[2019-05-22 23:23:29.689] [I] Using PowerShell Aruments '-Servername xxxxxx -config_dir C:\TEMP -instance_no 02 -type TEST -admin_login xxxxxxxxxxxxxx -collation SQL_Latin1_General_CP1_CI_AS -sql_account "NT AUTHORITY\SYSTEM" -install_dir 😧 -sql_components "SQLENGINE,REPLICATION" -sql_dir H:\DATA01 -log_dir F:\LOG0 -backup_dir E:\BACKUPS -tempdb_dir X:\DIR'.

[2019-05-22 23:23:41.522] [I]

IsPublic IsSerial Name                                     BaseType                                                 

-------- -------- ----                                     --------                                                 

True     False    CmdletBindingAttribute                   System.Management.Automation.CmdletCommonMetadataAttribute

LastWriteTime  : 22/05/2019 23:23:39

Length         : 1196

Name           : ServerName_SQL_Configuration_File_2019_05_22_11_23.ini

PSComputerName : ServerName

C:\TEMP\ServerName_SQL_Configuration_File_2019_05_22_11_23.ini

The above is the output when I run the workflow.

The bit my Ps script returns is C:\TEMP\ServerName_SQL_Configuration_File_2019_05_22_11_23.ini and this is what I want to capture into a variable. and pass onto another workflow

Capture.PNG

Reply
0 Kudos
23 Replies
daphnissov
Immortal
Immortal

You already have a discussion here which predates this one and in which you're receiving help. This looks to be the exact same question.

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

Does anyone have any solution to my problem please. I find this website easier to use as I can easily add screenshots etc.

Reply
0 Kudos
eoinbyrne
Expert
Expert

To be honest, if the value I want is simple, for things like this I often just do the following in the PS script to write the output into the script transcript/printstream

# write out the value

$value = "** The value **";

Write-Host "The value I want is HERE --> $value";

I'll often use some marker text like  the above so that I can regex/string search for the line I want

In vRO then you can do this

var outcome = session.invokeScript(dataFileCommand);

var hostOutput = outcome.getHostOutput();

hostOuput now contains the content of the printstream from the script invocation. This will include EVERYTHING that was printed to console on the remote PS session (which is why I use the marker text approach to make sure my Regex only hits once). NOTE if the PS invocation fails then hostOutput will be NULL here so you would have to treat that as a failure.

If you need complex objects as returns or you want the exit code/return code of the script then the XML/JSON approach is probably the best but I've also used the printstream to get JSON back from the PS script without trouble.

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

Thanks for the useful reply.

One of the issues that I have found is that the way in which I am calling my extenal powershell script means that i am not using a session.

Instead what I do is manage remote credentials from my Ps script.

Please kindly open my workflow if you can.

The piece of code below, where it says session.invokeScript. This is not how I call my script files. I do not have a session defined also. IS it possible to get result value back using the method in which I am using. Also, If I have to convert to the session method, how would I do that ?

var outcome = session.invokeScript(dataFileCommand);

var hostOutput = outcome.getHostOutput();

Reply
0 Kudos
eoinbyrne
Expert
Expert

OK, I understand now - you're using the OOTB workflow and it only gives the PsResultObject return

The below is an example of using the session approach

function findIPAddressInHostOutput(output, matchPos)

{

// Use this Regex to trap the first available IP address in the given log output

var ipExpr = /\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/g;

var matches = output.match(ipExpr);

// Check if we got enough matches

if(matches != null && matches.length >= matchPos)

{

// take the match found at the requested match position

System.log("Found IP address : " + matches[matchPos] + " in DHCP script output..");

return matches[matchPos];

}

else

{

System.log("Not enough IP address matches in the output to satisfy match @ " + matchPos);

throw "Failed to locate IP address in server output!";

}

}

System.log("Executing DHCP Reservation script on " + poshHost.name);

// munge the MAC address first - remove all ':' characters

var scriptMac = inputs.get("MAC_ADDRESS");

scriptMac = scriptMac.replace(/:/g, "");

System.log("MAC address for script is " + scriptMac);

var dhcpScript = inputs.get("DHCP_SCRIPT");

// create script command line

var cmdLine = dhcpScript;

cmdLine = cmdLine + " -hostname \"" + inputs.get("HOSTNAME") + "\"";

cmdLine = cmdLine + " -macAddress \"" + scriptMac + "\"";

cmdLine = cmdLine + " -dhcpScope \"" + inputs.get("SCOPE_NAME") + "\"";

cmdLine = cmdLine + " -scopeStart \"" + inputs.get("SCOPE_START") + "\"";

cmdLine = cmdLine + " -scopeEnd \"" + inputs.get("SCOPE_END") + "\"";

cmdLine = cmdLine + " -ipTemplate \"" + inputs.get("IP_TEMPLATE") + "\"";

System.log("Generated command line is\n:" + cmdLine + "\n");

// now ready to proceed

System.log("Acquiring lock for DHCP PowerShell system...");

var lockData = System.getModule("com.triangle.dhcpreservation").getLockOwnerData();

LockingSystem.lockAndWait(lockData.lockName, lockData.lockOwner);

var session;

var scriptOutcomeData = {};

try

{

System.log("Lock acquired - proceeding...");

session = poshHost.openSession();

System.log("Opened session " + session.getSessionId());

var outcome = session.invokeScript(cmdLine);

System.log("Host output was :\n" + outcome.getHostOutput());

System.log("Invocation state was :\n" + outcome.getInvocationState());

if(outcome != null && outcome.getInvocationState() == "Completed")

{

var hostOutput = outcome.getHostOutput();

scriptOutcomeData.hostname = inputs.get("HOSTNAME");

scriptOutcomeData.ipAddress = findIPAddressInHostOutput(hostOutput, 1);

}

else

{

// some sort of error or problem

System.log("Script invocation FAILED!");

var errorMessage;

if(outcome != null)

{

var errors = outcome.getErrors();

errorMessage = "Errors thrown by script invocation! : ";

for each(var msg in errors)

{

errorMessage = errorMessage + msg + "\n";

}

}

else

{

errorMessage = "Script invocation FAILED and returned NO OUTCOME!!";

}

throw errorMessage;

}

return scriptOutcomeData;

}

finally

{

if(session)

{

poshHost.closeSession(session.getSessionId());

}

System.log("Releasing lock for DHCP PowerShell system...");

LockingSystem.unlock(lockData.lockName, lockData.lockOwner);

System.log("Lock released!");

}

Reply
0 Kudos
eoinbyrne
Expert
Expert

Formatting / indentation went wonky there for some reason - copy/paste to a decent editor and then use beautify to see it properly

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

Thanks for the reply.

How can i get results from the output of PsResultObject  ?

I am also looking at a way of using the other method as that method seems popular with getting results back, i am just struggling with the sessions.

Reply
0 Kudos
eoinbyrne
Expert
Expert

This is the class spec

pastedImage_0.png

You get the result as you've been doing I guess. If I were doing this I'd probably use "getAsJson()" and dump the content to the log like this

System.log(JSON.stringify(result.getAsJson(), null, 2));

The simplest way to figure out where your info is in the object is to do this and inspect the object. You can use Online JSON Viewer  to see the structure (or Notepad++ has a good JSON viewer plugin too)

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

Added the below to the script task.

System.log(JSON.stringify(output.getAsJson(),null,2));

I got a large dump of data, within it I can see the value that i am after however the json viewer online is saying that my format is invalid.

Reply
0 Kudos
eoinbyrne
Expert
Expert

The valid JSON in the vRO client log is only the bit from this character "{" to this one "}"

If you include any other parts of the text you'll get this problem

i.e, don't include the bits with the strikethrough here

pastedImage_0.png

Or, change the log line for JSON.stringify to this so it's easier to identify

System.log("\n" + JSON.stringify(obj, null, 2) + "\n");

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

Added the below

System.log("\n" + JSON.stringify(output, null, 2) + "\n");

Results just said

undefined.

Reply
0 Kudos
eoinbyrne
Expert
Expert

System.log("\n" + JSON.stringify(output.getAsJson(), null, 2) + "\n");

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

Thanks, the below is what I get back.

"{\"Objs\":{\"xmlns\":\"http://schemas.microsoft.com/powershell/2004/04\",\"Version\":\"1.1.0.1\",\"Obj\":{\"TN\":{\"T\":[\"System.Object[]\",\"System.Array\",\"System.Object\"],\"RefId\":0},\"RefId\":0,\"LST\":{\"Obj\":[{\"TN\":{\"T\":[\"System.RuntimeType\",\"System.Reflection.TypeInfo\",\"System.Type\",\"System.Reflection.MemberInfo\",\"System.Object\"],\"RefId\":1},\"RefId\":1,\"ToString\":\"System.Management.Automation.CmdletBindingAttribute\",\"Props\":{\"Nil\":[{\"N\":\"DeclaringType\"},{\"N\":\"ReflectedType\"},{\"N\":\"TypeInitializer\"}],\"Ref\":[{\"RefId\":1,\"N\":\"UnderlyingSystemType\"},{\"RefId\":13,\"N\":\"GenericTypeParameters\"},{\"RefId\":15,\"N\":\"DeclaredEvents\"},{\"RefId\":13,\"N\":\"GenericTypeArguments\"}],\"B\":[{\"N\":\"IsEnum\",\"content\":false},{\"N\":\"IsSecurityCritical\",\"content\":true},{\"N\":\"IsSecuritySafeCritical\",\"content\":false},{\"N\":\"IsSecurityTransparent\",\"content\":false},{\"N\":\"IsGenericTypeDefinition\",\"content\":false},{\"N\":\"IsGenericParameter\",\"content\":false},{\"N\":\"IsGenericType\",\"content\":false},{\"N\":\"IsConstructedGenericType\",\"content\":false},{\"N\":\"ContainsGenericParameters\",\"content\":false},{\"N\":\"IsNested\",\"content\":false},{\"N\":\"IsVisible\",\"content\":true},{\"N\":\"IsNotPublic\",\"content\":false},{\"N\":\"IsPublic\",\"content\":true},{\"N\":\"IsNestedPublic\",\"content\":false},{\"N\":\"IsNestedPrivate\",\"content\":false},{\"N\":\"IsNestedFamily\",\"content\":false},{\"N\":\"IsNestedAssembly\",\"content\":false},{\"N\":\"IsNestedFamANDAssem\",\"content\":false},{\"N\":\"IsNestedFamORAssem\",\"content\":false},{\"N\":\"IsAutoLayout\",\"content\":true},{\"N\":\"IsLayoutSequential\",\"content\":false},{\"N\":\"IsExplicitLayout\",\"content\":false},{\"N\":\"IsClass\",\"content\":true},{\"N\":\"IsInterface\",\"content\":false},{\"N\":\"IsValueType\",\"content\":false},{\"N\":\"IsAbstract\",\"content\":false},{\"N\":\"IsSealed\",\"content\":false},{\"N\":\"IsSpecialName\",\"content\":false},{\"N\":\"IsImport\",\"content\":false},{\"N\":\"IsSerializable\",\"content\":false},{\"N\":\"IsAnsiClass\",\"content\":true},{\"N\":\"IsUnicodeClass\",\"content\":false},{\"N\":\"IsAutoClass\",\"content\":false},{\"N\":\"IsArray\",\"content\":false},{\"N\":\"IsByRef\",\"content\":false},{\"N\":\"IsPointer\",\"content\":false},{\"N\":\"IsPrimitive\",\"content\":false},{\"N\":\"IsCOMObject\",\"content\":false},{\"N\":\"HasElementType\",\"content\":false},{\"N\":\"IsContextful\",\"content\":false},{\"N\":\"IsMarshalByRef\",\"content\":false}],\"S\":[{\"N\":\"FullName\",\"content\":\"System.Management.Automation.CmdletBindingAttribute\"},{\"N\":\"AssemblyQualifiedName\",\"content\":\"System.Management.Automation.CmdletBindingAttribute, System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"},{\"N\":\"Namespace\",\"content\":\"System.Management.Automation\"},{\"N\":\"Name\",\"content\":\"CmdletBindingAttribute\"}],\"Obj\":[{\"TN\":{\"T\":[\"System.Reflection.RuntimeModule\",\"System.Reflection.Module\",\"System.Object\"],\"RefId\":2},\"RefId\":2,\"ToString\":\"System.Management.Automation.dll\",\"Props\":{\"S\":[{\"N\":\"FullyQualifiedName\",\"content\":\"C:\\\\Windows\\\\Microsoft.Net\\\\assembly\\\\GAC_MSIL\\\\System.Management.Automation\\\\v4.0_3.0.0.0__31bf3856ad364e35\\\\System.Management.Automation.dll\"},{\"N\":\"ScopeName\",\"content\":\"System.Management.Automation.dll\"},{\"N\":\"Name\",\"content\":\"System.Management.Automation.dll\"},{\"N\":\"Assembly\",\"content\":\"System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"},{\"N\":\"ModuleHandle\",\"content\":\"System.ModuleHandle\"}],\"Obj\":{\"TN\":{\"T\":[\"System.Collections.ObjectModel.ReadOnlyCollection`1[[System.Reflection.CustomAttributeData, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\",\"System.Object\"],\"RefId\":3},\"RefId\":3,\"LST\":{\"S\":\"[System.Security.UnverifiableCodeAttribute()]\"},\"N\":\"CustomAttributes\"},\"G\":{\"N\":\"ModuleVersionId\",\"content\":\"fa5a74f6-cd33-4222-8352-b78f7a4f8020\"},\"I32\":[{\"N\":\"MDStreamVersion\",\"content\":131072},{\"N\":\"MetadataToken\",\"content\":1}]},\"N\":\"Module\"},{\"TN\":{\"T\":[\"System.Reflection.RuntimeAssembly\",\"System.Reflection.Assembly\",\"System.Object\"],\"RefId\":4},\"RefId\":4,\"ToString\":\"System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\",\"Props\":{\"Nil\":{\"N\":\"EntryPoint\"},\"Ref\":{\"RefId\":2,\"N\":\"ManifestModule\"},\"B\":[{\"N\":\"ReflectionOnly\",\"content\":false},{\"N\":\"GlobalAssemblyCache\",\"content\":true},{\"N\":\"IsDynamic\",\"content\":false},{\"N\":\"IsFullyTrusted\",\"content\":true}],\"S\":[{\"N\":\"CodeBase\",\"content\":\"file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Management.Automation/v4.0_3.0.0.0__31bf3856ad364e35/System.Management.Automation.dll\"},{\"N\":\"FullName\",\"content\":\"System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"},{\"N\":\"SecurityRuleSet\",\"content\":\"Level2\"},{\"N\":\"Location\",\"content\":\"C:\\\\Windows\\\\Microsoft.Net\\\\assembly\\\\GAC_MSIL\\\\System.Management.Automation\\\\v4.0_3.0.0.0__31bf3856ad364e35\\\\System.Management.Automation.dll\"},{\"N\":\"ImageRuntimeVersion\",\"content\":\"v4.0.30319\"},{\"N\":\"EscapedCodeBase\",\"content\":\"file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Management.Automation/v4.0_3.0.0.0__31bf3856ad364e35/System.Management.Automation.dll\"}],\"Obj\":[{\"TN\":{\"T\":[\"System.RuntimeType[]\",\"System.Array\",\"System.Object\"],\"RefId\":5},\"RefId\":5,\"LST\":{\"Ref\":{\"RefId\":1},\"S\":[\"<>f__AnonymousType0`6[<Interactive>j__TPar,<ProfileLoadTime>j__TPar,<ReadyForInputTime>j__TPar,<Is32Bit>j__TPar,<PSVersion>j__TPar,<ProcessName>j__TPar]\",\"<>f__AnonymousType1`5[<InteractiveCommandCount>j__TPar,<TabCompletionTimes>j__TPar,<TabCompletionCounts>j__TPar,<TabCompletionResultCounts>j__TPar,<SessionTime>j__TPar]\",\"<>f__AnonymousType2`4[<TopicCount>j__TPar,<TimeInMS>j__TPar,<RanUpdateHelp>j__TPar,<HelpTopic>j__TPar]\",\"<>f__AnonymousType3`2[<TimeInMS>j__TPar,<CommandNames>j__TPar]\",\"<>f__AnonymousType4`3[<Time>j__TPar,<Count>j__TPar,<Type>j__TPar]\",\"<>f__AnonymousType5`2[<ModuleName>j__TPar,<Version>j__TPar]\",\"<>f__AnonymousType6`2[<Constrained>j__TPar,<Transcripting>j__TPar]\",\"<>f__AnonymousType7`2[<Type>j__TPar,<Configuration>j__TPar]\",\"<>f__AnonymousType8`22[<Hash>j__TPar,<IsDotSourced>j__TPar,<ScriptFileType>j__TPar,<Length>j__TPar,<LineCount>j__TPar,<CompileTimeInMS>j__TPar,<StatementCount>j__TPar,<CountOfCommands>j__TPar,<CountOfDotSourcedCommands>j__TPar,<MaxArrayLength>j__TPar,<ArrayLiteralCount>j__TPar,<ArrayLiteralCumulativeSize>j__TPar,<MaxStringLength>j__TPar,<StringLiteralCount>j__TPar,<StringLiteralCumulativeSize>j__TPar,<MaxPipelineDepth>j__TPar,<PipelineCount>j__TPar,<FunctionCount>j__TPar,<ScriptBlockCount>j__TPar,<ClassCount>j__TPar,<EnumCount>j__TPar,<CommandsCalled>j__TPar]\",\"<>f__AnonymousType9`2[<entry>j__TPar,<completionText>j__TPar]\",\"<>f__AnonymousType10`2[<cacheEntry>j__TPar,<splittedName>j__TPar]\",\"<>f__AnonymousType11`2[<<>h__TransparentIdentifier0>j__TPar,<cachedClassName>j__TPar]\",\"<>f__AnonymousType12`2[<<>h__TransparentIdentifier1>j__TPar,<cachedModuleName>j__TPar]\",\"<>f__AnonymousType13`2[<<>h__TransparentIdentifier2>j__TPar,<cachedResourceName>j__TPar]\",\"<>F{00000008}`5[T1,T2,T3,T4,TResult]\",\"Authenticode\",\"CatalogStrings\",\"AutomationExceptions\",\"CimInstanceTypeAdapterResources\",\"CmdletizationCoreResources\",\"CommandBaseStrings\",\"Credential\",\"CredentialAttributeStrings\",\"ConsoleInfoErrorStrings\",\"CredUI\",\"DescriptionsStrings\",\"DiscoveryExceptions\",\"EnumExpressionEvaluatorStrings\",\"ErrorCategoryStrings\",\"ErrorPackage\",\"ExtendedTypeSystem\",\"EventingResources\",\"FileSystemProviderStrings\",\"FormatAndOutXmlLoadingStrings\",\"GetErrorText\",\"HostInterfaceExceptionsStrings\",\"HelpDisplayStrings\",\"HistoryStrings\",\"InternalHostStrings\",\"InternalHostUserInterfaceStrings\",\"Logging\",\"Metadata\",\"MshSignature\",\"ParameterBinderStrings\",\"ParserStrings\",\"InternalCommandStrings\",\"PathUtilsStrings\",\"PipelineStrings\",\"PowerShellStrings\",\"ProgressRecordStrings\",\"ProviderBaseSecurity\",\"ProxyCommandStrings\",\"PSCommandStrings\",\"PSDataBufferStrings\",\"PSListModifierStrings\",\"RunspaceStrings\",\"RunspaceInit\",\"RunspacePoolStrings\",\"AuthorizationManagerBase\",\"SecuritySupportStrings\",\"Serialization\",\"SessionStateProviderBaseStrings\",\"SessionStateStrings\",\"SuggestionStrings\",\"MiniShellErrors\",\"MshHostRawUserInterfaceStrings\",\"MshSnapInCmdletResources\",\"MshSnapinInfo\",\"TypesXmlStrings\",\"TransactionStrings\",\"WildcardPatternStrings\",\"RemotingErrorIdStrings\",\"DebuggerStrings\",\"Modules\",\"FormatAndOut_MshParameter\",\"FormatAndOut_format_x005F_xxx\",\"FormatAndOut_out_x005F_xxx\",\"NativeCP\",\"RegistryProviderStrings\",\"TabCompletionStrings\",\"HelpErrors\",\"EtwLoggingStrings\",\"CoreMshSnapInResources\",\"ErrorPackageRemoting\",\"Microsoft.CodeAnalysis.GlobalAssemblyCache\",\"Microsoft.CodeAnalysis.FusionAssemblyIdentity\",\"Microsoft.PowerShell.ToStringCodeMethods\",\"Microsoft.PowerShell.AdapterCodeMethods\",\"Microsoft.PowerShell.DefaultHost\",\"Microsoft.PowerShell.VistaCultureInfo\",\"Microsoft.PowerShell.NativeCultureResolver\",\"Microsoft.PowerShell.DeserializingTypeConverter\",\"Microsoft.PowerShell.ExecutionPolicy\",\"Microsoft.PowerShell.ExecutionPolicyScope\",\"Microsoft.PowerShell.PSAuthorizationManager\",\"Microsoft.PowerShell.SecureStringHelper\",\"Microsoft.PowerShell.EncryptionResult\",\"Microsoft.PowerShell.PSCorePSSnapIn\",\"Microsoft.PowerShell.DesiredStateConfiguration.ArgumentToConfigurationDataTransformationAttribute\",\"Microsoft.PowerShell.DesiredStateConfiguration.CimDSCParser\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscRemoteOperationsClass\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCacheEntry\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache\",\"Microsoft.PowerShell.Cim.CimInstanceAdapter\",\"Microsoft.PowerShell.Cmdletization.MethodInvocationInfo\",\"Microsoft.PowerShell.Cmdletization.MethodParameterBindings\",\"Microsoft.PowerShell.Cmdletization.MethodParameter\",\"Microsoft.PowerShell.Cmdletization.MethodParametersCollection\",\"Microsoft.PowerShell.Cmdletization.BehaviorOnNoMatch\",\"Microsoft.PowerShell.Cmdletization.QueryBuilder\",\"Microsoft.PowerShell.Cmdletization.CmdletAdapter`1[TObjectInstance]\",\"Microsoft.PowerShell.Cmdletization.EnumWriter\",\"Microsoft.PowerShell.Cmdletization.ScriptWriter\",\"Microsoft.PowerShell.Cmdletization.Xml.PowerShellMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.ClassMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.ClassMetadataInstanceCmdlets\",\"Microsoft.PowerShell.Cmdletization.Xml.GetCmdletParameters\",\"Microsoft.PowerShell.Cmdletization.Xml.PropertyMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.TypeMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.Association\",\"Microsoft.PowerShell.Cmdletization.Xml.AssociationAssociatedInstance\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForGetCmdletFilteringParameter\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForGetCmdletParameter\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataValidateCount\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataValidateLength\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataValidateRange\",\"Microsoft.PowerShell.Cmdletization.Xml.ObsoleteAttributeMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForInstanceMethodParameter\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForStaticMethodParameter\",\"Microsoft.PowerShell.Cmdletization.Xml.QueryOption\",\"Microsoft.PowerShell.Cmdletization.Xml.GetCmdletMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonCmdletMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.ConfirmImpact\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticCmdletMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticCmdletMetadataCmdletMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticMethodMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticMethodParameterMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletOutputMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonMethodParameterMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.InstanceMethodParameterMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonMethodMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonMethodMetadataReturnValue\",\"Microsoft.PowerShell.Cmdletization.Xml.InstanceMethodMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.InstanceCmdletMetadata\",\"Microsoft.PowerShell.Cmdletization.Xml.PropertyQuery\",\"Microsoft.PowerShell.Cmdletization.Xml.WildcardablePropertyQuery\",\"Microsoft.PowerShell.Cmdletization.Xml.ItemsChoiceType\",\"Microsoft.PowerShell.Cmdletization.Xml.ClassMetadataData\",\"Microsoft.PowerShell.Cmdletization.Xml.EnumMetadataEnum\",\"Microsoft.PowerShell.Cmdletization.Xml.EnumMetadataEnumValue\",\"Microsoft.PowerShell.Cmdletization.Xml.XmlSerializationWriter1\",\"Microsoft.PowerShell.Cmdletization.Xml.XmlSerializationReader1\",\"Microsoft.PowerShell.Cmdletization.Xml.XmlSerializer1\",\"Microsoft.PowerShell.Cmdletization.Xml.PowerShellMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.ClassMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.ClassMetadataInstanceCmdletsSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.GetCmdletParametersSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.PropertyMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.TypeMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.AssociationSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.AssociationAssociatedInstanceSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForGetCmdletParameterSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForGetCmdletFilteringParameterSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataValidateCountSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataValidateLengthSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataValidateRangeSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.ObsoleteAttributeMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForInstanceMethodParameterSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletParameterMetadataForStaticMethodParameterSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.QueryOptionSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.GetCmdletMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonCmdletMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.ConfirmImpactSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticCmdletMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticCmdletMetadataCmdletMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonMethodMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticMethodMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonMethodParameterMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.StaticMethodParameterMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CmdletOutputMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.InstanceMethodParameterMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.CommonMethodMetadataReturnValueSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.InstanceMethodMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.InstanceCmdletMetadataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.PropertyQuerySerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.WildcardablePropertyQuerySerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.ItemsChoiceTypeSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.ClassMetadataDataSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.EnumMetadataEnumSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.EnumMetadataEnumValueSerializer\",\"Microsoft.PowerShell.Cmdletization.Xml.XmlSerializerContract\",\"Microsoft.PowerShell.Cmdletization.Cim.WildcardPatternToCimQueryParser\",\"Microsoft.PowerShell.Telemetry.Internal.TelemetryAPI\",\"Microsoft.PowerShell.Telemetry.Internal.ScriptBlockTelemetry\",\"Microsoft.PowerShell.Telemetry.Internal.IHostProvidesTelemetryData\",\"Microsoft.PowerShell.Commands.GetCommandCommand\",\"Microsoft.PowerShell.Commands.NounArgumentCompleter\",\"Microsoft.PowerShell.Commands.ExportModuleMemberCommand\",\"Microsoft.PowerShell.Commands.GetModuleCommand\",\"Microsoft.PowerShell.Commands.PSEditionArgumentCompleter\",\"Microsoft.PowerShell.Commands.ImportModuleCommand\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase\",\"Microsoft.PowerShell.Commands.BinaryAnalysisResult\",\"Microsoft.PowerShell.Commands.ModuleSpecification\",\"Microsoft.PowerShell.Commands.ModuleSpecificationComparer\",\"Microsoft.PowerShell.Commands.NewModuleCommand\",\"Microsoft.PowerShell.Commands.NewModuleManifestCommand\",\"Microsoft.PowerShell.Commands.RemoveModuleCommand\",\"Microsoft.PowerShell.Commands.TestModuleManifestCommand\",\"Microsoft.PowerShell.Commands.ObjectEventRegistrationBase\",\"Microsoft.PowerShell.Commands.GetHelpCommand\",\"Microsoft.PowerShell.Commands.GetHelpCodeMethods\",\"Microsoft.PowerShell.Commands.HelpCategoryInvalidException\",\"Microsoft.PowerShell.Commands.HelpNotFoundException\",\"Microsoft.PowerShell.Commands.UpdatableHelpCommandBase\",\"Microsoft.PowerShell.Commands.UpdateHelpCommand\",\"Microsoft.PowerShell.Commands.SaveHelpCommand\",\"Microsoft.PowerShell.Commands.ArgumentToModuleTransformationAttribute\",\"Microsoft.PowerShell.Commands.HistoryInfo\",\"Microsoft.PowerShell.Commands.History\",\"Microsoft.PowerShell.Commands.GetHistoryCommand\",\"Microsoft.PowerShell.Commands.InvokeHistoryCommand\",\"Microsoft.PowerShell.Commands.AddHistoryCommand\",\"Microsoft.PowerShell.Commands.ClearHistoryCommand\",\"Microsoft.PowerShell.Commands.RegisterPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.PSSessionConfigurationCommandUtilities\",\"Microsoft.PowerShell.Commands.PSSessionConfigurationCommandBase\",\"Microsoft.PowerShell.Commands.UnregisterPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.GetPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.SetPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.EnablePSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.DisablePSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.EnablePSRemotingCommand\",\"Microsoft.PowerShell.Commands.DisablePSRemotingCommand\",\"Microsoft.PowerShell.Commands.GetPSSessionCapabilityCommand\",\"Microsoft.PowerShell.Commands.InvokeCommandCommand\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand\",\"Microsoft.PowerShell.Commands.OpenRunspaceOperation\",\"Microsoft.PowerShell.Commands.DisconnectPSSessionCommand\",\"Microsoft.PowerShell.Commands.ConnectPSSessionCommand\",\"Microsoft.PowerShell.Commands.QueryRunspaces\",\"Microsoft.PowerShell.Commands.SessionFilterState\",\"Microsoft.PowerShell.Commands.ReceivePSSessionCommand\",\"Microsoft.PowerShell.Commands.OutTarget\",\"Microsoft.PowerShell.Commands.GetPSSessionCommand\",\"Microsoft.PowerShell.Commands.RunspaceParameterSet\",\"Microsoft.PowerShell.Commands.RemotingCommandUtil\",\"Microsoft.PowerShell.Commands.RemovePSSessionCommand\",\"Microsoft.PowerShell.Commands.StartJobCommand\",\"Microsoft.PowerShell.Commands.PSRemotingCmdlet\",\"Microsoft.PowerShell.Commands.PSRemotingBaseCmdlet\",\"Microsoft.PowerShell.Commands.PSExecutionCmdlet\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet\",\"Microsoft.PowerShell.Commands.ExecutionCmdletHelper\",\"Microsoft.PowerShell.Commands.ExecutionCmdletHelperRunspace\",\"Microsoft.PowerShell.Commands.ExecutionCmdletHelperComputerName\",\"Microsoft.PowerShell.Commands.PathResolver\",\"Microsoft.PowerShell.Commands.GetJobCommand\",\"Microsoft.PowerShell.Commands.ReceiveJobCommand\",\"Microsoft.PowerShell.Commands.OutputProcessingState\",\"Microsoft.PowerShell.Commands.StopJobCommand\",\"Microsoft.PowerShell.Commands.WaitJobCommand\",\"Microsoft.PowerShell.Commands.JobCmdletBase\",\"Microsoft.PowerShell.Commands.RemoveJobCommand\",\"Microsoft.PowerShell.Commands.SuspendJobCommand\",\"Microsoft.PowerShell.Commands.ResumeJobCommand\",\"Microsoft.PowerShell.Commands.DebugJobCommand\",\"Microsoft.PowerShell.Commands.EnterPSSessionCommand\",\"Microsoft.PowerShell.Commands.ExitPSSessionCommand\",\"Microsoft.PowerShell.Commands.NewPSSessionOptionCommand\",\"Microsoft.PowerShell.Commands.WSManConfigurationOption\",\"Microsoft.PowerShell.Commands.NewPSTransportOptionCommand\",\"Microsoft.PowerShell.Commands.NewPSSessionConfigurationFileCommand\",\"Microsoft.PowerShell.Commands.NewPSRoleCapabilityFileCommand\",\"Microsoft.PowerShell.Commands.SessionConfigurationUtils\",\"Microsoft.PowerShell.Commands.TestPSSessionConfigurationFileCommand\",\"Microsoft.PowerShell.Commands.EnterPSHostProcessCommand\",\"Microsoft.PowerShell.Commands.ExitPSHostProcessCommand\",\"Microsoft.PowerShell.Commands.GetPSHostProcessInfoCommand\",\"Microsoft.PowerShell.Commands.PSHostProcessInfo\",\"Microsoft.PowerShell.Commands.RegistryProvider\",\"Microsoft.PowerShell.Commands.RegistryProviderSetItemDynamicParameter\",\"Microsoft.PowerShell.Commands.IRegistryWrapper\",\"Microsoft.PowerShell.Commands.RegistryWrapperUtils\",\"Microsoft.PowerShell.Commands.RegistryWrapper\",\"Microsoft.PowerShell.Commands.TransactedRegistryWrapper\",\"Microsoft.PowerShell.Commands.ForEachObjectCommand\",\"Microsoft.PowerShell.Commands.WhereObjectCommand\",\"Microsoft.PowerShell.Commands.SetPSDebugCommand\",\"Microsoft.PowerShell.Commands.SetStrictModeCommand\",\"Microsoft.PowerShell.Commands.FormatXmlWriter\",\"Microsoft.PowerShell.Commands.FormatDefaultCommand\",\"Microsoft.PowerShell.Commands.OutLineOutputCommand\",\"Microsoft.PowerShell.Commands.OutNullCommand\",\"Microsoft.PowerShell.Commands.OutDefaultCommand\",\"Microsoft.PowerShell.Commands.OutHostCommand\",\"Microsoft.PowerShell.Commands.AliasProvider\",\"Microsoft.PowerShell.Commands.AliasProviderDynamicParameters\",\"Microsoft.PowerShell.Commands.EnvironmentProvider\",\"Microsoft.PowerShell.Commands.FileSystemContentReaderWriter\",\"Microsoft.PowerShell.Commands.FileStreamBackReader\",\"Microsoft.PowerShell.Commands.BackReaderEncodingNotSupportedException\",\"Microsoft.PowerShell.Commands.FileSystemProvider\",\"Microsoft.PowerShell.Commands.SafeInvokeCommand\",\"Microsoft.PowerShell.Commands.FileSystemCmdletProviderEncoding\",\"Microsoft.PowerShell.Commands.CopyItemDynamicParameters\",\"Microsoft.PowerShell.Commands.GetChildDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemContentDynamicParametersBase\",\"Microsoft.PowerShell.Commands.FileSystemClearContentDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemContentWriterDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemContentReaderDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemItemProviderDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemProviderGetItemDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemProviderRemoveItemDynamicParameters\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods\",\"Microsoft.PowerShell.Commands.FunctionProvider\",\"Microsoft.PowerShell.Commands.FunctionProviderDynamicParameters\",\"Microsoft.PowerShell.Commands.SessionStateProviderBase\",\"Microsoft.PowerShell.Commands.SessionStateProviderBaseContentReaderWriter\",\"Microsoft.PowerShell.Commands.VariableProvider\",\"Microsoft.PowerShell.Commands.CertificatePurpose\",\"Microsoft.PowerShell.Commands.OpenMode\",\"Microsoft.PowerShell.Commands.PSSnapInCommandBase\",\"Microsoft.PowerShell.Commands.AddPSSnapinCommand\",\"Microsoft.PowerShell.Commands.RemovePSSnapinCommand\",\"Microsoft.PowerShell.Commands.GetPSSnapinCommand\",\"Microsoft.PowerShell.Commands.ConsoleCmdletsBase\",\"Microsoft.PowerShell.Commands.ExportConsoleCommand\",\"Microsoft.PowerShell.Commands.EnumerableExpansionConversion\",\"Microsoft.PowerShell.Commands.Management.TransactedString\",\"Microsoft.PowerShell.Commands.Internal.RemotingErrorResources\",\"Microsoft.PowerShell.Commands.Internal.Buffer\",\"Microsoft.PowerShell.Commands.Internal.SafeRegistryHandle\",\"Microsoft.PowerShell.Commands.Internal.Win32Native\",\"Microsoft.PowerShell.Commands.Internal.SafeProcessHandle\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistry\",\"Microsoft.PowerShell.Commands.Internal.BaseRegistryKeys\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistryKey\",\"Microsoft.PowerShell.Commands.Internal.IKernelTransaction\",\"Microsoft.PowerShell.Commands.Internal.SafeTransactionHandle\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistryAccessRule\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistryAuditRule\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistrySecurity\",\"Microsoft.PowerShell.Commands.Internal.Format.MshParameter\",\"Microsoft.PowerShell.Commands.Internal.Format.NameEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.HashtableEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.CommandParameterDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.ParameterProcessor\",\"Microsoft.PowerShell.Commands.Internal.Format.MshResolvedExpressionParameterAssociation\",\"Microsoft.PowerShell.Commands.Internal.Format.AssociationManager\",\"Microsoft.PowerShell.Commands.Internal.Format.GroupingInfoManager\",\"Microsoft.PowerShell.Commands.Internal.Format.ViewGenerator\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexViewGenerator\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexControlGenerator\",\"Microsoft.PowerShell.Commands.Internal.Format.TraversalInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexViewObjectBrowser\",\"Microsoft.PowerShell.Commands.Internal.Format.ListViewGenerator\",\"Microsoft.PowerShell.Commands.Internal.Format.TableViewGenerator\",\"Microsoft.PowerShell.Commands.Internal.Format.WideViewGenerator\",\"Microsoft.PowerShell.Commands.Internal.Format.DefaultScalarTypes\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatViewManager\",\"Microsoft.PowerShell.Commands.Internal.Format.OutOfBandFormatViewManager\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatErrorManager\",\"Microsoft.PowerShell.Commands.Internal.Format.FormattingCommandLineParameters\",\"Microsoft.PowerShell.Commands.Internal.Format.ShapeSpecificParameters\",\"Microsoft.PowerShell.Commands.Internal.Format.TableSpecificParameters\",\"Microsoft.PowerShell.Commands.Internal.Format.WideSpecificParameters\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexSpecificParameters\",\"Microsoft.PowerShell.Commands.Internal.Format.ExpressionEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.AligmentEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.WidthEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.LabelEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatStringDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.BooleanEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatParameterDefinitionKeys\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatGroupByParameterDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatParameterDefinitionBase\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatTableParameterDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatListParameterDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatWideParameterDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatObjectParameterDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.InnerFormatShapeCommandBase\",\"Microsoft.PowerShell.Commands.Internal.Format.InnerFormatShapeCommand\",\"Microsoft.PowerShell.Commands.Internal.Format.OuterFormatShapeCommandBase\",\"Microsoft.PowerShell.Commands.Internal.Format.OuterFormatTableAndListBase\",\"Microsoft.PowerShell.Commands.Internal.Format.OuterFormatTableBase\",\"Microsoft.PowerShell.Commands.Internal.Format.ColumnWidthManager\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatObjectDeserializer\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatInfoDataClassFactory\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatInfoDataListDeserializer`1[T]\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatInfoData\",\"Microsoft.PowerShell.Commands.Internal.Format.ControlInfoData\",\"Microsoft.PowerShell.Commands.Internal.Format.StartData\",\"Microsoft.PowerShell.Commands.Internal.Format.AutosizeInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatStartData\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatEntryData\",\"Microsoft.PowerShell.Commands.Internal.Format.WideViewHeaderInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.TableHeaderInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.TableColumnInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.RawTextFormatEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.FreeFormatEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.ListViewEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.ListViewField\",\"Microsoft.PowerShell.Commands.Internal.Format.TableRowEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.WideViewEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatTextField\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatPropertyField\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.FrameInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.OutputGroupQueue\",\"Microsoft.PowerShell.Commands.Internal.Format.FormattedObjectsCache\",\"Microsoft.PowerShell.Commands.Internal.Format.ListWriter\",\"Microsoft.PowerShell.Commands.Internal.Format.TableWriter\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner\",\"Microsoft.PowerShell.Commands.Internal.Format.PacketInfoData\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatEndData\",\"Microsoft.PowerShell.Commands.Internal.Format.GroupStartData\",\"Microsoft.PowerShell.Commands.Internal.Format.GroupEndData\",\"Microsoft.PowerShell.Commands.Internal.Format.ShapeInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.ListViewHeaderInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexViewHeaderInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatEntryInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexViewEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.GroupingEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.PageHeaderEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.PageFooterEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatValue\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatNewLine\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexWriter\",\"Microsoft.PowerShell.Commands.Internal.Format.IndentationManager\",\"Microsoft.PowerShell.Commands.Internal.Format.GetWordsResult\",\"Microsoft.PowerShell.Commands.Internal.Format.StringManipulationHelper\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayCells\",\"Microsoft.PowerShell.Commands.Internal.Format.WriteStreamType\",\"Microsoft.PowerShell.Commands.Internal.Format.LineOutput\",\"Microsoft.PowerShell.Commands.Internal.Format.WriteLineHelper\",\"Microsoft.PowerShell.Commands.Internal.Format.TextWriterLineOutput\",\"Microsoft.PowerShell.Commands.Internal.Format.StreamingTextWriter\",\"Microsoft.PowerShell.Commands.Internal.Format.OutputManagerInner\",\"Microsoft.PowerShell.Commands.Internal.Format.SubPipelineManager\",\"Microsoft.PowerShell.Commands.Internal.Format.TerminatingErrorContext\",\"Microsoft.PowerShell.Commands.Internal.Format.CommandWrapper\",\"Microsoft.PowerShell.Commands.Internal.Format.FrontEndCommandBase\",\"Microsoft.PowerShell.Commands.Internal.Format.ImplementationCommandBase\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayCellsPSHost\",\"Microsoft.PowerShell.Commands.Internal.Format.ConsoleLineOutput\",\"Microsoft.PowerShell.Commands.Internal.Format.PSObjectHelper\",\"Microsoft.PowerShell.Commands.Internal.Format.FormattingError\",\"Microsoft.PowerShell.Commands.Internal.Format.MshExpressionError\",\"Microsoft.PowerShell.Commands.Internal.Format.StringFormatError\",\"Microsoft.PowerShell.Commands.Internal.Format.CreateScriptBlockFromString\",\"Microsoft.PowerShell.Commands.Internal.Format.MshExpressionFactory\",\"Microsoft.PowerShell.Commands.Internal.Format.MshExpressionResult\",\"Microsoft.PowerShell.Commands.Internal.Format.MshExpression\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseLoaderException\",\"Microsoft.PowerShell.Commands.Internal.Format.TooManyErrorsException\",\"Microsoft.PowerShell.Commands.Internal.Format.XmlLoaderLoggerEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.XmlLoaderLogger\",\"Microsoft.PowerShell.Commands.Internal.Format.XmlLoaderBase\",\"Microsoft.PowerShell.Commands.Internal.Format.EnumerableExpansion\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBase\",\"Microsoft.PowerShell.Commands.Internal.Format.DatabaseLoadingInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.DefaultSettingsSection\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatErrorPolicy\",\"Microsoft.PowerShell.Commands.Internal.Format.ShapeSelectionDirectives\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatShape\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatShapeSelectionBase\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatShapeSelectionOnType\",\"Microsoft.PowerShell.Commands.Internal.Format.EnumerableExpansionDirective\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeGroupsSection\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeGroupDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeOrGroupReference\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeReference\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeGroupReference\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatToken\",\"Microsoft.PowerShell.Commands.Internal.Format.TextToken\",\"Microsoft.PowerShell.Commands.Internal.Format.NewLineToken\",\"Microsoft.PowerShell.Commands.Internal.Format.FrameToken\",\"Microsoft.PowerShell.Commands.Internal.Format.FrameInfoDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.ExpressionToken\",\"Microsoft.PowerShell.Commands.Internal.Format.PropertyTokenBase\",\"Microsoft.PowerShell.Commands.Internal.Format.CompoundPropertyToken\",\"Microsoft.PowerShell.Commands.Internal.Format.FieldPropertyToken\",\"Microsoft.PowerShell.Commands.Internal.Format.FieldFormattingDirective\",\"Microsoft.PowerShell.Commands.Internal.Format.ControlBase\",\"Microsoft.PowerShell.Commands.Internal.Format.ControlReference\",\"Microsoft.PowerShell.Commands.Internal.Format.ControlBody\",\"Microsoft.PowerShell.Commands.Internal.Format.ControlDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.ViewDefinitionsSection\",\"Microsoft.PowerShell.Commands.Internal.Format.AppliesTo\",\"Microsoft.PowerShell.Commands.Internal.Format.GroupBy\",\"Microsoft.PowerShell.Commands.Internal.Format.StartGroup\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatControlDefinitionHolder\",\"Microsoft.PowerShell.Commands.Internal.Format.ViewDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatDirective\",\"Microsoft.PowerShell.Commands.Internal.Format.StringResourceReference\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexControlBody\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexControlEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexControlItemDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.ListControlBody\",\"Microsoft.PowerShell.Commands.Internal.Format.ListControlEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.ListControlItemDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.FieldControlBody\",\"Microsoft.PowerShell.Commands.Internal.Format.TextAlignment\",\"Microsoft.PowerShell.Commands.Internal.Format.TableControlBody\",\"Microsoft.PowerShell.Commands.Internal.Format.TableHeaderDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.TableColumnHeaderDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.TableRowDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.TableRowItemDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.WideControlBody\",\"Microsoft.PowerShell.Commands.Internal.Format.WideControlEntryDefinition\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayResourceManagerCache\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseManager\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayCondition\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeMatchItem\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeMatch\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayDataQuery\",\"Microsoft.PowerShell.Commands.Internal.Format.XmlFileLoadInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseLoader\",\"System.Management.Automation.NTVerpVars\",\"System.Management.Automation.ChildItemCmdletProviderIntrinsics\",\"System.Management.Automation.ReturnContainers\",\"System.Management.Automation.ProviderIntrinsics\",\"System.Management.Automation.IDynamicParameters\",\"System.Management.Automation.SwitchParameter\",\"System.Management.Automation.CommandInvocationIntrinsics\",\"System.Management.Automation.PSCmdlet\",\"System.Management.Automation.Cmdlet\",\"System.Management.Automation.ShouldProcessReason\",\"System.Management.Automation.ActionPreference\",\"System.Management.Automation.ConfirmImpact\",\"System.Management.Automation.CommandFactory\",\"System.Management.Automation.CommandParameterInternal\",\"System.Management.Automation.CommandProcessor\",\"System.Management.Automation.CommandProcessorBase\",\"System.Management.Automation.ContentCmdletProviderIntrinsics\",\"System.Management.Automation.DriveManagementIntrinsics\",\"System.Management.Automation.FlagsExpression`1[T]\",\"System.Management.Automation.EnumMinimumDisambiguation\",\"System.Management.Automation.ErrorCategory\",\"System.Management.Automation.ErrorCategoryInfo\",\"System.Management.Automation.ErrorDetails\",\"System.Management.Automation.ErrorRecord\",\"System.Management.Automation.IContainsErrorRecord\",\"System.Management.Automation.IResourceSupplier\",\"System.Management.Automation.InvocationInfo\",\"System.Management.Automation.RemoteCommandInfo\",\"System.Management.Automation.ItemCmdletProviderIntrinsics\",\"System.Management.Automation.CopyContainers\",\"System.Management.Automation.NativeCommand\",\"System.Management.Automation.PathIntrinsics\",\"System.Management.Automation.ProgressRecord\",\"System.Management.Automation.ProgressRecordType\",\"System.Management.Automation.InformationRecord\",\"System.Management.Automation.HostInformationMessage\",\"System.Management.Automation.PropertyCmdletProviderIntrinsics\",\"System.Management.Automation.CmdletProviderManagementIntrinsics\",\"System.Management.Automation.ProxyCommand\",\"System.Management.Automation.SessionState\",\"System.Management.Automation.SessionStateEntryVisibility\",\"System.Management.Automation.IHasSessionStateEntryVisibility\",\"System.Management.Automation.PSLanguageMode\",\"System.Management.Automation.ScriptCommand\",\"System.Management.Automation.ScriptCommandProcessorBase\",\"System.Management.Automation.DlrScriptCommandProcessor\",\"System.Management.Automation.PagingParameters\",\"System.Management.Automation.PSVariableIntrinsics\",\"System.Management.Automation.ICommandRuntime\",\"System.Management.Automation.ICommandRuntime2\",\"System.Management.Automation.MshCommandRuntime\",\"System.Management.Automation.DefaultCommandRuntime\",\"System.Management.Automation.AliasInfo\",\"System.Management.Automation.ApplicationInfo\",\"System.Management.Automation.CmdletInfo\",\"System.Management.Automation.CmdletParameterBinderController\",\"System.Management.Automation.DefaultParameterDictionary\",\"System.Management.Automation.CommandLookupEventArgs\",\"System.Management.Automation.PSModuleAutoLoadingPreference\",\"System.Management.Automation.CommandDiscovery\",\"System.Management.Automation.LookupPathCollection\",\"System.Management.Automation.CommandDiscoveryEventSource\",\"System.Management.Automation.CommandTypes\",\"System.Management.Automation.CommandInfo\",\"System.Management.Automation.PSTypeName\",\"System.Management.Automation.IScriptCommandInfo\",\"System.Management.Automation.CommandPathSearch\",\"System.Management.Automation.CommandSearcher\",\"System.Management.Automation.SearchResolutionOptions\",\"System.Management.Automation.CompiledCommandParameter\",\"System.Management.Automation.ParameterCollectionType\",\"System.Management.Automation.ParameterCollectionTypeInformation\",\"System.Management.Automation.ExternalScriptInfo\",\"System.Management.Automation.ScriptRequiresSyntaxException\",\"System.Management.Automation.PSSnapInSpecification\",\"System.Management.Automation.FilterInfo\",\"System.Management.Automation.FunctionInfo\",\"System.Management.Automation.ConfigurationInfo\",\"System.Management.Automation.ImplementedAsType\",\"System.Management.Automation.DscResourceInfo\",\"System.Management.Automation.DscResourcePropertyInfo\",\"System.Management.Automation.MergedCommandParameterMetadata\",\"System.Management.Automation.MergedCompiledCommandParameter\",\"System.Management.Automation.ParameterBinderAssociation\",\"System.Management.Automation.ParameterBindingFlags\",\"System.Management.Automation.ParameterBinderBase\",\"System.Management.Automation.UnboundParameter\",\"System.Management.Automation.PSBoundParametersDictionary\",\"System.Management.Automation.CommandLineParameters\",\"System.Management.Automation.ParameterBinderController\",\"System.Management.Automation.CommandParameterInfo\",\"System.Management.Automation.CommandParameterSetInfo\",\"System.Management.Automation.ParameterSetPromptingData\",\"System.Management.Automation.ParameterSetSpecificMetadata\",\"System.Management.Automation.PositionalCommandParameter\",\"System.Management.Automation.RuntimeDefinedParameterBinder\",\"System.Management.Automation.RuntimeDefinedParameter\",\"System.Management.Automation.RuntimeDefinedParameterDictionary\",\"System.Management.Automation.ReflectionParameterBinder\",\"System.Management.Automation.ScriptInfo\",\"System.Management.Automation.ScriptParameterBinder\",\"System.Management.Automation.ScriptParameterBinderController\",\"System.Management.Automation.PSSnapinQualifiedName\",\"System.Management.Automation.ParameterSetMetadata\",\"System.Management.Automation.ParameterMetadata\",\"System.Management.Automation.InternalParameterMetadata\",\"System.Management.Automation.WorkflowInfo\",\"System.Management.Automation.MinishellParameterBinderController\",\"System.Management.Automation.NativeCommandParameterBinder\",\"System.Management.Automation.CommandLineParameterBinderNativeMethods\",\"System.Management.Automation.NativeCommandParameterBinderController\",\"System.Management.Automation.NativeCommandIOFormat\",\"System.Management.Automation.MinishellStream\",\"System.Management.Automation.StringToMinishellStreamConverter\",\"System.Management.Automation.ProcessOutputObject\",\"System.Management.Automation.NativeCommandProcessor\",\"System.Management.Automation.ProcessInputWriter\",\"System.Management.Automation.ProcessOutputReader\",\"System.Management.Automation.ProcessStreamReader\",\"System.Management.Automation.ConsoleVisibility\",\"System.Management.Automation.RemoteException\",\"System.Management.Automation.DscResourceSearcher\",\"System.Management.Automation.PSClassSearcher\",\"System.Management.Automation.PSClassInfo\",\"System.Management.Automation.PSClassMemberInfo\",\"System.Management.Automation.AnalysisCache\",\"System.Management.Automation.AnalysisCacheData\",\"System.Management.Automation.ModuleCacheEntry\",\"System.Management.Automation.ModuleIntrinsics\",\"System.Management.Automation.IModuleAssemblyInitializer\",\"System.Management.Automation.IModuleAssemblyCleanup\",\"System.Management.Automation.PSModuleInfo\",\"System.Management.Automation.ModuleType\",\"System.Management.Automation.ModuleAccessMode\",\"System.Management.Automation.PSModuleInfoComparer\",\"System.Management.Automation.RemoteDiscoveryHelper\",\"System.Management.Automation.ScriptAnalysis\",\"System.Management.Automation.ExportVisitor\",\"System.Management.Automation.RequiredModuleInfo\",\"System.Management.Automation.AutomationEngine\",\"System.Management.Automation.EngineIntrinsics\",\"System.Management.Automation.ExecutionContext\",\"System.Management.Automation.EngineState\",\"System.Management.Automation.PSVersionInfo\",\"System.Management.Automation.PSEventManager\",\"System.Management.Automation.PSLocalEventManager\",\"System.Management.Automation.PSRemoteEventManager\",\"System.Management.Automation.PSEngineEvent\",\"System.Management.Automation.PSEventSubscriber\",\"System.Management.Automation.PSEventHandler\",\"System.Management.Automation.ForwardedEventArgs\",\"System.Management.Automation.PSEventArgs`1[T]\",\"System.Management.Automation.PSEventArgs\",\"System.Management.Automation.PSEventReceivedEventHandler\",\"System.Management.Automation.PSEventUnsubscribedEventArgs\",\"System.Management.Automation.PSEventUnsubscribedEventHandler\",\"System.Management.Automation.PSEventArgsCollection\",\"System.Management.Automation.EventAction\",\"System.Management.Automation.PSEventJob\",\"System.Management.Automation.Breakpoint\",\"System.Management.Automation.CommandBreakpoint\",\"System.Management.Automation.VariableAccessMode\",\"System.Management.Automation.VariableBreakpoint\",\"System.Management.Automation.LineBreakpoint\",\"System.Management.Automation.DebuggerResumeAction\",\"System.Management.Automation.DebuggerStopEventArgs\",\"System.Management.Automation.BreakpointUpdateType\",\"System.Management.Automation.BreakpointUpdatedEventArgs\",\"System.Management.Automation.PSJobStartEventArgs\",\"System.Management.Automation.DebugSource\",\"System.Management.Automation.DebugModes\",\"System.Management.Automation.UnhandledBreakpointProcessingMode\",\"System.Management.Automation.Debugger\",\"System.Management.Automation.ScriptDebugger\",\"System.Management.Automation.NestedRunspaceDebugger\",\"System.Management.Automation.StandaloneRunspaceDebugger\",\"System.Management.Automation.EmbeddedRunspaceDebugger\",\"System.Management.Automation.DebuggerCommandResults\",\"System.Management.Automation.DebuggerCommandProcessor\",\"System.Management.Automation.DebuggerCommand\",\"System.Management.Automation.PSDebugContext\",\"System.Management.Automation.CallStackFrame\",\"System.Management.Automation.Adapter\",\"System.Management.Automation.CacheTable\",\"System.Management.Automation.MethodInformation\",\"System.Management.Automation.ParameterInformation\",\"System.Management.Automation.DotNetAdapter\",\"System.Management.Automation.BaseDotNetAdapterForAdaptedObjects\",\"System.Management.Automation.DotNetAdapterWithComTypeName\",\"System.Management.Automation.MemberRedirectionAdapter\",\"System.Management.Automation.PSObjectAdapter\",\"System.Management.Automation.PSMemberSetAdapter\",\"System.Management.Automation.PropertyOnlyAdapter\",\"System.Management.Automation.XmlNodeAdapter\",\"System.Management.Automation.TypeInference\",\"System.Management.Automation.ThirdPartyAdapter\",\"System.Management.Automation.PSPropertyAdapter\",\"System.Management.Automation.PSTypeConverter\",\"System.Management.Automation.ConvertThroughString\",\"System.Management.Automation.ConversionRank\",\"System.Management.Automation.LanguagePrimitives\",\"System.Management.Automation.PSMemberTypes\",\"System.Management.Automation.PSMemberViewTypes\",\"System.Management.Automation.MshMemberMatchOptions\",\"System.Management.Automation.PSMemberInfo\",\"System.Management.Automation.PSPropertyInfo\",\"System.Management.Automation.PSAliasProperty\",\"System.Management.Automation.PSCodeProperty\",\"System.Management.Automation.PSProperty\",\"System.Management.Automation.PSAdaptedProperty\",\"System.Management.Automation.PSNoteProperty\",\"System.Management.Automation.PSVariableProperty\",\"System.Management.Automation.PSScriptProperty\",\"System.Management.Automation.PSMethodInvocationConstraints\",\"System.Management.Automation.PSMethodInfo\",\"System.Management.Automation.PSCodeMethod\",\"System.Management.Automation.PSScriptMethod\",\"System.Management.Automation.PSMethod\",\"System.Management.Automation.PSParameterizedProperty\",\"System.Management.Automation.PSMemberSet\",\"System.Management.Automation.PSInternalMemberSet\",\"System.Management.Automation.PSPropertySet\",\"System.Management.Automation.PSEvent\",\"System.Management.Automation.PSDynamicMember\",\"System.Management.Automation.MemberMatch\",\"System.Management.Automation.PSMemberInfoCollection`1[T]\",\"System.Management.Automation.ReadOnlyPSMemberInfoCollection`1[T]\",\"System.Management.Automation.PSMemberInfoInternalCollection`1[T]\",\"System.Management.Automation.CollectionEntry`1[T]\",\"System.Management.Automation.ReservedNameMembers\",\"System.Management.Automation.PSMemberInfoIntegratingCollection`1[T]\",\"System.Management.Automation.PSObject\",\"System.Management.Automation.PSCustomObject\",\"System.Management.Automation.SerializationMethod\",\"System.Management.Automation.ExtendedTypeSystemException\",\"System.Management.Automation.MethodException\",\"System.Management.Automation.MethodInvocationException\",\"System.Management.Automation.GetValueException\",\"System.Management.Automation.PropertyNotFoundException\",\"System.Management.Automation.GetValueInvocationException\",\"System.Management.Automation.SetValueException\",\"System.Management.Automation.SetValueInvocationException\",\"System.Management.Automation.PSInvalidCastException\",\"System.Management.Automation.PSReference\",\"System.Management.Automation.PSReference`1[T]\",\"System.Management.Automation.IInspectable\",\"System.Management.Automation.WinRTHelper\",\"System.Management.Automation.ComAdapter\",\"System.Management.Automation.IDispatch\",\"System.Management.Automation.ComInvoker\",\"System.Management.Automation.ComMethodInformation\",\"System.Management.Automation.ComMethod\",\"System.Management.Automation.ComProperty\",\"System.Management.Automation.ComTypeInfo\",\"System.Management.Automation.ComUtil\",\"System.Management.Automation.DataRowAdapter\",\"System.Management.Automation.DataRowViewAdapter\",\"System.Management.Automation.DirectoryEntryAdapter\",\"System.Management.Automation.BaseWMIAdapter\",\"System.Management.Automation.ManagementClassApdapter\",\"System.Management.Automation.ManagementObjectAdapter\",\"System.Management.Automation.SettingValueExceptionEventArgs\",\"System.Management.Automation.GettingValueExceptionEventArgs\",\"System.Management.Automation.PSObjectPropertyDescriptor\",\"System.Management.Automation.PSObjectTypeDescriptor\",\"System.Management.Automation.PSObjectTypeDescriptionProvider\",\"System.Management.Automation.MamlUtil\",\"System.Management.Automation.ProviderCommandHelpInfo\",\"System.Management.Automation.ProviderContext\",\"System.Management.Automation.HelpSystem\",\"System.Management.Automation.HelpProgressInfo\",\"System.Management.Automation.HelpProviderInfo\",\"System.Management.Automation.HelpCategory\",\"System.Management.Automation.HelpInfo\",\"System.Management.Automation.HelpProvider\",\"System.Management.Automation.HelpProviderWithCache\",\"System.Management.Automation.MamlCommandHelpInfo\",\"System.Management.Automation.CommandHelpProvider\",\"System.Management.Automation.UserDefinedHelpData\",\"System.Management.Automation.AliasHelpInfo\",\"System.Management.Automation.AliasHelpProvider\",\"System.Management.Automation.HelpFileHelpInfo\",\"System.Management.Automation.HelpFileHelpProvider\",\"System.Management.Automation.DefaultHelpProvider\",\"System.Management.Automation.ProviderHelpInfo\",\"System.Management.Automation.ProviderHelpProvider\",\"System.Management.Automation.MamlNode\",\"System.Management.Automation.HelpProviderWithFullCache\",\"System.Management.Automation.FaqHelpProvider\",\"System.Management.Automation.FaqHelpInfo\",\"System.Management.Automation.GlossaryHelpProvider\",\"System.Management.Automation.GlossaryHelpInfo\",\"System.Management.Automation.GeneralHelpProvider\",\"System.Management.Automation.GeneralHelpInfo\",\"System.Management.Automation.HelpErrorTracer\",\"System.Management.Automation.HelpRequest\",\"System.Management.Automation.MUIFileSearcher\",\"System.Management.Automation.SearchMode\",\"System.Management.Automation.HelpCommentsParser\",\"System.Management.Automation.BaseCommandHelpInfo\",\"System.Management.Automation.RemoteHelpInfo\",\"System.Management.Automation.ScriptCommandHelpProvider\",\"System.Management.Automation.SyntaxHelpInfo\",\"System.Management.Automation.DscResourceHelpProvider\",\"System.Management.Automation.PSClassHelpProvider\",\"System.Management.Automation.MamlClassHelpInfo\",\"System.Management.Automation.InformationalRecord\",\"System.Management.Automation.WarningRecord\",\"System.Management.Automation.DebugRecord\",\"System.Management.Automation.VerboseRecord\",\"System.Management.Automation.PSListModifier\",\"System.Management.Automation.PSListModifier`1[T]\",\"System.Management.Automation.InvalidPowerShellStateException\",\"System.Management.Automation.PSInvocationState\",\"System.Management.Automation.RunspaceMode\",\"System.Management.Automation.PSInvocationStateInfo\",\"System.Management.Automation.PSInvocationStateChangedEventArgs\",\"System.Management.Automation.PSInvocationSettings\",\"System.Management.Automation.BatchInvocationContext\",\"System.Management.Automation.RemoteStreamOptions\",\"System.Management.Automation.PowerShellAsyncResult\",\"System.Management.Automation.PowerShell\",\"System.Management.Automation.PSDataStreams\",\"System.Management.Automation.PowerShellStopper\",\"System.Management.Automation.PSCommand\",\"System.Management.Automation.DataAddedEventArgs\",\"System.Management.Automation.DataAddingEventArgs\",\"System.Management.Automation.PSDataCollection`1[T]\",\"System.Management.Automation.IBlockingEnumerator`1[W]\",\"System.Management.Automation.PSDataCollectionEnumerator`1[W]\",\"System.Management.Automation.PSInformationalBuffers\",\"System.Management.Automation.SuggestionMatchType\",\"System.Management.Automation.HostUtilities\",\"System.Management.Automation.RunspaceInvoke\",\"System.Management.Automation.RunspacePoolStateInfo\",\"System.Management.Automation.RemotePipeline\",\"System.Management.Automation.RemoteRunspace\",\"System.Management.Automation.RemoteDebugger\",\"System.Management.Automation.RemoteSessionStateProxy\",\"System.Management.Automation.JobState\",\"System.Management.Automation.InvalidJobStateException\",\"System.Management.Automation.JobStateInfo\",\"System.Management.Automation.JobStateEventArgs\",\"System.Management.Automation.JobIdentifier\",\"System.Management.Automation.IJobDebugger\",\"System.Management.Automation.Job\",\"System.Management.Automation.PSRemotingJob\",\"System.Management.Automation.DisconnectedJobOperation\",\"System.Management.Automation.PSRemotingChildJob\",\"System.Management.Automation.RemotingJobDebugger\",\"System.Management.Automation.PSInvokeExpressionSyncJob\",\"System.Management.Automation.OutputProcessingStateEventArgs\",\"System.Management.Automation.IOutputProcessingState\",\"System.Management.Automation.Job2\",\"System.Management.Automation.JobThreadOptions\",\"System.Management.Automation.ContainerParentJob\",\"System.Management.Automation.JobFailedException\",\"System.Management.Automation.JobDefinition\",\"System.Management.Automation.JobInvocationInfo\",\"System.Management.Automation.JobSourceAdapter\",\"System.Management.Automation.PSJobProxy\",\"System.Management.Automation.PSChildJobProxy\",\"System.Management.Automation.JobDataAddedEventArgs\",\"System.Management.Automation.PowerShellStreamType\",\"System.Management.Automation.PowerShellStreams`2[TInput,TOutput]\",\"System.Management.Automation.JobManager\",\"System.Management.Automation.StartableJob\",\"System.Management.Automation.ThrottlingJob\",\"System.Management.Automation.ThrottlingJobChildAddedEventArgs\",\"System.Management.Automation.PSSessionTypeOption\",\"System.Management.Automation.PSTransportOption\",\"System.Management.Automation.RemoteSession\",\"System.Management.Automation.RemoteSessionNegotiationEventArgs\",\"System.Management.Automation.RemoteDataEventArgs\",\"System.Management.Automation.RemoteDataEventArgs`1[T]\",\"System.Management.Automation.RemoteSessionState\",\"System.Management.Automation.RemoteSessionEvent\",\"System.Management.Automation.RemoteSessionStateInfo\",\"System.Management.Automation.RemoteSessionStateEventArgs\",\"System.Management.Automation.RemoteSessionStateMachineEventArgs\",\"System.Management.Automation.RemotingCapability\",\"System.Management.Automation.RemotingBehavior\",\"System.Management.Automation.RemotingConstants\",\"System.Management.Automation.RemoteDataNameStrings\",\"System.Management.Automation.RemotingDestination\",\"System.Management.Automation.RemotingTargetInterface\",\"System.Management.Automation.RemotingDataType\",\"System.Management.Automation.RemotingEncoder\",\"System.Management.Automation.RemotingDecoder\",\"System.Management.Automation.ExecutionContextForStepping\",\"System.Management.Automation.ServerSteppablePipelineDriver\",\"System.Management.Automation.ServerSteppablePipelineDriverEventArg\",\"System.Management.Automation.ServerSteppablePipelineSubscriber\",\"System.Management.Automation.IRSPDriverInvoke\",\"System.Management.Automation.ServerRunspacePoolDriver\",\"System.Management.Automation.ServerRemoteDebugger\",\"System.Management.Automation.ServerPowerShellDriver\",\"System.Management.Automation.ServerRunspacePoolDataStructureHandler\",\"System.Management.Automation.ServerPowerShellDataStructureHandler\",\"System.Management.Automation.RunspaceRepository\",\"System.Management.Automation.Repository`1[T]\",\"System.Management.Automation.JobRepository\",\"System.Management.Automation.LogContext\",\"System.Management.Automation.LogProvider\",\"System.Management.Automation.DummyLogProvider\",\"System.Management.Automation.MshLog\",\"System.Management.Automation.LogContextCache\",\"System.Management.Automation.Severity\",\"System.Management.Automation.CommandState\",\"System.Management.Automation.ProviderState\",\"System.Management.Automation.EventLogLogProvider\",\"System.Management.Automation.ValidateArgumentsAttribute\",\"System.Management.Automation.ValidateEnumeratedArgumentsAttribute\",\"System.Management.Automation.DSCResourceRunAsCredential\",\"System.Management.Automation.DscResourceAttribute\",\"System.Management.Automation.DscPropertyAttribute\",\"System.Management.Automation.DscLocalConfigurationManagerAttribute\",\"System.Management.Automation.CmdletCommonMetadataAttribute\",\"System.Management.Automation.CmdletAttribute\",\"System.Management.Automation.OutputTypeAttribute\",\"System.Management.Automation.DynamicClassImplementationAssemblyAttribute\",\"System.Management.Automation.AliasAttribute\",\"System.Management.Automation.ParameterAttribute\",\"System.Management.Automation.PSTypeNameAttribute\",\"System.Management.Automation.SupportsWildcardsAttribute\",\"System.Management.Automation.PSDefaultValueAttribute\",\"System.Management.Automation.HiddenAttribute\",\"System.Management.Automation.ValidateLengthAttribute\",\"System.Management.Automation.ValidateRangeAttribute\",\"System.Management.Automation.ValidatePatternAttribute\",\"System.Management.Automation.ValidateScriptAttribute\",\"System.Management.Automation.ValidateCountAttribute\",\"System.Management.Automation.ValidateSetAttribute\",\"System.Management.Automation.AllowNullAttribute\",\"System.Management.Automation.AllowEmptyStringAttribute\",\"System.Management.Automation.AllowEmptyCollectionAttribute\",\"System.Management.Automation.ValidateDriveAttribute\",\"System.Management.Automation.ValidateUserDriveAttribute\",\"System.Management.Automation.ValidateNotNullAttribute\",\"System.Management.Automation.ValidateNotNullOrEmptyAttribute\",\"System.Management.Automation.ArgumentTransformationAttribute\",\"System.Management.Automation.SessionCapabilities\",\"System.Management.Automation.CommandMetadata\",\"System.Management.Automation.SerializationStrings\",\"System.Management.Automation.SpecialVariables\",\"System.Management.Automation.AutomaticVariable\",\"System.Management.Automation.PreferenceVariable\",\"System.Management.Automation.Utils\",\"System.Management.Automation.WildcardOptions\",\"System.Management.Automation.WildcardPattern\",\"System.Management.Automation.WildcardPatternException\",\"System.Management.Automation.WildcardPatternParser\",\"System.Management.Automation.WildcardPatternToRegexParser\",\"System.Management.Automation.WildcardPatternMatcher\",\"System.Management.Automation.WildcardPatternToDosWildcardParser\",\"System.Management.Automation.SerializationOptions\",\"System.Management.Automation.SerializationContext\",\"System.Management.Automation.PSSerializer\",\"System.Management.Automation.Serializer\",\"System.Management.Automation.DeserializationOptions\",\"System.Management.Automation.DeserializationContext\",\"System.Management.Automation.CimClassDeserializationCache`1[TKey]\",\"System.Management.Automation.CimClassSerializationCache`1[TKey]\",\"System.Management.Automation.CimClassSerializationId\",\"System.Management.Automation.Deserializer\",\"System.Management.Automation.ContainerType\",\"System.Management.Automation.InternalSerializer\",\"System.Management.Automation.InternalDeserializer\",\"System.Management.Automation.ReferenceIdHandlerForSerializer`1[T]\",\"System.Management.Automation.ReferenceIdHandlerForDeserializer`1[T]\",\"System.Management.Automation.TypeSerializerDelegate\",\"System.Management.Automation.TypeDeserializerDelegate\",\"System.Management.Automation.TypeSerializationInfo\",\"System.Management.Automation.KnownTypes\",\"System.Management.Automation.SerializationUtilities\",\"System.Management.Automation.WeakReferenceDictionary`1[T]\",\"System.Management.Automation.PSPrimitiveDictionary\",\"System.Management.Automation.PSDriveInfo\",\"System.Management.Automation.ProviderInfo\",\"System.Management.Automation.CmdletProviderContext\",\"System.Management.Automation.LocationGlobber\",\"System.Management.Automation.PathInfo\",\"System.Management.Automation.PathInfoStack\",\"System.Management.Automation.SpecialCharacters\",\"System.Management.Automation.FlowControlException\",\"System.Management.Automation.LoopFlowException\",\"System.Management.Automation.BreakException\",\"System.Management.Automation.ContinueException\",\"System.Management.Automation.ReturnException\",\"System.Management.Automation.ExitException\",\"System.Management.Automation.ExitNestedPromptException\",\"System.Management.Automation.TerminateException\",\"System.Management.Automation.StopUpstreamCommandsException\",\"System.Management.Automation.SplitOptions\",\"System.Management.Automation.PowerShellBinaryOperator\",\"System.Management.Automation.ParserOps\",\"System.Management.Automation.RangeEnumerator\",\"System.Management.Automation.InterpreterError\",\"System.Management.Automation.ScriptTrace\",\"System.Management.Automation.ScriptBlock\",\"System.Management.Automation.SteppablePipeline\",\"System.Management.Automation.ScriptBlockToPowerShellNotSupportedException\",\"System.Management.Automation.ScriptBlockInvocationEventArgs\",\"System.Management.Automation.PSParser\",\"System.Management.Automation.PSToken\",\"System.Management.Automation.PSTokenType\",\"System.Management.Automation.PSParseError\",\"System.Management.Automation.CoreTypes\",\"System.Management.Automation.TypeAccelerators\",\"System.Management.Automation.CompileInterpretChoice\",\"System.Management.Automation.ScriptBlockClauseToInvoke\",\"System.Management.Automation.CompiledScriptBlockData\",\"System.Management.Automation.ScriptBlockSerializationHelper\",\"System.Management.Automation.PSScriptCmdlet\",\"System.Management.Automation.ScriptBlockToPowerShellChecker\",\"System.Management.Automation.UsingExpressionAstSearcher\",\"System.Management.Automation.ScriptBlockToPowerShellConverter\",\"System.Management.Automation.MutableTuple\",\"System.Management.Automation.MutableTuple`1[T0]\",\"System.Management.Automation.MutableTuple`2[T0,T1]\",\"System.Management.Automation.MutableTuple`4[T0,T1,T2,T3]\",\"System.Management.Automation.MutableTuple`8[T0,T1,T2,T3,T4,T5,T6,T7]\",\"System.Management.Automation.MutableTuple`16[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15]\",\"System.Management.Automation.MutableTuple`32[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22,T23,T24,T25,T26,T27,T28,T29,T30,T31]\",\"System.Management.Automation.MutableTuple`64[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22,T23,T24,T25,T26,T27,T28,T29,T30,T31,T32,T33,T34,T35,T36,T37,T38,T39,T40,T41,T42,T43,T44,T45,T46,T47,T48,T49,T50,T51,T52,T53,T54,T55,T56,T57,T58,T59,T60,T61,T62,T63]\",\"System.Management.Automation.MutableTuple`128[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22,T23,T24,T25,T26,T27,T28,T29,T30,T31,T32,T33,T34,T35,T36,T37,T38,T39,T40,T41,T42,T43,T44,T45,T46,T47,T48,T49,T50,T51,T52,T53,T54,T55,T56,T57,T58,T59,T60,T61,T62,T63,T64,T65,T66,T67,T68,T69,T70,T71,T72,T73,T74,T75,T76,T77,T78,T79,T80,T81,T82,T83,T84,T85,T86,T87,T88,T89,T90,T91,T92,T93,T94,T95,T96,T97,T98,T99,T100,T101,T102,T103,T104,T105,T106,T107,T108,T109,T110,T111,T112,T113,T114,T115,T116,T117,T118,T119,T120,T121,T122,T123,T124,T125,T126,T127]\",\"System.Management.Automation.ArrayOps\",\"System.Management.Automation.PipelineOps\",\"System.Management.Automation.CommandRedirection\",\"System.Management.Automation.MergingRedirection\",\"System.Management.Automation.FileRedirection\",\"System.Management.Automation.FunctionOps\",\"System.Management.Automation.ScriptBlockExpressionWrapper\",\"System.Management.Automation.HashtableOps\",\"System.Management.Automation.ExceptionHandlingOps\",\"System.Management.Automation.TypeOps\",\"System.Management.Automation.SwitchOps\",\"System.Management.Automation.WhereOperatorSelectionMode\",\"System.Management.Automation.EnumerableOps\",\"System.Management.Automation.Boxed\",\"System.Management.Automation.IntOps\",\"System.Management.Automation.UIntOps\",\"System.Management.Automation.LongOps\",\"System.Management.Automation.ULongOps\",\"System.Management.Automation.DecimalOps\",\"System.Management.Automation.DoubleOps\",\"System.Management.Automation.CharOps\",\"System.Management.Automation.StringOps\",\"System.Management.Automation.VariableOps\",\"System.Management.Automation.PSCredentialTypes\",\"System.Management.Automation.PSCredentialUIOptions\",\"System.Management.Automation.GetSymmetricEncryptionKey\",\"System.Management.Automation.PSCredential\",\"System.Management.Automation.PSSecurityException\",\"System.Management.Automation.SigningOption\",\"System.Management.Automation.SignatureHelper\",\"System.Management.Automation.CatalogValidationStatus\",\"System.Management.Automation.CatalogInformation\",\"System.Management.Automation.CatalogHelper\",\"System.Management.Automation.SecurityDescriptorCmdletProviderIntrinsics\",\"System.Management.Automation.SessionStateInternal\",\"System.Management.Automation.CommandOrigin\",\"System.Management.Automation.AuthorizationManager\",\"System.Management.Automation.CredentialAttribute\",\"System.Management.Automation.Win32Errors\",\"System.Management.Automation.SignatureStatus\",\"System.Management.Automation.SignatureType\",\"System.Management.Automation.Signature\",\"System.Management.Automation.CmsUtils\",\"System.Management.Automation.CmsMessageRecipient\",\"System.Management.Automation.ResolutionPurpose\",\"System.Management.Automation.AmsiUtils\",\"System.Management.Automation.ArgumentTypeConverterAttribute\",\"System.Management.Automation.DriveNames\",\"System.Management.Automation.ProviderNames\",\"System.Management.Automation.CustomShellProviderNames\",\"System.Management.Automation.SingleShellProviderNames\",\"System.Management.Automation.ScopedItemSearcher`1[T]\",\"System.Management.Automation.VariableScopeItemSearcher\",\"System.Management.Automation.AliasScopeItemSearcher\",\"System.Management.Automation.FunctionScopeItemSearcher\",\"System.Management.Automation.DriveScopeItemSearcher\",\"System.Management.Automation.ProcessMode\",\"System.Management.Automation.SessionStateCapacityVariable\",\"System.Management.Automation.QuestionMarkVariable\",\"System.Management.Automation.PSCultureVariable\",\"System.Management.Automation.PSUICultureVariable\",\"System.Management.Automation.SessionStateScope\",\"System.Management.Automation.SessionStateScopeEnumerator\",\"System.Management.Automation.StringLiterals\",\"System.Management.Automation.SessionStateConstants\",\"System.Management.Automation.SessionStateUtilities\",\"System.Management.Automation.PSVariable\",\"System.Management.Automation.LocalVariable\",\"System.Management.Automation.NullVariable\",\"System.Management.Automation.ScopedItemOptions\",\"System.Management.Automation.PSVariableAttributeCollection\",\"System.Management.Automation.VariablePathFlags\",\"System.Management.Automation.VariablePath\",\"System.Management.Automation.FunctionLookupPath\",\"System.Management.Automation.RegistryStrings\",\"System.Management.Automation.PSSnapInInfo\",\"System.Management.Automation.PSSnapInReader\",\"System.Management.Automation.RegistryStringResourceIndirect\",\"System.Management.Automation.ResourceRetriever\",\"System.Management.Automation.PSInstaller\",\"System.Management.Automation.PSSnapInInstaller\",\"System.Management.Automation.CustomPSSnapIn\",\"System.Management.Automation.PSSnapIn\",\"System.Management.Automation.AssertException\",\"System.Management.Automation.Diagnostics\",\"System.Management.Automation.CommandNotFoundException\",\"System.Management.Automation.ScriptRequiresException\",\"System.Management.Automation.ApplicationFailedException\",\"System.Management.Automation.ProviderCmdlet\",\"System.Management.Automation.CmdletInvocationException\",\"System.Management.Automation.CmdletProviderInvocationException\",\"System.Management.Automation.PipelineStoppedException\",\"System.Management.Automation.PipelineClosedException\",\"System.Management.Automation.ActionPreferenceStopException\",\"System.Management.Automation.ParentContainsErrorRecordException\",\"System.Management.Automation.RedirectedException\",\"System.Management.Automation.ScriptCallDepthException\",\"System.Management.Automation.PipelineDepthException\",\"System.Management.Automation.HaltCommandException\",\"System.Management.Automation.ExtensionMethods\",\"System.Management.Automation.EnumerableExtensions\",\"System.Management.Automation.PSTypeExtensions\",\"System.Management.Automation.WeakReferenceExtensions\",\"System.Management.Automation.MetadataException\",\"System.Management.Automation.ValidationMetadataException\",\"System.Management.Automation.ArgumentTransformationMetadataException\",\"System.Management.Automation.ParsingMetadataException\",\"System.Management.Automation.PSArgumentException\",\"System.Management.Automation.PSArgumentNullException\",\"System.Management.Automation.PSArgumentOutOfRangeException\",\"System.Management.Automation.PSInvalidOperationException\",\"System.Management.Automation.PSNotImplementedException\",\"System.Management.Automation.PSNotSupportedException\",\"System.Management.Automation.PSObjectDisposedException\",\"System.Management.Automation.PSTraceSource\",\"System.Management.Automation.ParameterBindingException\",\"System.Management.Automation.ParameterBindingValidationException\",\"System.Management.Automation.ParameterBindingArgumentTransformationException\",\"System.Management.Automation.ParameterBindingParameterDefaultValueException\",\"System.Management.Automation.ParseException\",\"System.Management.Automation.IncompleteParseException\",\"System.Management.Automation.PathUtils\",\"System.Management.Automation.EncodingConversion\",\"System.Management.Automation.PsUtils\",\"System.Management.Automation.StringToBase64Converter\",\"System.Management.Automation.ReferenceEqualityComparer\",\"System.Management.Automation.ResourceManagerCache\",\"System.Management.Automation.RuntimeException\",\"System.Management.Automation.ProviderInvocationException\",\"System.Management.Automation.SessionStateCategory\",\"System.Management.Automation.SessionStateException\",\"System.Management.Automation.SessionStateOverflowException\",\"System.Management.Automation.SessionStateUnauthorizedAccessException\",\"System.Management.Automation.ProviderNotFoundException\",\"System.Management.Automation.ProviderNameAmbiguousException\",\"System.Management.Automation.DriveNotFoundException\",\"System.Management.Automation.ItemNotFoundException\",\"System.Management.Automation.PSTraceSourceOptions\",\"System.Management.Automation.ScopeTracer\",\"System.Management.Automation.TraceSourceAttribute\",\"System.Management.Automation.MonadTraceSource\",\"System.Management.Automation.VerbsCommon\",\"System.Management.Automation.VerbsData\",\"System.Management.Automation.VerbsLifecycle\",\"System.Management.Automation.VerbsDiagnostic\",\"System.Management.Automation.VerbsCommunications\",\"System.Management.Automation.VerbsSecurity\",\"System.Management.Automation.VerbsOther\",\"System.Management.Automation.Verbs\",\"System.Management.Automation.PinvokeDllNames\",\"System.Management.Automation.PlatformInvokes\",\"System.Management.Automation.ClrFacade\",\"System.Management.Automation.IBackgroundDispatcher\",\"System.Management.Automation.BackgroundDispatcher\",\"System.Management.Automation.WindowsErrorReporting\",\"System.Management.Automation.PSTransactionStatus\",\"System.Management.Automation.PSTransaction\",\"System.Management.Automation.PSTransactionContext\",\"System.Management.Automation.RollbackSeverity\",\"System.Management.Automation.ExtendedTypeDefinition\",\"System.Management.Automation.FormatViewDefinition\",\"System.Management.Automation.PSControl\",\"System.Management.Automation.PSControlGroupBy\",\"System.Management.Automation.DisplayEntry\",\"System.Management.Automation.EntrySelectedBy\",\"System.Management.Automation.Alignment\",\"System.Management.Automation.DisplayEntryValueType\",\"System.Management.Automation.CustomControl\",\"System.Management.Automation.CustomControlEntry\",\"System.Management.Automation.CustomItemBase\",\"System.Management.Automation.CustomItemExpression\",\"System.Management.Automation.CustomItemFrame\",\"System.Management.Automation.CustomItemNewline\",\"System.Management.Automation.CustomItemText\",\"System.Management.Automation.CustomEntryBuilder\",\"System.Management.Automation.CustomControlBuilder\",\"System.Management.Automation.ListControl\",\"System.Management.Automation.ListControlEntry\",\"System.Management.Automation.ListControlEntryItem\",\"System.Management.Automation.ListEntryBuilder\",\"System.Management.Automation.ListControlBuilder\",\"System.Management.Automation.TableControl\",\"System.Management.Automation.TableControlColumnHeader\",\"System.Management.Automation.TableControlColumn\",\"System.Management.Automation.TableControlRow\",\"System.Management.Automation.TableRowDefinitionBuilder\",\"System.Management.Automation.TableControlBuilder\",\"System.Management.Automation.WideControl\",\"System.Management.Automation.WideControlEntryItem\",\"System.Management.Automation.WideControlBuilder\",\"System.Management.Automation.CommandCompletion\",\"System.Management.Automation.CompletionContext\",\"System.Management.Automation.CompletionAnalysis\",\"System.Management.Automation.CompletionCompleters\",\"System.Management.Automation.SafeExprEvaluator\",\"System.Management.Automation.CompletionExecutionHelper\",\"System.Management.Automation.CompletionResultType\",\"System.Management.Automation.CompletionResult\",\"System.Management.Automation.ArgumentCompleterAttribute\",\"System.Management.Automation.IArgumentCompleter\",\"System.Management.Automation.RegisterArgumentCompleterCommand\",\"System.Management.Automation.InternalMISerializer\",\"System.Management.Automation.MISerializer\",\"System.Management.Automation.PSMISerializer\",\"System.Management.Automation.MITypeSerializerDelegate\",\"System.Management.Automation.MITypeSerializationInfo\",\"System.Management.Automation.KnownMITypes\",\"System.Management.Automation.PSPowerShellPipeline\",\"System.Management.Automation.PS_Command\",\"System.Management.Automation.PS_Parameter\",\"System.Management.Automation.PSNegotiationData\",\"System.Management.Automation.PSNegotiationHandler\",\"System.Management.Automation.ComInterop.ArgBuilder\",\"System.Management.Automation.ComInterop.BoolArgBuilder\",\"System.Management.Automation.ComInterop.BoundDispEvent\",\"System.Management.Automation.ComInterop.CollectionExtensions\",\"System.Management.Automation.ComInterop.ComBinder\",\"System.Management.Automation.ComInterop.ComBinderHelpers\",\"System.Management.Automation.ComInterop.ComClassMetaObject\",\"System.Management.Automation.ComInterop.ComDispIds\",\"System.Management.Automation.ComInterop.ComEventDesc\",\"System.Management.Automation.ComInterop.ComEventSink\",\"System.Management.Automation.ComInterop.ComEventSinkProxy\",\"System.Management.Automation.ComInterop.ComEventSinksContainer\",\"System.Management.Automation.ComInterop.ComFallbackMetaObject\",\"System.Management.Automation.ComInterop.ComUnwrappedMetaObject\",\"System.Management.Automation.ComInterop.ComHresults\",\"System.Management.Automation.ComInterop.IDispatchForReflection\",\"System.Management.Automation.ComInterop.IDispatch\",\"System.Management.Automation.ComInterop.IDispatchMethodIndices\",\"System.Management.Automation.ComInterop.IProvideClassInfo\",\"System.Management.Automation.ComInterop.ComInvokeAction\",\"System.Management.Automation.ComInterop.SplatInvokeBinder\",\"System.Management.Automation.ComInterop.ComInvokeBinder\",\"System.Management.Automation.ComInterop.ComMetaObject\",\"System.Management.Automation.ComInterop.ComMethodDesc\",\"System.Management.Automation.ComInterop.ComObject\",\"System.Management.Automation.ComInterop.ComParamDesc\",\"System.Management.Automation.ComInterop.ComRuntimeHelpers\",\"System.Management.Automation.ComInterop.UnsafeMethods\",\"System.Management.Automation.ComInterop.NativeMethods\",\"System.Management.Automation.ComInterop.ComType\",\"System.Management.Automation.ComInterop.ComTypeClassDesc\",\"System.Management.Automation.ComInterop.ComTypeDesc\",\"System.Management.Automation.ComInterop.ComTypeEnumDesc\",\"System.Management.Automation.ComInterop.ComTypeLibDesc\",\"System.Management.Automation.ComInterop.ComTypeLibInfo\",\"System.Management.Automation.ComInterop.ComTypeLibMemberDesc\",\"System.Management.Automation.ComInterop.ConversionArgBuilder\",\"System.Management.Automation.ComInterop.ConvertArgBuilder\",\"System.Management.Automation.ComInterop.ConvertibleArgBuilder\",\"System.Management.Automation.ComInterop.CurrencyArgBuilder\",\"System.Management.Automation.ComInterop.DateTimeArgBuilder\",\"System.Management.Automation.ComInterop.DispatchArgBuilder\",\"System.Management.Automation.ComInterop.DispCallable\",\"System.Management.Automation.ComInterop.DispCallableMetaObject\",\"System.Management.Automation.ComInterop.ErrorArgBuilder\",\"System.Management.Automation.ComInterop.Strings\",\"System.Management.Automation.ComInterop.Error\",\"System.Management.Automation.ComInterop.ExcepInfo\",\"System.Management.Automation.ComInterop.Helpers\",\"System.Management.Automation.ComInterop.IDispatchComObject\",\"System.Management.Automation.ComInterop.IDispatchMetaObject\",\"System.Management.Automation.ComInterop.IPseudoComObject\",\"System.Management.Automation.ComInterop.NullArgBuilder\",\"System.Management.Automation.ComInterop.SimpleArgBuilder\",\"System.Management.Automation.ComInterop.SplatCallSite\",\"System.Management.Automation.ComInterop.StringArgBuilder\",\"System.Management.Automation.ComInterop.TypeEnumMetaObject\",\"System.Management.Automation.ComInterop.TypeLibInfoMetaObject\",\"System.Management.Automation.ComInterop.TypeLibMetaObject\",\"System.Management.Automation.ComInterop.TypeUtils\",\"System.Management.Automation.ComInterop.UnknownArgBuilder\",\"System.Management.Automation.ComInterop.VarEnumSelector\",\"System.Management.Automation.ComInterop.Variant\",\"System.Management.Automation.ComInterop.VariantArgBuilder\",\"System.Management.Automation.ComInterop.VariantArray1\",\"System.Management.Automation.ComInterop.VariantArray2\",\"System.Management.Automation.ComInterop.VariantArray4\",\"System.Management.Automation.ComInterop.VariantArray8\",\"System.Management.Automation.ComInterop.VariantArray\",\"System.Management.Automation.ComInterop.VariantBuilder\",\"System.Management.Automation.PerformanceData.CounterSetInstanceBase\",\"System.Management.Automation.PerformanceData.PSCounterSetInstance\",\"System.Management.Automation.PerformanceData.CounterInfo\",\"System.Management.Automation.PerformanceData.CounterSetRegistrarBase\",\"System.Management.Automation.PerformanceData.PSCounterSetRegistrar\",\"System.Management.Automation.PerformanceData.PSPerfCountersMgr\",\"System.Management.Automation.Tracing.PowerShellTraceEvent\",\"System.Management.Automation.Tracing.PowerShellTraceChannel\",\"System.Management.Automation.Tracing.PowerShellTraceLevel\",\"System.Management.Automation.Tracing.PowerShellTraceOperationCode\",\"System.Management.Automation.Tracing.PowerShellTraceTask\",\"System.Management.Automation.Tracing.PowerShellTraceKeywords\",\"System.Management.Automation.Tracing.BaseChannelWriter\",\"System.Management.Automation.Tracing.NullWriter\",\"System.Management.Automation.Tracing.PowerShellChannelWriter\",\"System.Management.Automation.Tracing.PowerShellTraceSource\",\"System.Management.Automation.Tracing.PowerShellTraceSourceFactory\",\"System.Management.Automation.Tracing.EtwEvent\",\"System.Management.Automation.Tracing.CallbackNoParameter\",\"System.Management.Automation.Tracing.CallbackWithState\",\"System.Management.Automation.Tracing.CallbackWithStateAndArgs\",\"System.Management.Automation.Tracing.EtwEventArgs\",\"System.Management.Automation.Tracing.EtwActivity\",\"System.Management.Automation.Tracing.IEtwActivityReverter\",\"System.Management.Automation.Tracing.EtwActivityReverter\",\"System.Management.Automation.Tracing.EtwActivityReverterMethodInvoker\",\"System.Management.Automation.Tracing.IEtwEventCorrelator\",\"System.Management.Automation.Tracing.EtwEventCorrelator\",\"System.Management.Automation.Tracing.IMethodInvoker\",\"System.Management.Automation.Tracing.PSEtwLog\",\"System.Management.Automation.Tracing.PSEtwLogProvider\",\"System.Management.Automation.Tracing.Tracer\",\"System.Management.Automation.Security.NativeConstants\",\"System.Management.Automation.Security.NativeMethods\",\"System.Management.Automation.Security.SAFER_CODE_PROPERTIES\",\"System.Management.Automation.Security.LARGE_INTEGER\",\"System.Management.Automation.Security.HWND__\",\"System.Management.Automation.Security.Anonymous_9320654f_2227_43bf_a385_74cc8c562686\",\"System.Management.Automation.Security.Anonymous_947eb392_1446_4e25_bbd4_10e98165f3a9\",\"System.Management.Automation.Security.SystemEnforcementMode\",\"System.Management.Automation.Security.SystemPolicy\",\"System.Management.Automation.Interpreter.AddInstruction\",\"System.Management.Automation.Interpreter.AddOvfInstruction\",\"System.Management.Automation.Interpreter.NewArrayInitInstruction`1[TElement]\",\"System.Management.Automation.Interpreter.NewArrayInstruction`1[TElement]\",\"System.Management.Automation.Interpreter.NewArrayBoundsInstruction\",\"System.Management.Automation.Interpreter.GetArrayItemInstruction`1[TElement]\",\"System.Management.Automation.Interpreter.SetArrayItemInstruction`1[TElement]\",\"System.Management.Automation.Interpreter.RuntimeLabel\",\"System.Management.Automation.Interpreter.BranchLabel\",\"System.Management.Automation.Interpreter.CallInstruction\",\"System.Management.Automation.Interpreter.MethodInfoCallInstruction\",\"System.Management.Automation.Interpreter.ActionCallInstruction\",\"System.Management.Automation.Interpreter.ActionCallInstruction`1[T0]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`2[T0,T1]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`3[T0,T1,T2]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`4[T0,T1,T2,T3]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`5[T0,T1,T2,T3,T4]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`6[T0,T1,T2,T3,T4,T5]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`7[T0,T1,T2,T3,T4,T5,T6]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`8[T0,T1,T2,T3,T4,T5,T6,T7]\",\"System.Management.Automation.Interpreter.ActionCallInstruction`9[T0,T1,T2,T3,T4,T5,T6,T7,T8]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`1[TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`2[T0,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`3[T0,T1,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`4[T0,T1,T2,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`5[T0,T1,T2,T3,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`6[T0,T1,T2,T3,T4,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`7[T0,T1,T2,T3,T4,T5,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`8[T0,T1,T2,T3,T4,T5,T6,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`9[T0,T1,T2,T3,T4,T5,T6,T7,TRet]\",\"System.Management.Automation.Interpreter.FuncCallInstruction`10[T0,T1,T2,T3,T4,T5,T6,T7,T8,TRet]\",\"System.Management.Automation.Interpreter.OffsetInstruction\",\"System.Management.Automation.Interpreter.BranchFalseInstruction\",\"System.Management.Automation.Interpreter.BranchTrueInstruction\",\"System.Management.Automation.Interpreter.CoalescingBranchInstruction\",\"System.Management.Automation.Interpreter.BranchInstruction\",\"System.Management.Automation.Interpreter.IndexedBranchInstruction\",\"System.Management.Automation.Interpreter.GotoInstruction\",\"System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction\",\"System.Management.Automation.Interpreter.EnterFinallyInstruction\",\"System.Management.Automation.Interpreter.LeaveFinallyInstruction\",\"System.Management.Automation.Interpreter.EnterExceptionHandlerInstruction\",\"System.Management.Automation.Interpreter.LeaveExceptionHandlerInstruction\",\"System.Management.Automation.Interpreter.LeaveFaultInstruction\",\"System.Management.Automation.Interpreter.ThrowInstruction\",\"System.Management.Automation.Interpreter.SwitchInstruction\",\"System.Management.Automation.Interpreter.EnterLoopInstruction\",\"System.Management.Automation.Interpreter.CompiledLoopInstruction\",\"System.Management.Automation.Interpreter.DivInstruction\",\"System.Management.Automation.Interpreter.DynamicInstructionN\",\"System.Management.Automation.Interpreter.DynamicInstruction`1[TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`2[T0,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`3[T0,T1,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`4[T0,T1,T2,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`5[T0,T1,T2,T3,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`6[T0,T1,T2,T3,T4,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`7[T0,T1,T2,T3,T4,T5,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`8[T0,T1,T2,T3,T4,T5,T6,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`9[T0,T1,T2,T3,T4,T5,T6,T7,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`10[T0,T1,T2,T3,T4,T5,T6,T7,T8,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`11[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`12[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`13[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`14[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`15[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,TRet]\",\"System.Management.Automation.Interpreter.DynamicInstruction`16[T0,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,TRet]\",\"System.Management.Automation.Interpreter.DynamicSplatInstruction\",\"System.Management.Automation.Interpreter.EqualInstruction\",\"System.Management.Automation.Interpreter.LoadStaticFieldInstruction\",\"System.Management.Automation.Interpreter.LoadFieldInstruction\",\"System.Management.Automation.Interpreter.StoreFieldInstruction\",\"System.Management.Automation.Interpreter.StoreStaticFieldInstruction\",\"System.Management.Automation.Interpreter.GreaterThanInstruction\",\"System.Management.Automation.Interpreter.ILightCallSiteBinder\",\"System.Management.Automation.Interpreter.IInstructionProvider\",\"System.Management.Automation.Interpreter.Instruction\",\"System.Management.Automation.Interpreter.NotInstruction\",\"System.Management.Automation.Interpreter.InstructionFactory\",\"System.Management.Automation.Interpreter.InstructionFactory`1[T]\",\"System.Management.Automation.Interpreter.InstructionArray\",\"System.Management.Automation.Interpreter.InstructionList\",\"System.Management.Automation.Interpreter.InterpretedFrame\",\"System.Management.Automation.Interpreter.Interpreter\",\"System.Management.Automation.Interpreter.LabelInfo\",\"System.Management.Automation.Interpreter.LabelScopeKind\",\"System.Management.Automation.Interpreter.LabelScopeInfo\",\"System.Management.Automation.Interpreter.LessThanInstruction\",\"System.Management.Automation.Interpreter.ExceptionHandler\",\"System.Management.Automation.Interpreter.TryCatchFinallyHandler\",\"System.Management.Automation.Interpreter.RethrowException\",\"System.Management.Automation.Interpreter.DebugInfo\",\"System.Management.Automation.Interpreter.InterpretedFrameInfo\",\"System.Management.Automation.Interpreter.LightCompiler\",\"System.Management.Automation.Interpreter.LightDelegateCreator\",\"System.Management.Automation.Interpreter.LightLambdaCompileEventArgs\",\"System.Management.Automation.Interpreter.LightLambda\",\"System.Management.Automation.Interpreter.LightLambdaClosureVisitor\",\"System.Management.Automation.Interpreter.IBoxableInstruction\",\"System.Management.Automation.Interpreter.LocalAccessInstruction\",\"System.Management.Automation.Interpreter.LoadLocalInstruction\",\"System.Management.Automation.Interpreter.LoadLocalBoxedInstruction\",\"System.Management.Automation.Interpreter.LoadLocalFromClosureInstruction\",\"System.Management.Automation.Interpreter.LoadLocalFromClosureBoxedInstruction\",\"System.Management.Automation.Interpreter.AssignLocalInstruction\",\"System.Management.Automation.Interpreter.StoreLocalInstruction\",\"System.Management.Automation.Interpreter.AssignLocalBoxedInstruction\",\"System.Management.Automation.Interpreter.StoreLocalBoxedInstruction\",\"System.Management.Automation.Interpreter.AssignLocalToClosureInstruction\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction\",\"System.Management.Automation.Interpreter.RuntimeVariablesInstruction\",\"System.Management.Automation.Interpreter.LocalVariable\",\"System.Management.Automation.Interpreter.LocalDefinition\",\"System.Management.Automation.Interpreter.LocalVariables\",\"System.Management.Automation.Interpreter.LoopCompiler\",\"System.Management.Automation.Interpreter.MulInstruction\",\"System.Management.Automation.Interpreter.MulOvfInstruction\",\"System.Management.Automation.Interpreter.NotEqualInstruction\",\"System.Management.Automation.Interpreter.NumericConvertInstruction\",\"System.Management.Automation.Interpreter.UpdatePositionInstruction\",\"System.Management.Automation.Interpreter.RuntimeVariables\",\"System.Management.Automation.Interpreter.LoadObjectInstruction\",\"System.Management.Automation.Interpreter.LoadCachedObjectInstruction\",\"System.Management.Automation.Interpreter.PopInstruction\",\"System.Management.Automation.Interpreter.DupInstruction\",\"System.Management.Automation.Interpreter.SubInstruction\",\"System.Management.Automation.Interpreter.SubOvfInstruction\",\"System.Management.Automation.Interpreter.CreateDelegateInstruction\",\"System.Management.Automation.Interpreter.NewInstruction\",\"System.Management.Automation.Interpreter.DefaultValueInstruction`1[T]\",\"System.Management.Automation.Interpreter.TypeIsInstruction`1[T]\",\"System.Management.Automation.Interpreter.TypeAsInstruction`1[T]\",\"System.Management.Automation.Interpreter.TypeEqualsInstruction\",\"System.Management.Automation.Interpreter.TypeUtils\",\"System.Management.Automation.Interpreter.ArrayUtils\",\"System.Management.Automation.Interpreter.DelegateHelpers\",\"System.Management.Automation.Interpreter.ScriptingRuntimeHelpers\",\"System.Management.Automation.Interpreter.ArgumentArray\",\"System.Management.Automation.Interpreter.ExceptionHelpers\",\"System.Management.Automation.Interpreter.HybridReferenceDictionary`2[TKey,TValue]\",\"System.Management.Automation.Interpreter.CacheDict`2[TKey,TValue]\",\"System.Management.Automation.Interpreter.ThreadLocal`1[T]\",\"System.Management.Automation.Interpreter.Assert\",\"System.Management.Automation.Interpreter.ExpressionAccess\",\"System.Management.Automation.Interpreter.Utils\",\"System.Management.Automation.Interpreter.CollectionExtension\",\"System.Management.Automation.Interpreter.ListEqualityComparer`1[T]\",\"System.Management.Automation.Provider.ContainerCmdletProvider\",\"System.Management.Automation.Provider.DriveCmdletProvider\",\"System.Management.Automation.Provider.IContentCmdletProvider\",\"System.Management.Automation.Provider.IContentReader\",\"System.Management.Automation.Provider.IContentWriter\",\"System.Management.Automation.Provider.IDynamicPropertyCmdletProvider\",\"System.Management.Automation.Provider.ISecurityDescriptorCmdletProvider\",\"System.Management.Automation.Provider.IPropertyCmdletProvider\",\"System.Management.Automation.Provider.ItemCmdletProvider\",\"System.Management.Automation.Provider.NavigationCmdletProvider\",\"System.Management.Automation.Provider.ICmdletProviderSupportsHelp\",\"System.Management.Automation.Provider.CmdletProvider\",\"System.Management.Automation.Provider.CmdletProviderAttribute\",\"System.Management.Automation.Provider.ProviderCapabilities\",\"System.Management.Automation.Remoting.ObjectRef`1[T]\",\"System.Management.Automation.Remoting.RemoteHostMethodId\",\"System.Management.Automation.Remoting.RemoteHostMethodInfo\",\"System.Management.Automation.Remoting.ClientRemoteSessionContext\",\"System.Management.Automation.Remoting.ClientRemoteSession\",\"System.Management.Automation.Remoting.ClientRemoteSessionImpl\",\"System.Management.Automation.Remoting.BaseSessionDataStructureHandler\",\"System.Management.Automation.Remoting.ClientRemoteSessionDataStructureHandler\",\"System.Management.Automation.Remoting.ClientRemoteSessionDSHandlerStateMachine\",\"System.Management.Automation.Remoting.ClientRemoteSessionDSHandlerImpl\",\"System.Management.Automation.Remoting.OriginInfo\",\"System.Management.Automation.Remoting.ClientMethodExecutor\",\"System.Management.Automation.Remoting.RunspaceRef\",\"System.Management.Automation.Remoting.CmdletMethodInvoker`1[T]\",\"System.Management.Automation.Remoting.Indexer\",\"System.Management.Automation.Remoting.FragmentedRemoteObject\",\"System.Management.Automation.Remoting.SerializedDataStream\",\"System.Management.Automation.Remoting.Fragmentor\",\"System.Management.Automation.Remoting.PSRemotingErrorId\",\"System.Management.Automation.Remoting.PSRemotingErrorInvariants\",\"System.Management.Automation.Remoting.PSRemotingDataStructureException\",\"System.Management.Automation.Remoting.PSRemotingTransportException\",\"System.Management.Automation.Remoting.PSRemotingTransportRedirectException\",\"System.Management.Automation.Remoting.PSDirectException\",\"System.Management.Automation.Remoting.OperationState\",\"System.Management.Automation.Remoting.OperationStateEventArgs\",\"System.Management.Automation.Remoting.IThrottleOperation\",\"System.Management.Automation.Remoting.ThrottleManager\",\"System.Management.Automation.Remoting.Operation\",\"System.Management.Automation.Remoting.AsyncObject`1[T]\",\"System.Management.Automation.Remoting.RunspacePoolInitInfo\",\"System.Management.Automation.Remoting.ServerDispatchTable\",\"System.Management.Automation.Remoting.DispatchTable`1[T]\",\"System.Management.Automation.Remoting.RemoteHostCall\",\"System.Management.Automation.Remoting.RemoteHostResponse\",\"System.Management.Automation.Remoting.RemoteHostExceptions\",\"System.Management.Automation.Remoting.RemoteHostEncoder\",\"System.Management.Automation.Remoting.RemoteSessionCapability\",\"System.Management.Automation.Remoting.HostDefaultDataId\",\"System.Management.Automation.Remoting.HostDefaultData\",\"System.Management.Automation.Remoting.HostInfo\",\"System.Management.Automation.Remoting.RemoteDataObject`1[T]\",\"System.Management.Automation.Remoting.RemoteDataObject\",\"System.Management.Automation.Remoting.NamedPipeUtils\",\"System.Management.Automation.Remoting.NamedPipeNative\",\"System.Management.Automation.Remoting.ListenerEndedEventArgs\",\"System.Management.Automation.Remoting.RemoteSessionNamedPipeServer\",\"System.Management.Automation.Remoting.NamedPipeClientBase\",\"System.Management.Automation.Remoting.RemoteSessionNamedPipeClient\",\"System.Management.Automation.Remoting.ContainerSessionNamedPipeClient\",\"System.Management.Automation.Remoting.HyperVSocketEndPoint\",\"System.Management.Automation.Remoting.RemoteSessionHyperVSocketServer\",\"System.Management.Automation.Remoting.RemoteSessionHyperVSocketClient\",\"System.Management.Automation.Remoting.ServerMethodExecutor\",\"System.Management.Automation.Remoting.ServerRemoteSessionContext\",\"System.Management.Automation.Remoting.ServerRemoteSession\",\"System.Management.Automation.Remoting.ServerRemoteSessionDSHandlerStateMachine\",\"System.Management.Automation.Remoting.ServerRemoteSessionDataStructureHandler\",\"System.Management.Automation.Remoting.ServerRemoteSessionDSHandlerlImpl\",\"System.Management.Automation.Remoting.ServerRemoteHost\",\"System.Management.Automation.Remoting.ServerDriverRemoteHost\",\"System.Management.Automation.Remoting.ServerRemoteHostUserInterface\",\"System.Management.Automation.Remoting.ServerRemoteHostRawUserInterface\",\"System.Management.Automation.Remoting.ProxyAccessType\",\"System.Management.Automation.Remoting.PSSessionOption\",\"System.Management.Automation.Remoting.PSSenderInfo\",\"System.Management.Automation.Remoting.PSPrincipal\",\"System.Management.Automation.Remoting.PSIdentity\",\"System.Management.Automation.Remoting.PSCertificateDetails\",\"System.Management.Automation.Remoting.TransportMethodEnum\",\"System.Management.Automation.Remoting.TransportErrorOccuredEventArgs\",\"System.Management.Automation.Remoting.ConnectionStatus\",\"System.Management.Automation.Remoting.ConnectionStatusEventArgs\",\"System.Management.Automation.Remoting.CreateCompleteEventArgs\",\"System.Management.Automation.Remoting.BaseTransportManager\",\"System.Management.Automation.Remoting.ConfigurationDataFromXML\",\"System.Management.Automation.Remoting.PSSessionConfiguration\",\"System.Management.Automation.Remoting.DefaultRemotePowerShellConfiguration\",\"System.Management.Automation.Remoting.SessionType\",\"System.Management.Automation.Remoting.ConfigTypeEntry\",\"System.Management.Automation.Remoting.ConfigFileConstants\",\"System.Management.Automation.Remoting.DISCUtils\",\"System.Management.Automation.Remoting.DISCPowerShellConfiguration\",\"System.Management.Automation.Remoting.PSSessionConfigurationData\",\"System.Management.Automation.Remoting.OutOfProcessUtils\",\"System.Management.Automation.Remoting.OutOfProcessTextWriter\",\"System.Management.Automation.Remoting.DataPriorityType\",\"System.Management.Automation.Remoting.PrioritySendDataCollection\",\"System.Management.Automation.Remoting.ReceiveDataCollection\",\"System.Management.Automation.Remoting.PriorityReceiveDataCollection\",\"System.Management.Automation.Remoting.WSManPluginConstants\",\"System.Management.Automation.Remoting.WSManPluginErrorCodes\",\"System.Management.Automation.Remoting.WSManPluginOperationShutdownContext\",\"System.Management.Automation.Remoting.WSManPluginInstance\",\"System.Management.Automation.Remoting.WSMPluginShellDelegate\",\"System.Management.Automation.Remoting.WSMPluginReleaseShellContextDelegate\",\"System.Management.Automation.Remoting.WSMPluginConnectDelegate\",\"System.Management.Automation.Remoting.WSMPluginCommandDelegate\",\"System.Management.Automation.Remoting.WSMPluginReleaseCommandContextDelegate\",\"System.Management.Automation.Remoting.WSMPluginSendDelegate\",\"System.Management.Automation.Remoting.WSMPluginReceiveDelegate\",\"System.Management.Automation.Remoting.WSMPluginSignalDelegate\",\"System.Management.Automation.Remoting.WaitOrTimerCallbackDelegate\",\"System.Management.Automation.Remoting.WSMShutdownPluginDelegate\",\"System.Management.Automation.Remoting.WSManPluginEntryDelegates\",\"System.Management.Automation.Remoting.WSManPluginManagedEntryWrapper\",\"System.Management.Automation.Remoting.WSManPluginManagedEntryInstanceWrapper\",\"System.Management.Automation.Remoting.WSManPluginServerSession\",\"System.Management.Automation.Remoting.WSManPluginShellSession\",\"System.Management.Automation.Remoting.WSManPluginCommandSession\",\"System.Management.Automation.Remoting.WSManPluginServerTransportManager\",\"System.Management.Automation.Remoting.WSManPluginCommandTransportManager\",\"System.Management.Automation.Remoting.Client.BaseClientTransportManager\",\"System.Management.Automation.Remoting.Client.BaseClientSessionTransportManager\",\"System.Management.Automation.Remoting.Client.BaseClientCommandTransportManager\",\"System.Management.Automation.Remoting.Client.OutOfProcessClientSessionTransportManagerBase\",\"System.Management.Automation.Remoting.Client.OutOfProcessClientSessionTransportManager\",\"System.Management.Automation.Remoting.Client.HyperVSocketClientSessionTransportManagerBase\",\"System.Management.Automation.Remoting.Client.VMHyperVSocketClientSessionTransportManager\",\"System.Management.Automation.Remoting.Client.ContainerHyperVSocketClientSessionTransportManager\",\"System.Management.Automation.Remoting.Client.NamedPipeClientSessionTransportManagerBase\",\"System.Management.Automation.Remoting.Client.NamedPipeClientSessionTransportManager\",\"System.Management.Automation.Remoting.Client.ContainerNamedPipeClientSessionTransportManager\",\"System.Management.Automation.Remoting.Client.OutOfProcessClientCommandTransportManager\",\"System.Management.Automation.Remoting.Client.WSManTransportManagerUtils\",\"System.Management.Automation.Remoting.Client.WSManClientSessionTransportManager\",\"System.Management.Automation.Remoting.Client.WSManClientCommandTransportManager\",\"System.Management.Automation.Remoting.Client.WSManNativeApi\",\"System.Management.Automation.Remoting.Client.IWSManNativeApiFacade\",\"System.Management.Automation.Remoting.Client.WSManNativeApiFacade\",\"System.Management.Automation.Remoting.WSMan.WSManServerChannelEvents\",\"System.Management.Automation.Remoting.WSMan.ActiveSessionsChangedEventArgs\",\"System.Management.Automation.Remoting.Server.OutOfProcessMediatorBase\",\"System.Management.Automation.Remoting.Server.OutOfProcessMediator\",\"System.Management.Automation.Remoting.Server.NamedPipeProcessMediator\",\"System.Management.Automation.Remoting.Server.NamedPipeErrorTextWriter\",\"System.Management.Automation.Remoting.Server.HyperVSocketMediator\",\"System.Management.Automation.Remoting.Server.HyperVSocketErrorTextWriter\",\"System.Management.Automation.Remoting.Server.AbstractServerTransportManager\",\"System.Management.Automation.Remoting.Server.AbstractServerSessionTransportManager\",\"System.Management.Automation.Remoting.Server.ServerOperationHelpers\",\"System.Management.Automation.Remoting.Server.OutOfProcessServerSessionTransportManager\",\"System.Management.Automation.Remoting.Server.OutOfProcessServerTransportManager\",\"System.Management.Automation.Remoting.Internal.PSStreamObjectType\",\"System.Management.Automation.Remoting.Internal.PSStreamObject\",\"System.Management.Automation.Host.ChoiceDescription\",\"System.Management.Automation.Host.FieldDescription\",\"System.Management.Automation.Host.PSHost\",\"System.Management.Automation.Host.IHostSupportsInteractiveSession\",\"System.Management.Automation.Host.Coordinates\",\"System.Management.Automation.Host.Size\",\"System.Management.Automation.Host.ReadKeyOptions\",\"System.Management.Automation.Host.ControlKeyStates\",\"System.Management.Automation.Host.KeyInfo\",\"System.Management.Automation.Host.Rectangle\",\"System.Management.Automation.Host.BufferCell\",\"System.Management.Automation.Host.BufferCellType\",\"System.Management.Automation.Host.PSHostRawUserInterface\",\"System.Management.Automation.Host.PSHostUserInterface\",\"System.Management.Automation.Host.TranscriptionData\",\"System.Management.Automation.Host.TranscriptionOption\",\"System.Management.Automation.Host.IHostUISupportsMultipleChoiceSelection\",\"System.Management.Automation.Host.HostUIHelperMethods\",\"System.Management.Automation.Host.HostException\",\"System.Management.Automation.Host.PromptingException\",\"System.Management.Automation.Help.PositionalParameterComparer\",\"System.Management.Automation.Help.DefaultCommandHelpObjectBuilder\",\"System.Management.Automation.Help.CultureSpecificUpdatableHelp\",\"System.Management.Automation.Help.UpdatableHelpInfo\",\"System.Management.Automation.Help.UpdatableHelpModuleInfo\",\"System.Management.Automation.Help.UpdatableHelpSystemException\",\"System.Management.Automation.Help.UpdatableHelpExceptionContext\",\"System.Management.Automation.Help.UpdatableHelpCommandType\",\"System.Management.Automation.Help.UpdatableHelpProgressEventArgs\",\"System.Management.Automation.Help.UpdatableHelpSystem\",\"System.Management.Automation.Help.UpdatableHelpSystemDrive\",\"System.Management.Automation.Help.UpdatableHelpUri\",\"System.Management.Automation.Runspaces.TypesPs1xmlReader\",\"System.Management.Automation.Runspaces.ConsolidatedString\",\"System.Management.Automation.Runspaces.LoadContext\",\"System.Management.Automation.Runspaces.TypeTableLoadException\",\"System.Management.Automation.Runspaces.TypeData\",\"System.Management.Automation.Runspaces.TypeMemberData\",\"System.Management.Automation.Runspaces.NotePropertyData\",\"System.Management.Automation.Runspaces.AliasPropertyData\",\"System.Management.Automation.Runspaces.ScriptPropertyData\",\"System.Management.Automation.Runspaces.CodePropertyData\",\"System.Management.Automation.Runspaces.ScriptMethodData\",\"System.Management.Automation.Runspaces.CodeMethodData\",\"System.Management.Automation.Runspaces.PropertySetData\",\"System.Management.Automation.Runspaces.MemberSetData\",\"System.Management.Automation.Runspaces.TypeTable\",\"System.Management.Automation.Runspaces.Types_Ps1Xml\",\"System.Management.Automation.Runspaces.TypesV3_Ps1Xml\",\"System.Management.Automation.Runspaces.GetEvent_Types_Ps1Xml\",\"System.Management.Automation.Runspaces.AsyncResult\",\"System.Management.Automation.Runspaces.Command\",\"System.Management.Automation.Runspaces.PipelineResultTypes\",\"System.Management.Automation.Runspaces.CommandCollection\",\"System.Management.Automation.Runspaces.InvalidRunspaceStateException\",\"System.Management.Automation.Runspaces.RunspaceState\",\"System.Management.Automation.Runspaces.PSThreadOptions\",\"System.Management.Automation.Runspaces.RunspaceStateInfo\",\"System.Management.Automation.Runspaces.RunspaceStateEventArgs\",\"System.Management.Automation.Runspaces.RunspaceAvailability\",\"System.Management.Automation.Runspaces.RunspaceAvailabilityEventArgs\",\"System.Management.Automation.Runspaces.RunspaceCapability\",\"System.Management.Automation.Runspaces.Runspace\",\"System.Management.Automation.Runspaces.SessionStateProxy\",\"System.Management.Automation.Runspaces.RunspaceBase\",\"System.Management.Automation.Runspaces.RunspaceFactory\",\"System.Management.Automation.Runspaces.LocalRunspace\",\"System.Management.Automation.Runspaces.StopJobOperationHelper\",\"System.Management.Automation.Runspaces.CloseOrDisconnectRunspaceOperationHelper\",\"System.Management.Automation.Runspaces.RunspaceOpenModuleLoadException\",\"System.Management.Automation.Runspaces.LocalPipeline\",\"System.Management.Automation.Runspaces.PipelineThread\",\"System.Management.Automation.Runspaces.PipelineStopper\",\"System.Management.Automation.Runspaces.CommandParameter\",\"System.Management.Automation.Runspaces.CommandParameterCollection\",\"System.Management.Automation.Runspaces.InvalidPipelineStateException\",\"System.Management.Automation.Runspaces.PipelineState\",\"System.Management.Automation.Runspaces.PipelineStateInfo\",\"System.Management.Automation.Runspaces.PipelineStateEventArgs\",\"System.Management.Automation.Runspaces.Pipeline\",\"System.Management.Automation.Runspaces.PipelineBase\",\"System.Management.Automation.Runspaces.InvalidRunspacePoolStateException\",\"System.Management.Automation.Runspaces.RunspacePoolState\",\"System.Management.Automation.Runspaces.RunspacePoolStateChangedEventArgs\",\"System.Management.Automation.Runspaces.RunspaceCreatedEventArgs\",\"System.Management.Automation.Runspaces.RunspacePoolAvailability\",\"System.Management.Automation.Runspaces.RunspacePoolCapability\",\"System.Management.Automation.Runspaces.RunspacePoolAsyncResult\",\"System.Management.Automation.Runspaces.GetRunspaceAsyncResult\",\"System.Management.Automation.Runspaces.RunspacePool\",\"System.Management.Automation.Runspaces.PowerShellProcessInstance\",\"System.Management.Automation.Runspaces.TargetMachineType\",\"System.Management.Automation.Runspaces.PSSession\",\"System.Management.Automation.Runspaces.RemotingErrorRecord\",\"System.Management.Automation.Runspaces.RemotingProgressRecord\",\"System.Management.Automation.Runspaces.RemotingWarningRecord\",\"System.Management.Automation.Runspaces.RemotingDebugRecord\",\"System.Management.Automation.Runspaces.RemotingVerboseRecord\",\"System.Management.Automation.Runspaces.RemotingInformationRecord\",\"System.Management.Automation.Runspaces.AuthenticationMechanism\",\"System.Management.Automation.Runspaces.PSSessionType\",\"System.Management.Automation.Runspaces.PSSessionConfigurationAccessMode\",\"System.Management.Automation.Runspaces.OutputBufferingMode\",\"System.Management.Automation.Runspaces.RunspaceConnectionInfo\",\"System.Management.Automation.Runspaces.WSManConnectionInfo\",\"System.Management.Automation.Runspaces.NewProcessConnectionInfo\",\"System.Management.Automation.Runspaces.NamedPipeConnectionInfo\",\"System.Management.Automation.Runspaces.VMConnectionInfo\",\"System.Management.Automation.Runspaces.ContainerConnectionInfo\",\"System.Management.Automation.Runspaces.ContainerProcess\",\"System.Management.Automation.Runspaces.RunspaceConfiguration\",\"System.Management.Automation.Runspaces.RunspaceConfigurationCategory\",\"System.Management.Automation.Runspaces.RunspaceConfigurationEntry\",\"System.Management.Automation.Runspaces.TypeConfigurationEntry\",\"System.Management.Automation.Runspaces.FormatConfigurationEntry\",\"System.Management.Automation.Runspaces.CmdletConfigurationEntry\",\"System.Management.Automation.Runspaces.ProviderConfigurationEntry\",\"System.Management.Automation.Runspaces.ScriptConfigurationEntry\",\"System.Management.Automation.Runspaces.AssemblyConfigurationEntry\",\"System.Management.Automation.Runspaces.UpdateAction\",\"System.Management.Automation.Runspaces.RunspaceConfigurationEntryUpdateEventHandler\",\"System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection`1[T]\",\"System.Management.Automation.Runspaces.RunspaceConfigurationTypeAttribute\",\"System.Management.Automation.Runspaces.RunspaceConfigurationAttributeException\",\"System.Management.Automation.Runspaces.RunspaceConfigurationTypeException\",\"System.Management.Automation.Runspaces.RunspaceConfigurationHelper\",\"System.Management.Automation.Runspaces.PSSnapInTypeAndFormatErrors\",\"System.Management.Automation.Runspaces.FormatAndTypeDataHelper\",\"System.Management.Automation.Runspaces.EarlyStartup\",\"System.Management.Automation.Runspaces.InitialSessionStateEntry\",\"System.Management.Automation.Runspaces.ConstrainedSessionStateEntry\",\"System.Management.Automation.Runspaces.SessionStateCommandEntry\",\"System.Management.Automation.Runspaces.SessionStateTypeEntry\",\"System.Management.Automation.Runspaces.SessionStateFormatEntry\",\"System.Management.Automation.Runspaces.SessionStateAssemblyEntry\",\"System.Management.Automation.Runspaces.SessionStateCmdletEntry\",\"System.Management.Automation.Runspaces.SessionStateProviderEntry\",\"System.Management.Automation.Runspaces.SessionStateScriptEntry\",\"System.Management.Automation.Runspaces.SessionStateAliasEntry\",\"System.Management.Automation.Runspaces.SessionStateApplicationEntry\",\"System.Management.Automation.Runspaces.SessionStateFunctionEntry\",\"System.Management.Automation.Runspaces.SessionStateWorkflowEntry\",\"System.Management.Automation.Runspaces.SessionStateVariableEntry\",\"System.Management.Automation.Runspaces.InitialSessionStateEntryCollection`1[T]\",\"System.Management.Automation.Runspaces.InitialSessionState\",\"System.Management.Automation.Runspaces.PSSnapInHelpers\",\"System.Management.Automation.Runspaces.RunspaceEventSource\",\"System.Management.Automation.Runspaces.RunspaceConfigForSingleShell\",\"System.Management.Automation.Runspaces.PSConsoleFileElement\",\"System.Management.Automation.Runspaces.MshConsoleInfo\",\"System.Management.Automation.Runspaces.PSConsoleLoadException\",\"System.Management.Automation.Runspaces.PSSnapInException\",\"System.Management.Automation.Runspaces.PipelineReader`1[T]\",\"System.Management.Automation.Runspaces.PipelineWriter\",\"System.Management.Automation.Runspaces.DiscardingPipelineWriter\",\"System.Management.Automation.Runspaces.FormatTableLoadException\",\"System.Management.Automation.Runspaces.FormatTable\",\"System.Management.Automation.Runspaces.Certificate_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.Diagnostics_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.Event_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.FileSystem_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.PowerShellTrace_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.Registry_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml\",\"System.Management.Automation.Runspaces.Internal.RunspacePoolInternal\",\"System.Management.Automation.Runspaces.Internal.RemoteRunspacePoolInternal\",\"System.Management.Automation.Runspaces.Internal.ConnectCommandInfo\",\"System.Management.Automation.Runspaces.Internal.RemoteRunspacePoolEnumeration\",\"System.Management.Automation.Runspaces.Internal.ClientRemotePowerShell\",\"System.Management.Automation.Runspaces.Internal.PSConnectionRetryStatus\",\"System.Management.Automation.Runspaces.Internal.PSConnectionRetryStatusEventArgs\",\"System.Management.Automation.Language.NullString\",\"System.Management.Automation.Language.CodeGeneration\",\"System.Management.Automation.Language.ISupportsAssignment\",\"System.Management.Automation.Language.IAssignableValue\",\"System.Management.Automation.Language.IParameterMetadataProvider\",\"System.Management.Automation.Language.Ast\",\"System.Management.Automation.Language.SequencePointAst\",\"System.Management.Automation.Language.ErrorStatementAst\",\"System.Management.Automation.Language.ErrorExpressionAst\",\"System.Management.Automation.Language.ScriptRequirements\",\"System.Management.Automation.Language.ScriptBlockAst\",\"System.Management.Automation.Language.ParamBlockAst\",\"System.Management.Automation.Language.NamedBlockAst\",\"System.Management.Automation.Language.NamedAttributeArgumentAst\",\"System.Management.Automation.Language.AttributeBaseAst\",\"System.Management.Automation.Language.AttributeAst\",\"System.Management.Automation.Language.TypeConstraintAst\",\"System.Management.Automation.Language.ParameterAst\",\"System.Management.Automation.Language.StatementBlockAst\",\"System.Management.Automation.Language.StatementAst\",\"System.Management.Automation.Language.TypeAttributes\",\"System.Management.Automation.Language.TypeDefinitionAst\",\"System.Management.Automation.Language.UsingStatementKind\",\"System.Management.Automation.Language.UsingStatementAst\",\"System.Management.Automation.Language.MemberAst\",\"System.Management.Automation.Language.PropertyAttributes\",\"System.Management.Automation.Language.PropertyMemberAst\",\"System.Management.Automation.Language.MethodAttributes\",\"System.Management.Automation.Language.FunctionMemberAst\",\"System.Management.Automation.Language.SpecialMemberFunctionType\",\"System.Management.Automation.Language.CompilerGeneratedMemberFunctionAst\",\"System.Management.Automation.Language.FunctionDefinitionAst\",\"System.Management.Automation.Language.IfStatementAst\",\"System.Management.Automation.Language.DataStatementAst\",\"System.Management.Automation.Language.LabeledStatementAst\",\"System.Management.Automation.Language.LoopStatementAst\",\"System.Management.Automation.Language.ForEachFlags\",\"System.Management.Automation.Language.ForEachStatementAst\",\"System.Management.Automation.Language.ForStatementAst\",\"System.Management.Automation.Language.DoWhileStatementAst\",\"System.Management.Automation.Language.DoUntilStatementAst\",\"System.Management.Automation.Language.WhileStatementAst\",\"System.Management.Automation.Language.SwitchFlags\",\"System.Management.Automation.Language.SwitchStatementAst\",\"System.Management.Automation.Language.CatchClauseAst\",\"System.Management.Automation.Language.TryStatementAst\",\"System.Management.Automation.Language.TrapStatementAst\",\"System.Management.Automation.Language.BreakStatementAst\",\"System.Management.Automation.Language.ContinueStatementAst\",\"System.Management.Automation.Language.ReturnStatementAst\",\"System.Management.Automation.Language.ExitStatementAst\",\"System.Management.Automation.Language.ThrowStatementAst\",\"System.Management.Automation.Language.PipelineBaseAst\",\"System.Management.Automation.Language.PipelineAst\",\"System.Management.Automation.Language.CommandElementAst\",\"System.Management.Automation.Language.CommandParameterAst\",\"System.Management.Automation.Language.CommandBaseAst\",\"System.Management.Automation.Language.CommandAst\",\"System.Management.Automation.Language.CommandExpressionAst\",\"System.Management.Automation.Language.RedirectionAst\",\"System.Management.Automation.Language.RedirectionStream\",\"System.Management.Automation.Language.MergingRedirectionAst\",\"System.Management.Automation.Language.FileRedirectionAst\",\"System.Management.Automation.Language.AssignmentStatementAst\",\"System.Management.Automation.Language.ConfigurationType\",\"System.Management.Automation.Language.ConfigurationDefinitionAst\",\"System.Management.Automation.Language.DynamicKeywordStatementAst\",\"System.Management.Automation.Language.ExpressionAst\",\"System.Management.Automation.Language.BinaryExpressionAst\",\"System.Management.Automation.Language.UnaryExpressionAst\",\"System.Management.Automation.Language.BlockStatementAst\",\"System.Management.Automation.Language.AttributedExpressionAst\",\"System.Management.Automation.Language.ConvertExpressionAst\",\"System.Management.Automation.Language.MemberExpressionAst\",\"System.Management.Automation.Language.InvokeMemberExpressionAst\",\"System.Management.Automation.Language.BaseCtorInvokeMemberExpressionAst\",\"System.Management.Automation.Language.ITypeName\",\"System.Management.Automation.Language.ISupportsTypeCaching\",\"System.Management.Automation.Language.TypeName\",\"System.Management.Automation.Language.GenericTypeName\",\"System.Management.Automation.Language.ArrayTypeName\",\"System.Management.Automation.Language.ReflectionTypeName\",\"System.Management.Automation.Language.TypeExpressionAst\",\"System.Management.Automation.Language.VariableExpressionAst\",\"System.Management.Automation.Language.ConstantExpressionAst\",\"System.Management.Automation.Language.StringConstantType\",\"System.Management.Automation.Language.StringConstantExpressionAst\",\"System.Management.Automation.Language.ExpandableStringExpressionAst\",\"System.Management.Automation.Language.ScriptBlockExpressionAst\",\"System.Management.Automation.Language.ArrayLiteralAst\",\"System.Management.Automation.Language.HashtableAst\",\"System.Management.Automation.Language.ArrayExpressionAst\",\"System.Management.Automation.Language.ParenExpressionAst\",\"System.Management.Automation.Language.SubExpressionAst\",\"System.Management.Automation.Language.UsingExpressionAst\",\"System.Management.Automation.Language.IndexExpressionAst\",\"System.Management.Automation.Language.CommentHelpInfo\",\"System.Management.Automation.Language.ICustomAstVisitor\",\"System.Management.Automation.Language.ICustomAstVisitor2\",\"System.Management.Automation.Language.AstSearcher\",\"System.Management.Automation.Language.DefaultCustomAstVisitor\",\"System.Management.Automation.Language.DefaultCustomAstVisitor2\",\"System.Management.Automation.Language.SpecialChars\",\"System.Management.Automation.Language.CharTraits\",\"System.Management.Automation.Language.CharExtensions\",\"System.Management.Automation.Language.IsConstantValueVisitor\",\"System.Management.Automation.Language.ConstantValueVisitor\",\"System.Management.Automation.Language.CachedReflectionInfo\",\"System.Management.Automation.Language.ExpressionCache\",\"System.Management.Automation.Language.ExpressionExtensions\",\"System.Management.Automation.Language.FunctionContext\",\"System.Management.Automation.Language.Compiler\",\"System.Management.Automation.Language.MemberAssignableValue\",\"System.Management.Automation.Language.InvokeMemberAssignableValue\",\"System.Management.Automation.Language.IndexAssignableValue\",\"System.Management.Automation.Language.ArrayAssignableValue\",\"System.Management.Automation.Language.PowerShellLoopExpression\",\"System.Management.Automation.Language.EnterLoopExpression\",\"System.Management.Automation.Language.UpdatePositionExpr\",\"System.Management.Automation.Language.ParseMode\",\"System.Management.Automation.Language.Parser\",\"System.Management.Automation.Language.ParseError\",\"System.Management.Automation.Language.ParserEventSource\",\"System.Management.Automation.Language.IScriptPosition\",\"System.Management.Automation.Language.IScriptExtent\",\"System.Management.Automation.Language.PositionUtilities\",\"System.Management.Automation.Language.PositionHelper\",\"System.Management.Automation.Language.InternalScriptPosition\",\"System.Management.Automation.Language.InternalScriptExtent\",\"System.Management.Automation.Language.EmptyScriptPosition\",\"System.Management.Automation.Language.EmptyScriptExtent\",\"System.Management.Automation.Language.ScriptPosition\",\"System.Management.Automation.Language.ScriptExtent\",\"System.Management.Automation.Language.AstVisitAction\",\"System.Management.Automation.Language.AstVisitor\",\"System.Management.Automation.Language.AstVisitor2\",\"System.Management.Automation.Language.IAstPostVisitHandler\",\"System.Management.Automation.Language.IsSafeValueVisitor\",\"System.Management.Automation.Language.GetSafeValueVisitor\",\"System.Management.Automation.Language.SemanticChecks\",\"System.Management.Automation.Language.DscResourceChecker\",\"System.Management.Automation.Language.RestrictedLanguageChecker\",\"System.Management.Automation.Language.ScopeType\",\"System.Management.Automation.Language.TypeLookupResult\",\"System.Management.Automation.Language.Scope\",\"System.Management.Automation.Language.SymbolTable\",\"System.Management.Automation.Language.SymbolResolver\",\"System.Management.Automation.Language.SymbolResolvePostActionVisitor\",\"System.Management.Automation.Language.TokenKind\",\"System.Management.Automation.Language.TokenFlags\",\"System.Management.Automation.Language.TokenTraits\",\"System.Management.Automation.Language.Token\",\"System.Management.Automation.Language.NumberToken\",\"System.Management.Automation.Language.ParameterToken\",\"System.Management.Automation.Language.VariableToken\",\"System.Management.Automation.Language.StringToken\",\"System.Management.Automation.Language.StringLiteralToken\",\"System.Management.Automation.Language.StringExpandableToken\",\"System.Management.Automation.Language.LabelToken\",\"System.Management.Automation.Language.RedirectionToken\",\"System.Management.Automation.Language.InputRedirectionToken\",\"System.Management.Automation.Language.MergingRedirectionToken\",\"System.Management.Automation.Language.FileRedirectionToken\",\"System.Management.Automation.Language.UnscannedSubExprToken\",\"System.Management.Automation.Language.DynamicKeywordNameMode\",\"System.Management.Automation.Language.DynamicKeywordBodyMode\",\"System.Management.Automation.Language.DynamicKeyword\",\"System.Management.Automation.Language.DynamicKeywordExtension\",\"System.Management.Automation.Language.DynamicKeywordProperty\",\"System.Management.Automation.Language.DynamicKeywordParameter\",\"System.Management.Automation.Language.TokenizerMode\",\"System.Management.Automation.Language.TokenizerState\",\"System.Management.Automation.Language.Tokenizer\",\"System.Management.Automation.Language.TypeResolver\",\"System.Management.Automation.Language.TypeResolutionState\",\"System.Management.Automation.Language.TypeCache\",\"System.Management.Automation.Language.VariablePathExtentions\",\"System.Management.Automation.Language.VariableAnalysisDetails\",\"System.Management.Automation.Language.FindAllVariablesVisitor\",\"System.Management.Automation.Language.VariableAnalysis\",\"System.Management.Automation.Language.DynamicMetaObjectExtensions\",\"System.Management.Automation.Language.DynamicMetaObjectBinderExtentions\",\"System.Management.Automation.Language.BinderUtils\",\"System.Management.Automation.Language.PSEnumerableBinder\",\"System.Management.Automation.Language.PSToObjectArrayBinder\",\"System.Management.Automation.Language.PSPipeWriterBinder\",\"System.Management.Automation.Language.PSArrayAssignmentRHSBinder\",\"System.Management.Automation.Language.PSToStringBinder\",\"System.Management.Automation.Language.PSPipelineResultToBoolBinder\",\"System.Management.Automation.Language.PSInvokeDynamicMemberBinder\",\"System.Management.Automation.Language.PSDynamicGetOrSetBinderKeyComparer\",\"System.Management.Automation.Language.PSGetDynamicMemberBinder\",\"System.Management.Automation.Language.PSSetDynamicMemberBinder\",\"System.Management.Automation.Language.PSSwitchClauseEvalBinder\",\"System.Management.Automation.Language.PSAttributeGenerator\",\"System.Management.Automation.Language.PSCustomObjectConverter\",\"System.Management.Automation.Language.PSDynamicConvertBinder\",\"System.Management.Automation.Language.PSVariableAssignmentBinder\",\"System.Management.Automation.Language.PSBinaryOperationBinder\",\"System.Management.Automation.Language.PSUnaryOperationBinder\",\"System.Management.Automation.Language.PSConvertBinder\",\"System.Management.Automation.Language.PSGetIndexBinder\",\"System.Management.Automation.Language.PSSetIndexBinder\",\"System.Management.Automation.Language.PSGetMemberBinder\",\"System.Management.Automation.Language.PSSetMemberBinder\",\"System.Management.Automation.Language.PSInvokeBinder\",\"System.Management.Automation.Language.PSInvokeMemberBinder\",\"System.Management.Automation.Language.PSCreateInstanceBinder\",\"System.Management.Automation.Language.PSInvokeBaseCtorBinder\",\"System.Management.Automation.Language.TypeDefiner\",\"System.Management.Automation.Language.AstParameterArgumentType\",\"System.Management.Automation.Language.AstParameterArgumentPair\",\"System.Management.Automation.Language.PipeObjectPair\",\"System.Management.Automation.Language.AstArrayPair\",\"System.Management.Automation.Language.FakePair\",\"System.Management.Automation.Language.SwitchPair\",\"System.Management.Automation.Language.AstPair\",\"System.Management.Automation.Language.StaticParameterBinder\",\"System.Management.Automation.Language.StaticBindingResult\",\"System.Management.Automation.Language.ParameterBindingResult\",\"System.Management.Automation.Language.StaticBindingError\",\"System.Management.Automation.Language.PseudoBindingInfoType\",\"System.Management.Automation.Language.PseudoBindingInfo\",\"System.Management.Automation.Language.PseudoParameterBinder\",\"System.Management.Automation.Internal.InternalCommand\",\"System.Management.Automation.Internal.CommonParameters\",\"System.Management.Automation.Internal.ShouldProcessParameters\",\"System.Management.Automation.Internal.TransactionParameters\",\"System.Management.Automation.Internal.ModuleUtils\",\"System.Management.Automation.Internal.DebuggerUtils\",\"System.Management.Automation.Internal.PSMonitorRunspaceType\",\"System.Management.Automation.Internal.PSMonitorRunspaceInfo\",\"System.Management.Automation.Internal.PSStandaloneMonitorRunspaceInfo\",\"System.Management.Automation.Internal.PSEmbeddedMonitorRunspaceInfo\",\"System.Management.Automation.Internal.ICabinetExtractor\",\"System.Management.Automation.Internal.ICabinetExtractorLoader\",\"System.Management.Automation.Internal.CabinetExtractorFactory\",\"System.Management.Automation.Internal.EmptyCabinetExtractor\",\"System.Management.Automation.Internal.CabinetExtractor\",\"System.Management.Automation.Internal.CabinetExtractorLoader\",\"System.Management.Automation.Internal.CabinetNativeApi\",\"System.Management.Automation.Internal.PSKeyword\",\"System.Management.Automation.Internal.PSLevel\",\"System.Management.Automation.Internal.PSOpcode\",\"System.Management.Automation.Internal.PSEventId\",\"System.Management.Automation.Internal.PSChannel\",\"System.Management.Automation.Internal.PSTask\",\"System.Management.Automation.Internal.PSEventVersion\",\"System.Management.Automation.Internal.PSETWBinaryBlob\",\"System.Management.Automation.Internal.ClientRunspacePoolDataStructureHandler\",\"System.Management.Automation.Internal.ClientPowerShellDataStructureHandler\",\"System.Management.Automation.Internal.InformationalMessage\",\"System.Management.Automation.Internal.RobustConnectionProgress\",\"System.Management.Automation.Internal.CmdletMetadataAttribute\",\"System.Management.Automation.Internal.ParsingBaseAttribute\",\"System.Management.Automation.Internal.InternalTestHooks\",\"System.Management.Automation.Internal.IAstToWorkflowConverter\",\"System.Management.Automation.Internal.SessionStateKeeper\",\"System.Management.Automation.Internal.ScriptBlockMemberMethodWrapper\",\"System.Management.Automation.Internal.ClassOps\",\"System.Management.Automation.Internal.AutomationNull\",\"System.Management.Automation.Internal.VariableStreamKind\",\"System.Management.Automation.Internal.Pipe\",\"System.Management.Automation.Internal.PipelineProcessor\",\"System.Management.Automation.Internal.AlternateStreamData\",\"System.Management.Automation.Internal.AlternateDataStreamUtilities\",\"System.Management.Automation.Internal.CopyFileRemoteUtils\",\"System.Management.Automation.Internal.SaferPolicy\",\"System.Management.Automation.Internal.SecuritySupport\",\"System.Management.Automation.Internal.CertificateFilterInfo\",\"System.Management.Automation.Internal.ArchitectureSensitiveAttribute\",\"System.Management.Automation.Internal.ObjectReaderBase`1[T]\",\"System.Management.Automation.Internal.ObjectReader\",\"System.Management.Automation.Internal.PSObjectReader\",\"System.Management.Automation.Internal.PSDataCollectionReader`2[DataStoreType,ReturnType]\",\"System.Management.Automation.Internal.PSDataCollectionPipelineReader`2[DataStoreType,ReturnType]\",\"System.Management.Automation.Internal.ObjectStreamBase\",\"System.Management.Automation.Internal.ObjectStream\",\"System.Management.Automation.Internal.PSDataCollectionStream`1[T]\",\"System.Management.Automation.Internal.ObjectWriter\",\"System.Management.Automation.Internal.PSDataCollectionWriter`1[T]\",\"System.Management.Automation.Internal.StringUtil\",\"System.Management.Automation.Internal.PSSafeCryptProvHandle\",\"System.Management.Automation.Internal.PSSafeCryptKey\",\"System.Management.Automation.Internal.PSCryptoNativeUtils\",\"System.Management.Automation.Internal.PSCryptoException\",\"System.Management.Automation.Internal.PSRSACryptoServiceProvider\",\"System.Management.Automation.Internal.PSRemotingCryptoHelper\",\"System.Management.Automation.Internal.PSRemotingCryptoHelperServer\",\"System.Management.Automation.Internal.PSRemotingCryptoHelperClient\",\"System.Management.Automation.Internal.TestHelperSession\",\"System.Management.Automation.Internal.TelemetryWrapper\",\"System.Management.Automation.Internal.GraphicalHostReflectionWrapper\",\"System.Management.Automation.Internal.PSTransactionManager\",\"System.Management.Automation.Internal.Host.InternalHost\",\"System.Management.Automation.Internal.Host.InternalHostRawUserInterface\",\"System.Management.Automation.Internal.Host.InternalHostUserInterface\",\"<PrivateImplementationDetails>\",\"Microsoft.CodeAnalysis.GlobalAssemblyCache+IAssemblyEnum\",\"Microsoft.CodeAnalysis.GlobalAssemblyCache+IAssemblyCache\",\"Microsoft.CodeAnalysis.GlobalAssemblyCache+ASSEMBLY_INFO\",\"Microsoft.CodeAnalysis.GlobalAssemblyCache+ASM_CACHE\",\"Microsoft.CodeAnalysis.GlobalAssemblyCache+<GetAssemblyObjects>d__10\",\"Microsoft.CodeAnalysis.FusionAssemblyIdentity+ASM_DISPLAYF\",\"Microsoft.CodeAnalysis.FusionAssemblyIdentity+PropertyId\",\"Microsoft.CodeAnalysis.FusionAssemblyIdentity+CANOF\",\"Microsoft.CodeAnalysis.FusionAssemblyIdentity+IAssemblyName\",\"Microsoft.CodeAnalysis.FusionAssemblyIdentity+IApplicationContext\",\"Microsoft.PowerShell.DeserializingTypeConverter+RehydrationFlags\",\"Microsoft.PowerShell.PSAuthorizationManager+RunPromptDecision\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache+<>c\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache+<>c__DisplayClass39_0\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache+<>c__DisplayClass42_0\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache+<>c__DisplayClass45_0\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache+<>c__DisplayClass63_0\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache+<>c__DisplayClass65_0\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache+<>c__DisplayClass83_0\",\"Microsoft.PowerShell.Cmdletization.ScriptWriter+GenerationOptions\",\"Microsoft.PowerShell.Cmdletization.ScriptWriter+<>c\",\"Microsoft.PowerShell.Cmdletization.ScriptWriter+<>c__DisplayClass26_0\",\"Microsoft.PowerShell.Telemetry.Internal.TelemetryAPI+HostIsInteractive\",\"Microsoft.PowerShell.Telemetry.Internal.TelemetryAPI+RemoteSessionType\",\"Microsoft.PowerShell.Telemetry.Internal.TelemetryAPI+RemoteConfigurationType\",\"Microsoft.PowerShell.Telemetry.Internal.TelemetryAPI+ScriptFileType\",\"Microsoft.PowerShell.Telemetry.Internal.TelemetryAPI+<>c__DisplayClass20_0\",\"Microsoft.PowerShell.Commands.GetCommandCommand+CommandInfoComparer\",\"Microsoft.PowerShell.Commands.GetCommandCommand+<>c__DisplayClass60_0\",\"Microsoft.PowerShell.Commands.GetCommandCommand+<>c__DisplayClass64_0\",\"Microsoft.PowerShell.Commands.GetCommandCommand+<>c\",\"Microsoft.PowerShell.Commands.GetCommandCommand+<>c__DisplayClass68_0\",\"Microsoft.PowerShell.Commands.GetCommandCommand+<>c__DisplayClass76_0\",\"Microsoft.PowerShell.Commands.GetCommandCommand+<GetMatchingCommandsFromModules>d__76\",\"Microsoft.PowerShell.Commands.NounArgumentCompleter+<>c\",\"Microsoft.PowerShell.Commands.GetModuleCommand+<GetAvailableViaPsrpSessionCore>d__44\",\"Microsoft.PowerShell.Commands.GetModuleCommand+<>c__DisplayClass47_0\",\"Microsoft.PowerShell.Commands.GetModuleCommand+<>c\",\"Microsoft.PowerShell.Commands.GetModuleCommand+<>c__DisplayClass59_0\",\"Microsoft.PowerShell.Commands.GetModuleCommand+<>c__DisplayClass60_0\",\"Microsoft.PowerShell.Commands.GetModuleCommand+<>c__DisplayClass61_0\",\"Microsoft.PowerShell.Commands.GetModuleCommand+<>c__DisplayClass62_0\",\"Microsoft.PowerShell.Commands.PSEditionArgumentCompleter+<CompleteArgument>d__0\",\"Microsoft.PowerShell.Commands.ImportModuleCommand+<>c__DisplayClass103_0\",\"Microsoft.PowerShell.Commands.ImportModuleCommand+<>c\",\"Microsoft.PowerShell.Commands.ImportModuleCommand+<>c__DisplayClass104_0\",\"Microsoft.PowerShell.Commands.ImportModuleCommand+<>c__DisplayClass110_0\",\"Microsoft.PowerShell.Commands.ImportModuleCommand+<>c__DisplayClass119_0\",\"Microsoft.PowerShell.Commands.ImportModuleCommand+<>c__DisplayClass119_1\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase+ManifestProcessingFlags\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase+ImportModuleOptions\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase+ModuleLoggingGroupPolicyStatus\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase+<GetModuleForNonRootedPaths>d__85\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase+<GetModuleForRootedPaths>d__86\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase+<>c\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase+<GetAllAvailableModules>d__89\",\"Microsoft.PowerShell.Commands.NewModuleManifestCommand+<PreProcessModuleSpec>d__151\",\"Microsoft.PowerShell.Commands.NewModuleManifestCommand+<>c__DisplayClass158_0\",\"Microsoft.PowerShell.Commands.NewModuleManifestCommand+<>c__DisplayClass160_0\",\"Microsoft.PowerShell.Commands.RemoveModuleCommand+<>c\",\"Microsoft.PowerShell.Commands.GetHelpCommand+HelpView\",\"Microsoft.PowerShell.Commands.GetHelpCodeMethods+<>c\",\"Microsoft.PowerShell.Commands.UpdatableHelpCommandBase+<ResolvePath>d__41\",\"Microsoft.PowerShell.Commands.UpdatableHelpCommandBase+<RecursiveResolvePathHelper>d__42\",\"Microsoft.PowerShell.Commands.GetPSSessionCapabilityCommand+<>c__DisplayClass12_0\",\"Microsoft.PowerShell.Commands.GetPSSessionCapabilityCommand+<>c\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass29_0\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass30_0\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass30_1\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass30_2\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass30_3\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass31_0\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass33_0\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand+<>c__DisplayClass39_0\",\"Microsoft.PowerShell.Commands.DisconnectPSSessionCommand+DisconnectRunspaceOperation\",\"Microsoft.PowerShell.Commands.ConnectPSSessionCommand+ConnectRunspaceOperation\",\"Microsoft.PowerShell.Commands.ConnectPSSessionCommand+OverrideParameter\",\"Microsoft.PowerShell.Commands.ConnectPSSessionCommand+<>c__DisplayClass79_0\",\"Microsoft.PowerShell.Commands.QueryRunspaces+<>c__DisplayClass1_0\",\"Microsoft.PowerShell.Commands.QueryRunspaces+<>c__DisplayClass1_1\",\"Microsoft.PowerShell.Commands.QueryRunspaces+<>c__DisplayClass1_2\",\"Microsoft.PowerShell.Commands.ReceivePSSessionCommand+<>c__DisplayClass84_0\",\"Microsoft.PowerShell.Commands.PSRemotingBaseCmdlet+VMState\",\"Microsoft.PowerShell.Commands.PSExecutionCmdlet+<>c\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass38_0\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass38_1\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass38_2\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass38_3\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass39_0\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass39_1\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass39_2\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass39_3\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass40_0\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass40_1\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass40_2\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass41_0\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass41_1\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet+<>c__DisplayClass41_2\",\"Microsoft.PowerShell.Commands.GetJobCommand+<>c\",\"Microsoft.PowerShell.Commands.StopJobCommand+<>c\",\"Microsoft.PowerShell.Commands.WaitJobCommand+<>c\",\"Microsoft.PowerShell.Commands.SuspendJobCommand+<>c\",\"Microsoft.PowerShell.Commands.ResumeJobCommand+<>c\",\"Microsoft.PowerShell.Commands.EnterPSSessionCommand+<>c__DisplayClass61_0\",\"Microsoft.PowerShell.Commands.EnterPSSessionCommand+<>c__DisplayClass65_0\",\"Microsoft.PowerShell.Commands.EnterPSSessionCommand+<>c__DisplayClass66_0\",\"Microsoft.PowerShell.Commands.EnterPSSessionCommand+<>c__DisplayClass67_0\",\"Microsoft.PowerShell.Commands.EnterPSSessionCommand+<>c__DisplayClass76_0\",\"Microsoft.PowerShell.Commands.SessionConfigurationUtils+<>c\",\"Microsoft.PowerShell.Commands.GetPSHostProcessInfoCommand+<>c__DisplayClass19_0\",\"Microsoft.PowerShell.Commands.WhereObjectCommand+<>c__DisplayClass112_0\",\"Microsoft.PowerShell.Commands.WhereObjectCommand+<>c__DisplayClass116_0\",\"Microsoft.PowerShell.Commands.WhereObjectCommand+<>c__DisplayClass116_1\",\"Microsoft.PowerShell.Commands.WhereObjectCommand+<>c__DisplayClass116_2\",\"Microsoft.PowerShell.Commands.SetStrictModeCommand+ArgumentToVersionTransformationAttribute\",\"Microsoft.PowerShell.Commands.SetStrictModeCommand+ValidateVersionAttribute\",\"Microsoft.PowerShell.Commands.FileSystemContentReaderWriter+<>c__DisplayClass34_0\",\"Microsoft.PowerShell.Commands.FileSystemContentReaderWriter+<>c__DisplayClass34_1\",\"Microsoft.PowerShell.Commands.FileStreamBackReader+NativeMethods\",\"Microsoft.PowerShell.Commands.FileSystemProvider+ItemType\",\"Microsoft.PowerShell.Commands.FileSystemProvider+NativeMethods\",\"Microsoft.PowerShell.Commands.FileSystemProvider+NetResource\",\"Microsoft.PowerShell.Commands.FileSystemContentDynamicParametersBase+NativeMethods\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+FileDesiredAccess\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+FileShareMode\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+FileCreationDisposition\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+FileAttributes\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+REPARSE_DATA_BUFFER_SYMBOLICLINK\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+REPARSE_DATA_BUFFER_MOUNTPOINT\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+BY_HANDLE_FILE_INFORMATION\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+GUID\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods+REPARSE_GUID_DATA_BUFFER\",\"Microsoft.PowerShell.Commands.SessionStateProviderBase+<>c\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+TOKEN_INFORMATION_CLASS\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+SID_NAME_USE\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+SID_AND_ATTRIBUTES\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+TOKEN_USER\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+SECURITY_IMPERSONATION_LEVEL\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+OSVERSIONINFO\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+OSVERSIONINFOEX\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+SYSTEM_INFO\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+SECURITY_ATTRIBUTES\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+WIN32_FILE_ATTRIBUTE_DATA\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+FILE_TIME\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+KERB_S4U_LOGON\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+LSA_OBJECT_ATTRIBUTES\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+UNICODE_STRING\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+UNICODE_INTPTR_STRING\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+LSA_TRANSLATED_NAME\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+LSA_TRANSLATED_SID\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+LSA_TRANSLATED_SID2\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+LSA_TRUST_INFORMATION\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+LSA_REFERENCED_DOMAIN_LIST\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+QUOTA_LIMITS\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+TOKEN_GROUPS\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+MEMORYSTATUSEX\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+MEMORYSTATUS\",\"Microsoft.PowerShell.Commands.Internal.Win32Native+MEMORY_BASIC_INFORMATION\",\"Microsoft.PowerShell.Commands.Internal.Format.ViewGenerator+DataBaseInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.ComplexSpecificParameters+ClassInfoDisplay\",\"Microsoft.PowerShell.Commands.Internal.Format.InnerFormatShapeCommandBase+FormattingContextState\",\"Microsoft.PowerShell.Commands.Internal.Format.InnerFormatShapeCommand+GroupTransition\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatInfoDataClassFactory+<>c\",\"Microsoft.PowerShell.Commands.Internal.Format.FormattedObjectsCache+ProcessCachedGroupNotification\",\"Microsoft.PowerShell.Commands.Internal.Format.TableWriter+ColumnInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.TableWriter+ScreenInfo\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager+FormatContextCreationCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager+FormatStartCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager+FormatEndCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager+GroupStartCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager+GroupEndCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager+PayloadCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.FormatMessagesContextManager+OutputContext\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+FormattingState\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+PreprocessingState\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+FormattingHint\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+TableFormattingHint\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+WideFormattingHint\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+FormatOutputContext\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+GroupOutputContext\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+TableOutputContextBase\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+TableOutputContext\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+ListOutputContext\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+WideOutputContext\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+ComplexOutputContext\",\"Microsoft.PowerShell.Commands.Internal.Format.IndentationManager+IndentationStackFrame\",\"Microsoft.PowerShell.Commands.Internal.Format.StringManipulationHelper+SplitLinesAccumulator\",\"Microsoft.PowerShell.Commands.Internal.Format.StringManipulationHelper+<GetWords>d__5\",\"Microsoft.PowerShell.Commands.Internal.Format.LineOutput+DoPlayBackCall\",\"Microsoft.PowerShell.Commands.Internal.Format.WriteLineHelper+WriteCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.StreamingTextWriter+WriteLineCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.SubPipelineManager+CommandEntry\",\"Microsoft.PowerShell.Commands.Internal.Format.ImplementationCommandBase+OuterCmdletCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.ImplementationCommandBase+InputObjectCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.ImplementationCommandBase+WriteObjectCallback\",\"Microsoft.PowerShell.Commands.Internal.Format.ConsoleLineOutput+PromptHandler\",\"Microsoft.PowerShell.Commands.Internal.Format.XmlLoaderLoggerEntry+EntryType\",\"Microsoft.PowerShell.Commands.Internal.Format.XmlLoaderBase+XmlLoaderStackFrame\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayResourceManagerCache+LoadingResult\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayResourceManagerCache+AssemblyBindingStatus\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayResourceManagerCache+AssemblyLoadResult\",\"Microsoft.PowerShell.Commands.Internal.Format.DisplayResourceManagerCache+AssemblyNameResolver\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseManager+TypeGenerator\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseLoader+XmlTags\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseLoader+XMLStringValues\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseLoader+ExpressionNodeMatch\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseLoader+ViewEntryNodeMatch\",\"Microsoft.PowerShell.Commands.Internal.Format.TypeInfoDataBaseLoader+ComplexControlMatch\",\"System.Management.Automation.CommandInvocationIntrinsics+<GetCommands>d__30\",\"System.Management.Automation.Cmdlet+<Invoke>d__40\",\"System.Management.Automation.Cmdlet+<Invoke>d__41`1[T]\",\"System.Management.Automation.Cmdlet+<>c\",\"System.Management.Automation.CommandParameterInternal+Parameter\",\"System.Management.Automation.CommandParameterInternal+Argument\",\"System.Management.Automation.CommandProcessor+<>c\",\"System.Management.Automation.FlagsExpression`1+TokenKind[T]\",\"System.Management.Automation.FlagsExpression`1+Token[T]\",\"System.Management.Automation.FlagsExpression`1+Node[T]\",\"System.Management.Automation.FlagsExpression`1+OrNode[T]\",\"System.Management.Automation.FlagsExpression`1+AndNode[T]\",\"System.Management.Automation.FlagsExpression`1+NotNode[T]\",\"System.Management.Automation.FlagsExpression`1+OperandNode[T]\",\"System.Management.Automation.ErrorRecord+<>c\",\"System.Management.Automation.InvocationInfo+<>c\",\"System.Management.Automation.RemoteCommandInfo+<>c__DisplayClass4_0\",\"System.Management.Automation.MshCommandRuntime+ShouldProcessPossibleOptimization\",\"System.Management.Automation.MshCommandRuntime+MergeDataStream\",\"System.Management.Automation.MshCommandRuntime+AllowWrite\",\"System.Management.Automation.MshCommandRuntime+ContinueStatus\",\"System.Management.Automation.CmdletParameterBinderController+CurrentlyBinding\",\"System.Management.Automation.CmdletParameterBinderController+DelayedScriptBlockArgument\",\"System.Management.Automation.CmdletParameterBinderController+<>c\",\"System.Management.Automation.CommandDiscovery+<GetCmdletInfo>d__61\",\"System.Management.Automation.CommandInfo+GetMergedCommandParameterMetadataSafelyEventArgs\",\"System.Management.Automation.CommandInfo+<>c__DisplayClass55_0\",\"System.Management.Automation.CommandSearcher+CanDoPathLookupResult\",\"System.Management.Automation.CommandSearcher+SearchState\",\"System.Management.Automation.CompiledCommandParameter+<GetMatchingParameterSetData>d__88\",\"System.Management.Automation.ParameterCollectionTypeInformation+<>c\",\"System.Management.Automation.CommandParameterSetInfo+<>c__DisplayClass14_0\",\"System.Management.Automation.ReflectionParameterBinder+<>c\",\"System.Management.Automation.ReflectionParameterBinder+<>c__DisplayClass7_0\",\"System.Management.Automation.ReflectionParameterBinder+<>c__DisplayClass8_0\",\"System.Management.Automation.ParameterSetMetadata+ParameterFlags\",\"System.Management.Automation.MinishellParameterBinderController+MinishellParameters\",\"System.Management.Automation.NativeCommandProcessor+ProcessWithParentId\",\"System.Management.Automation.NativeCommandProcessor+SHFILEINFO\",\"System.Management.Automation.DscResourceSearcher+<>o__15\",\"System.Management.Automation.AnalysisCache+<>c\",\"System.Management.Automation.AnalysisCacheData+<>c__DisplayClass23_0\",\"System.Management.Automation.AnalysisCacheData+<<QueueSerialization>b__10_0>d\",\"System.Management.Automation.ModuleIntrinsics+<>c\",\"System.Management.Automation.ModuleIntrinsics+<GetModulePath>d__38\",\"System.Management.Automation.ModuleIntrinsics+<>c__DisplayClass40_0`1[T]\",\"System.Management.Automation.ModuleIntrinsics+<>c__DisplayClass41_0\",\"System.Management.Automation.ModuleIntrinsics+<>c__DisplayClass41_1\",\"System.Management.Automation.PSModuleInfo+<>c\",\"System.Management.Automation.PSModuleInfo+<>c__DisplayClass258_0\",\"System.Management.Automation.RemoteDiscoveryHelper+CimFileCode\",\"System.Management.Automation.RemoteDiscoveryHelper+CimModuleFile\",\"System.Management.Automation.RemoteDiscoveryHelper+CimModule\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass2_0`1[T]\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_0\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_1\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_2\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_3\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_4\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_5\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_6\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass4_7\",\"System.Management.Automation.RemoteDiscoveryHelper+<InvokeTopLevelPowerShell>d__4\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass5_0\",\"System.Management.Automation.RemoteDiscoveryHelper+<InvokeNestedPowerShell>d__5\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass6_0\",\"System.Management.Automation.RemoteDiscoveryHelper+<EnumerateWithCatch>d__12`1[T]\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass14_0\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass23_0\",\"System.Management.Automation.RemoteDiscoveryHelper+<GetCimModules>d__23\",\"System.Management.Automation.RemoteDiscoveryHelper+<>c__DisplayClass24_0\",\"System.Management.Automation.ExportVisitor+ParameterBindingInfo\",\"System.Management.Automation.ExportVisitor+ParameterInfo\",\"System.Management.Automation.ExportVisitor+<>c__DisplayClass43_0\",\"System.Management.Automation.ExecutionContext+SavedContextData\",\"System.Management.Automation.PSLocalEventManager+<>c__DisplayClass33_0\",\"System.Management.Automation.Breakpoint+BreakpointAction\",\"System.Management.Automation.LineBreakpoint+CheckBreakpointInScript\",\"System.Management.Automation.ScriptDebugger+CallStackInfo\",\"System.Management.Automation.ScriptDebugger+CallStackList\",\"System.Management.Automation.ScriptDebugger+SteppingMode\",\"System.Management.Automation.ScriptDebugger+InternalDebugMode\",\"System.Management.Automation.ScriptDebugger+EnableNestedType\",\"System.Management.Automation.ScriptDebugger+<>c__DisplayClass15_0\",\"System.Management.Automation.ScriptDebugger+<>c__DisplayClass36_0\",\"System.Management.Automation.ScriptDebugger+<>c__DisplayClass39_0\",\"System.Management.Automation.ScriptDebugger+<>c__DisplayClass39_1\",\"System.Management.Automation.ScriptDebugger+<>c\",\"System.Management.Automation.ScriptDebugger+<>c__DisplayClass47_0\",\"System.Management.Automation.ScriptDebugger+<>c__DisplayClass102_0\",\"System.Management.Automation.ScriptDebugger+<>c__DisplayClass102_1\",\"System.Management.Automation.ScriptDebugger+<GetCallStack>d__105\",\"System.Management.Automation.EmbeddedRunspaceDebugger+<>c__DisplayClass10_0\",\"System.Management.Automation.EmbeddedRunspaceDebugger+<>c__DisplayClass10_1\",\"System.Management.Automation.Adapter+OverloadCandidate\",\"System.Management.Automation.Adapter+<GetDotNetTypeNameHierarchy>d__3\",\"System.Management.Automation.Adapter+<>c__DisplayClass53_0\",\"System.Management.Automation.Adapter+<>c\",\"System.Management.Automation.MethodInformation+MethodInvoker\",\"System.Management.Automation.DotNetAdapter+MethodCacheEntry\",\"System.Management.Automation.DotNetAdapter+EventCacheEntry\",\"System.Management.Automation.DotNetAdapter+ParameterizedPropertyCacheEntry\",\"System.Management.Automation.DotNetAdapter+PropertyCacheEntry\",\"System.Management.Automation.DotNetAdapter+<GetPropertiesAndMethods>d__29\",\"System.Management.Automation.DotNetAdapter+<>c\",\"System.Management.Automation.DotNetAdapterWithComTypeName+<GetTypeNameHierarchy>d__2\",\"System.Management.Automation.PSMemberSetAdapter+<GetTypeNameHierarchy>d__0\",\"System.Management.Automation.XmlNodeAdapter+<GetTypeNameHierarchy>d__0\",\"System.Management.Automation.TypeInference+<>c\",\"System.Management.Automation.TypeInference+<>c__DisplayClass6_0\",\"System.Management.Automation.TypeInference+<>c__DisplayClass6_1\",\"System.Management.Automation.LanguagePrimitives+MemberNotFoundError\",\"System.Management.Automation.LanguagePrimitives+MemberSetValueError\",\"System.Management.Automation.LanguagePrimitives+EnumerableTWrapper\",\"System.Management.Automation.LanguagePrimitives+GetEnumerableDelegate\",\"System.Management.Automation.LanguagePrimitives+TypeCodeTraits\",\"System.Management.Automation.LanguagePrimitives+EnumMultipleTypeConverter\",\"System.Management.Automation.LanguagePrimitives+EnumSingleTypeConverter\",\"System.Management.Automation.LanguagePrimitives+ConvertViaParseMethod\",\"System.Management.Automation.LanguagePrimitives+ConvertViaConstructor\",\"System.Management.Automation.LanguagePrimitives+ConvertViaIEnumerableConstructor\",\"System.Management.Automation.LanguagePrimitives+ConvertViaNoArgumentConstructor\",\"System.Management.Automation.LanguagePrimitives+ConvertViaCast\",\"System.Management.Automation.LanguagePrimitives+ConvertCheckingForCustomConverter\",\"System.Management.Automation.LanguagePrimitives+ConversionTypePair\",\"System.Management.Automation.LanguagePrimitives+PSConverter`1[T]\",\"System.Management.Automation.LanguagePrimitives+PSNullConverter\",\"System.Management.Automation.LanguagePrimitives+ConversionData\",\"System.Management.Automation.LanguagePrimitives+ConversionData`1[T]\",\"System.Management.Automation.LanguagePrimitives+InternalPSCustomObject\",\"System.Management.Automation.LanguagePrimitives+InternalPSObject\",\"System.Management.Automation.LanguagePrimitives+Null\",\"System.Management.Automation.LanguagePrimitives+<>c__DisplayClass7_0\",\"System.Management.Automation.CollectionEntry`1+GetMembersDelegate[T]\",\"System.Management.Automation.CollectionEntry`1+GetMemberDelegate[T]\",\"System.Management.Automation.PSMemberInfoIntegratingCollection`1+Enumerator`1[T,S]\",\"System.Management.Automation.PSObject+AdapterSet\",\"System.Management.Automation.PSObject+PSDynamicMetaObject\",\"System.Management.Automation.PSObject+<>c__DisplayClass14_0\",\"System.Management.Automation.PSObject+<>c__DisplayClass17_0\",\"System.Management.Automation.PSObject+<>c\",\"System.Management.Automation.ComAdapter+<GetTypeNameHierarchy>d__3\",\"System.Management.Automation.ComInvoker+EXCEPINFO\",\"System.Management.Automation.ComInvoker+Variant\",\"System.Management.Automation.ComInvoker+<>c\",\"System.Management.Automation.BaseWMIAdapter+WMIMethodCacheEntry\",\"System.Management.Automation.BaseWMIAdapter+WMIParameterInformation\",\"System.Management.Automation.BaseWMIAdapter+<GetTypeNameHierarchyFromDerivation>d__2\",\"System.Management.Automation.BaseWMIAdapter+<GetTypeNameHierarchy>d__3\",\"System.Management.Automation.HelpSystem+HelpProgressHandler\",\"System.Management.Automation.HelpSystem+<DoGetHelp>d__21\",\"System.Management.Automation.HelpSystem+<ExactMatchHelp>d__22\",\"System.Management.Automation.HelpSystem+<ForwardHelp>d__23\",\"System.Management.Automation.HelpSystem+<SearchHelp>d__25\",\"System.Management.Automation.HelpProvider+<ProcessForwardedHelp>d__10\",\"System.Management.Automation.HelpProviderWithCache+<ExactMatchHelp>d__2\",\"System.Management.Automation.HelpProviderWithCache+<SearchHelp>d__9\",\"System.Management.Automation.HelpProviderWithCache+<DoSearchHelp>d__11\",\"System.Management.Automation.CommandHelpProvider+<ExactMatchHelp>d__12\",\"System.Management.Automation.CommandHelpProvider+<SearchHelp>d__26\",\"System.Management.Automation.CommandHelpProvider+<ProcessForwardedHelp>d__30\",\"System.Management.Automation.AliasHelpProvider+<ExactMatchHelp>d__8\",\"System.Management.Automation.AliasHelpProvider+<SearchHelp>d__9\",\"System.Management.Automation.HelpFileHelpProvider+<ExactMatchHelp>d__5\",\"System.Management.Automation.HelpFileHelpProvider+<SearchHelp>d__7\",\"System.Management.Automation.HelpFileHelpProvider+<>c\",\"System.Management.Automation.ProviderHelpProvider+<ExactMatchHelp>d__6\",\"System.Management.Automation.ProviderHelpProvider+<SearchHelp>d__10\",\"System.Management.Automation.ProviderHelpProvider+<ProcessForwardedHelp>d__11\",\"System.Management.Automation.HelpErrorTracer+TraceFrame\",\"System.Management.Automation.HelpCommentsParser+<>c\",\"System.Management.Automation.DscResourceHelpProvider+<SearchHelp>d__8\",\"System.Management.Automation.DscResourceHelpProvider+<ExactMatchHelp>d__9\",\"System.Management.Automation.DscResourceHelpProvider+<GetHelpInfo>d__10\",\"System.Management.Automation.PSClassHelpProvider+<SearchHelp>d__8\",\"System.Management.Automation.PSClassHelpProvider+<ExactMatchHelp>d__9\",\"System.Management.Automation.PSClassHelpProvider+<GetHelpInfo>d__10\",\"System.Management.Automation.InformationalRecord+<>c\",\"System.Management.Automation.PowerShell+Worker\",\"System.Management.Automation.HostUtilities+CREDUI_FLAGS\",\"System.Management.Automation.HostUtilities+CREDUI_INFO\",\"System.Management.Automation.HostUtilities+CredUIReturnCodes\",\"System.Management.Automation.RemotePipeline+ExecutionEventQueueItem\",\"System.Management.Automation.RemoteRunspace+RunspaceEventQueueItem\",\"System.Management.Automation.RemoteDebugger+<>c__DisplayClass21_0\",\"System.Management.Automation.RemoteDebugger+<>c__DisplayClass21_1\",\"System.Management.Automation.Job+<>c__DisplayClass82_0\",\"System.Management.Automation.Job+<>c__DisplayClass91_0\",\"System.Management.Automation.Job+<>c__DisplayClass92_0\",\"System.Management.Automation.Job+<>c__DisplayClass93_0\",\"System.Management.Automation.Job+<>c__DisplayClass94_0\",\"System.Management.Automation.Job+<>c__DisplayClass95_0`1[T]\",\"System.Management.Automation.Job+<>c__DisplayClass95_1`1[T]\",\"System.Management.Automation.PSRemotingJob+ConnectJobOperation\",\"System.Management.Automation.PSRemotingJob+<>c__DisplayClass12_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass38_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass40_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass41_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass41_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass42_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass42_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass42_2\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass51_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass51_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass52_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass52_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass52_2\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass53_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass53_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass54_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass54_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass54_2\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass55_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass55_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass56_0\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass56_1\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass56_2\",\"System.Management.Automation.ContainerParentJob+<>c\",\"System.Management.Automation.ContainerParentJob+<>c__DisplayClass66_0\",\"System.Management.Automation.JobInvocationInfo+<>c\",\"System.Management.Automation.PSJobProxy+ActionType\",\"System.Management.Automation.PSJobProxy+AsyncCompleteContainer\",\"System.Management.Automation.PSJobProxy+JobActionWorkerDelegate\",\"System.Management.Automation.PSJobProxy+QueueOperation\",\"System.Management.Automation.PSJobProxy+<>c\",\"System.Management.Automation.JobManager+FilterType\",\"System.Management.Automation.ThrottlingJob+ChildJobFlags\",\"System.Management.Automation.ThrottlingJob+ForwardingHelper\",\"System.Management.Automation.ThrottlingJob+<>c\",\"System.Management.Automation.RemotingEncoder+ValueGetterDelegate`1[T]\",\"System.Management.Automation.RemotingDecoder+<EnumerateListProperty>d__3`1[T]\",\"System.Management.Automation.RemotingDecoder+<EnumerateHashtableProperty>d__4`2[KeyType,ValueType]\",\"System.Management.Automation.ServerRunspacePoolDriver+PreProcessCommandResult\",\"System.Management.Automation.ServerRunspacePoolDriver+DebuggerCommandArgument\",\"System.Management.Automation.ServerRunspacePoolDriver+PowerShellDriverInvoker\",\"System.Management.Automation.ServerRunspacePoolDriver+<>c\",\"System.Management.Automation.ServerRemoteDebugger+ThreadCommandProcessing\",\"System.Management.Automation.ServerPowerShellDriver+<>c__DisplayClass17_0\",\"System.Management.Automation.MshLog+<>c__DisplayClass9_0\",\"System.Management.Automation.MshLog+<>c__DisplayClass19_0\",\"System.Management.Automation.MshLog+<>c__DisplayClass20_0\",\"System.Management.Automation.Utils+NativeMethods\",\"System.Management.Automation.Utils+MutexInitializer\",\"System.Management.Automation.Utils+EmptyArrayHolder`1[T]\",\"System.Management.Automation.Utils+EmptyReadOnlyCollectionHolder`1[T]\",\"System.Management.Automation.Utils+Separators\",\"System.Management.Automation.WildcardPattern+<>c\",\"System.Management.Automation.WildcardPatternMatcher+PatternPositionsVisitor\",\"System.Management.Automation.WildcardPatternMatcher+PatternElement\",\"System.Management.Automation.WildcardPatternMatcher+QuestionMarkElement\",\"System.Management.Automation.WildcardPatternMatcher+LiteralCharacterElement\",\"System.Management.Automation.WildcardPatternMatcher+BracketExpressionElement\",\"System.Management.Automation.WildcardPatternMatcher+AsterixElement\",\"System.Management.Automation.WildcardPatternMatcher+MyWildcardPatternParser\",\"System.Management.Automation.WildcardPatternMatcher+CharacterNormalizer\",\"System.Management.Automation.InternalSerializer+<>c\",\"System.Management.Automation.WeakReferenceDictionary`1+WeakReferenceEqualityComparer[T]\",\"System.Management.Automation.WeakReferenceDictionary`1+<GetEnumerator>d__30[T]\",\"System.Management.Automation.ParserOps+SplitImplOptions\",\"System.Management.Automation.ParserOps+CompareDelegate\",\"System.Management.Automation.ParserOps+<enumerateContent>d__17\",\"System.Management.Automation.ScriptBlock+ErrorHandlingBehavior\",\"System.Management.Automation.ScriptBlock+<>c\",\"System.Management.Automation.ScriptBlock+<>c__DisplayClass57_0\",\"System.Management.Automation.ScriptBlock+<>c__DisplayClass131_0\",\"System.Management.Automation.ScriptBlock+<TokenizeWordElements>d__132\",\"System.Management.Automation.CoreTypes+<>c\",\"System.Management.Automation.CompiledScriptBlockData+<>c\",\"System.Management.Automation.UsingExpressionAstSearcher+<>c\",\"System.Management.Automation.MutableTuple+<>c\",\"System.Management.Automation.MutableTuple+<GetAccessProperties>d__27\",\"System.Management.Automation.MutableTuple+<GetAccessPath>d__28\",\"System.Management.Automation.PipelineOps+<Splat>d__1\",\"System.Management.Automation.ExceptionHandlingOps+CatchAll\",\"System.Management.Automation.TypeOps+<>c__DisplayClass0_0\",\"System.Management.Automation.EnumerableOps+NonEnumerableObjectEnumerator\",\"System.Management.Automation.EnumerableOps+<>o__1\",\"System.Management.Automation.EnumerableOps+<>o__6\",\"System.Management.Automation.VariableOps+UsingResult\",\"System.Management.Automation.SessionStateInternal+<GetAliasesByCommandName>d__84\",\"System.Management.Automation.SessionStateInternal+<GetFunctionAliases>d__232\",\"System.Management.Automation.SessionStateInternal+<>c__DisplayClass234_0\",\"System.Management.Automation.AmsiUtils+AmsiNativeMethods\",\"System.Management.Automation.SessionStateScope+<GetAliasesByCommandName>d__111\",\"System.Management.Automation.SessionStateScope+<>c__DisplayClass113_0\",\"System.Management.Automation.PSSnapInReader+DefaultPSSnapInInformation\",\"System.Management.Automation.EnumerableExtensions+<Append>d__0`1[T]\",\"System.Management.Automation.EnumerableExtensions+<Prepend>d__1`1[T]\",\"System.Management.Automation.PSTypeExtensions+<>c__10`1[T]\",\"System.Management.Automation.ParseException+<>c\",\"System.Management.Automation.PsUtils+FrameworkRegistryInstallation\",\"System.Management.Automation.PsUtils+NativeMethods\",\"System.Management.Automation.PlatformInvokes+FILETIME\",\"System.Management.Automation.PlatformInvokes+WIN32_FIND_DATA\",\"System.Management.Automation.PlatformInvokes+FileDesiredAccess\",\"System.Management.Automation.PlatformInvokes+FileShareMode\",\"System.Management.Automation.PlatformInvokes+FileCreationDisposition\",\"System.Management.Automation.PlatformInvokes+FileAttributes\",\"System.Management.Automation.PlatformInvokes+SecurityAttributes\",\"System.Management.Automation.PlatformInvokes+SafeLocalMemHandle\",\"System.Management.Automation.PlatformInvokes+TOKEN_PRIVILEGE\",\"System.Management.Automation.PlatformInvokes+LUID\",\"System.Management.Automation.PlatformInvokes+LUID_AND_ATTRIBUTES\",\"System.Management.Automation.PlatformInvokes+PRIVILEGE_SET\",\"System.Management.Automation.PlatformInvokes+SafeSnapshotHandle\",\"System.Management.Automation.PlatformInvokes+SnapshotFlags\",\"System.Management.Automation.PlatformInvokes+PROCESSENTRY32\",\"System.Management.Automation.ClrFacade+NativeMethods\",\"System.Management.Automation.ClrFacade+<>c\",\"System.Management.Automation.WindowsErrorReporting+DumpFlags\",\"System.Management.Automation.WindowsErrorReporting+DumpType\",\"System.Management.Automation.WindowsErrorReporting+BucketParameterId\",\"System.Management.Automation.WindowsErrorReporting+ReportType\",\"System.Management.Automation.WindowsErrorReporting+MiniDumpType\",\"System.Management.Automation.WindowsErrorReporting+Consent\",\"System.Management.Automation.WindowsErrorReporting+SubmitFlags\",\"System.Management.Automation.WindowsErrorReporting+SubmitResult\",\"System.Management.Automation.WindowsErrorReporting+ReportingFlags\",\"System.Management.Automation.WindowsErrorReporting+ReportHandle\",\"System.Management.Automation.WindowsErrorReporting+ReportInformation\",\"System.Management.Automation.WindowsErrorReporting+NativeMethods\",\"System.Management.Automation.CommandCompletion+PSv2CompletionCompleter\",\"System.Management.Automation.CommandCompletion+LastWordFinder\",\"System.Management.Automation.CompletionAnalysis+<>c__DisplayClass12_0\",\"System.Management.Automation.CompletionAnalysis+<>c__DisplayClass13_0\",\"System.Management.Automation.CompletionAnalysis+<>c__DisplayClass16_0\",\"System.Management.Automation.CompletionAnalysis+<>c\",\"System.Management.Automation.CompletionAnalysis+<>c__DisplayClass25_0\",\"System.Management.Automation.CompletionAnalysis+<>c__DisplayClass28_0\",\"System.Management.Automation.CompletionAnalysis+<>c__DisplayClass28_1\",\"System.Management.Automation.CompletionCompleters+FindFunctionsVisitor\",\"System.Management.Automation.CompletionCompleters+ArgumentLocation\",\"System.Management.Automation.CompletionCompleters+SHARE_INFO_1\",\"System.Management.Automation.CompletionCompleters+FindVariablesVisitor\",\"System.Management.Automation.CompletionCompleters+TypeCompletionBase\",\"System.Management.Automation.CompletionCompleters+TypeCompletionInStringFormat\",\"System.Management.Automation.CompletionCompleters+GenericTypeCompletionInStringFormat\",\"System.Management.Automation.CompletionCompleters+TypeCompletion\",\"System.Management.Automation.CompletionCompleters+GenericTypeCompletion\",\"System.Management.Automation.CompletionCompleters+NamespaceCompletion\",\"System.Management.Automation.CompletionCompleters+TypeCompletionMapping\",\"System.Management.Automation.CompletionCompleters+ItemPathComparer\",\"System.Management.Automation.CompletionCompleters+CommandNameComparer\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass5_0\",\"System.Management.Automation.CompletionCompleters+<>c\",\"System.Management.Automation.CompletionCompleters+<>o__12\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass15_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass16_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass16_1\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass17_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass22_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass22_1\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass24_0\",\"System.Management.Automation.CompletionCompleters+<NativeCommandArgumentCompletion_InferTypesOfArugment>d__25\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass37_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass41_0\",\"System.Management.Automation.CompletionCompleters+<>o__45\",\"System.Management.Automation.CompletionCompleters+<>o__46\",\"System.Management.Automation.CompletionCompleters+<>o__47\",\"System.Management.Automation.CompletionCompleters+<>o__49\",\"System.Management.Automation.CompletionCompleters+<>o__50\",\"System.Management.Automation.CompletionCompleters+<>o__51\",\"System.Management.Automation.CompletionCompleters+<>o__52\",\"System.Management.Automation.CompletionCompleters+<>o__53\",\"System.Management.Automation.CompletionCompleters+<>o__54\",\"System.Management.Automation.CompletionCompleters+<>o__55\",\"System.Management.Automation.CompletionCompleters+<>o__69\",\"System.Management.Automation.CompletionCompleters+<>o__82\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass92_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass96_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass102_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass111_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass114_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass116_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass117_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass119_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass120_0\",\"System.Management.Automation.CompletionCompleters+<>c__DisplayClass120_1\",\"System.Management.Automation.ArgumentCompleterAttribute+<>c\",\"System.Management.Automation.ComInterop.ComBinder+ComGetMemberBinder\",\"System.Management.Automation.ComInterop.ComBinder+ComInvokeMemberBinder\",\"System.Management.Automation.ComInterop.ComBinder+<>c\",\"System.Management.Automation.ComInterop.ComEventSink+ComEventSinkMethod\",\"System.Management.Automation.ComInterop.ComEventSink+<>c__DisplayClass28_0\",\"System.Management.Automation.ComInterop.UnsafeMethods+ConvertByrefToPtrDelegate`1[T]\",\"System.Management.Automation.ComInterop.UnsafeMethods+IUnknownReleaseDelegate\",\"System.Management.Automation.ComInterop.UnsafeMethods+IDispatchInvokeDelegate\",\"System.Management.Automation.ComInterop.Variant+TypeUnion\",\"System.Management.Automation.ComInterop.Variant+Record\",\"System.Management.Automation.ComInterop.Variant+UnionTypes\",\"System.Management.Automation.Tracing.EtwActivity+CorrelatedCallback\",\"System.Management.Automation.Tracing.EtwActivity+UnsafeNativeMethods\",\"System.Management.Automation.Tracing.PSEtwLog+<>c__DisplayClass5_0\",\"System.Management.Automation.Tracing.PSEtwLogProvider+Strings\",\"System.Management.Automation.Security.NativeMethods+CertEnumSystemStoreCallBackProto\",\"System.Management.Automation.Security.NativeMethods+CertFindType\",\"System.Management.Automation.Security.NativeMethods+CertStoreFlags\",\"System.Management.Automation.Security.NativeMethods+CertOpenStoreFlags\",\"System.Management.Automation.Security.NativeMethods+CertOpenStoreProvider\",\"System.Management.Automation.Security.NativeMethods+CertOpenStoreEncodingType\",\"System.Management.Automation.Security.NativeMethods+CertControlStoreType\",\"System.Management.Automation.Security.NativeMethods+AddCertificateContext\",\"System.Management.Automation.Security.NativeMethods+CertPropertyId\",\"System.Management.Automation.Security.NativeMethods+NCryptDeletKeyFlag\",\"System.Management.Automation.Security.NativeMethods+ProviderFlagsEnum\",\"System.Management.Automation.Security.NativeMethods+ProviderParam\",\"System.Management.Automation.Security.NativeMethods+PROV\",\"System.Management.Automation.Security.NativeMethods+CRYPT_KEY_PROV_INFO\",\"System.Management.Automation.Security.NativeMethods+CryptUIFlags\",\"System.Management.Automation.Security.NativeMethods+CRYPTUI_WIZ_DIGITAL_SIGN_INFO\",\"System.Management.Automation.Security.NativeMethods+SignInfoSubjectChoice\",\"System.Management.Automation.Security.NativeMethods+SignInfoCertChoice\",\"System.Management.Automation.Security.NativeMethods+SignInfoAdditionalCertChoice\",\"System.Management.Automation.Security.NativeMethods+CRYPTUI_WIZ_DIGITAL_SIGN_EXTENDED_INFO\",\"System.Management.Automation.Security.NativeMethods+CRYPT_OID_INFO\",\"System.Management.Automation.Security.NativeMethods+Anonymous_a3ae7823_8a1d_432c_bc07_a72b6fc6c7d8\",\"System.Management.Automation.Security.NativeMethods+CRYPT_ATTR_BLOB\",\"System.Management.Automation.Security.NativeMethods+CRYPT_DATA_BLOB\",\"System.Management.Automation.Security.NativeMethods+CERT_CONTEXT\",\"System.Management.Automation.Security.NativeMethods+WINTRUST_FILE_INFO\",\"System.Management.Automation.Security.NativeMethods+WINTRUST_BLOB_INFO\",\"System.Management.Automation.Security.NativeMethods+GUID\",\"System.Management.Automation.Security.NativeMethods+WintrustUIChoice\",\"System.Management.Automation.Security.NativeMethods+WintrustUnionChoice\",\"System.Management.Automation.Security.NativeMethods+WintrustProviderFlags\",\"System.Management.Automation.Security.NativeMethods+WintrustAction\",\"System.Management.Automation.Security.NativeMethods+WinTrust_Choice\",\"System.Management.Automation.Security.NativeMethods+WINTRUST_DATA\",\"System.Management.Automation.Security.NativeMethods+CRYPT_PROVIDER_CERT\",\"System.Management.Automation.Security.NativeMethods+CRYPT_PROVIDER_SGNR\",\"System.Management.Automation.Security.NativeMethods+CERT_ENHKEY_USAGE\",\"System.Management.Automation.Security.NativeMethods+SIGNATURE_STATE\",\"System.Management.Automation.Security.NativeMethods+SIGNATURE_INFO_FLAGS\",\"System.Management.Automation.Security.NativeMethods+SIGNATURE_INFO_AVAILABILITY\",\"System.Management.Automation.Security.NativeMethods+SIGNATURE_INFO_TYPE\",\"System.Management.Automation.Security.NativeMethods+SIGNATURE_INFO\",\"System.Management.Automation.Security.NativeMethods+CERT_INFO\",\"System.Management.Automation.Security.NativeMethods+CRYPT_ALGORITHM_IDENTIFIER\",\"System.Management.Automation.Security.NativeMethods+FILETIME\",\"System.Management.Automation.Security.NativeMethods+CERT_PUBLIC_KEY_INFO\",\"System.Management.Automation.Security.NativeMethods+CRYPT_BIT_BLOB\",\"System.Management.Automation.Security.NativeMethods+CERT_EXTENSION\",\"System.Management.Automation.Security.NativeMethods+AltNameType\",\"System.Management.Automation.Security.NativeMethods+CryptDecodeFlags\",\"System.Management.Automation.Security.NativeMethods+SeObjectType\",\"System.Management.Automation.Security.NativeMethods+SecurityInformation\",\"System.Management.Automation.Security.NativeMethods+LUID\",\"System.Management.Automation.Security.NativeMethods+LUID_AND_ATTRIBUTES\",\"System.Management.Automation.Security.NativeMethods+TOKEN_PRIVILEGE\",\"System.Management.Automation.Security.NativeMethods+ACL\",\"System.Management.Automation.Security.NativeMethods+ACE_HEADER\",\"System.Management.Automation.Security.NativeMethods+SYSTEM_AUDIT_ACE\",\"System.Management.Automation.Security.NativeMethods+LSA_UNICODE_STRING\",\"System.Management.Automation.Security.NativeMethods+CENTRAL_ACCESS_POLICY\",\"System.Management.Automation.Security.NativeMethods+SYSTEM_INFORMATION_CLASS\",\"System.Management.Automation.Security.NativeMethods+CodeIntegrityPolicyOptions\",\"System.Management.Automation.Security.NativeMethods+SYSTEM_CODEINTEGRITYPOLICY_INFORMATION\",\"System.Management.Automation.Security.NativeMethods+CRYPT_ATTRIBUTE_TYPE_VALUE\",\"System.Management.Automation.Security.NativeMethods+SIP_INDIRECT_DATA\",\"System.Management.Automation.Security.NativeMethods+CRYPTCATCDF\",\"System.Management.Automation.Security.NativeMethods+CRYPTCATMEMBER\",\"System.Management.Automation.Security.NativeMethods+CRYPTCATATTRIBUTE\",\"System.Management.Automation.Security.NativeMethods+CRYPTCATSTORE\",\"System.Management.Automation.Security.NativeMethods+CryptCATCDFOpenCallBack\",\"System.Management.Automation.Security.NativeMethods+CryptCATCDFEnumMembersByCDFTagExErrorCallBack\",\"System.Management.Automation.Security.SystemPolicy+WldpNativeConstants\",\"System.Management.Automation.Security.SystemPolicy+WLDP_HOST_ID\",\"System.Management.Automation.Security.SystemPolicy+WLDP_HOST_INFORMATION\",\"System.Management.Automation.Security.SystemPolicy+WldpNativeMethods\",\"System.Management.Automation.Interpreter.AddInstruction+AddInt32\",\"System.Management.Automation.Interpreter.AddInstruction+AddInt16\",\"System.Management.Automation.Interpreter.AddInstruction+AddInt64\",\"System.Management.Automation.Interpreter.AddInstruction+AddUInt16\",\"System.Management.Automation.Interpreter.AddInstruction+AddUInt32\",\"System.Management.Automation.Interpreter.AddInstruction+AddUInt64\",\"System.Management.Automation.Interpreter.AddInstruction+AddSingle\",\"System.Management.Automation.Interpreter.AddInstruction+AddDouble\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfInt32\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfInt16\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfInt64\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfUInt16\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfUInt32\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfUInt64\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfSingle\",\"System.Management.Automation.Interpreter.AddOvfInstruction+AddOvfDouble\",\"System.Management.Automation.Interpreter.DivInstruction+DivInt32\",\"System.Management.Automation.Interpreter.DivInstruction+DivInt16\",\"System.Management.Automation.Interpreter.DivInstruction+DivInt64\",\"System.Management.Automation.Interpreter.DivInstruction+DivUInt16\",\"System.Management.Automation.Interpreter.DivInstruction+DivUInt32\",\"System.Management.Automation.Interpreter.DivInstruction+DivUInt64\",\"System.Management.Automation.Interpreter.DivInstruction+DivSingle\",\"System.Management.Automation.Interpreter.DivInstruction+DivDouble\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualBoolean\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualSByte\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualInt16\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualChar\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualInt32\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualInt64\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualByte\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualUInt16\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualUInt32\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualUInt64\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualSingle\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualDouble\",\"System.Management.Automation.Interpreter.EqualInstruction+EqualReference\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanSByte\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanInt16\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanChar\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanInt32\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanInt64\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanByte\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanUInt16\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanUInt32\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanUInt64\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanSingle\",\"System.Management.Automation.Interpreter.GreaterThanInstruction+GreaterThanDouble\",\"System.Management.Automation.Interpreter.InstructionArray+DebugView\",\"System.Management.Automation.Interpreter.InstructionList+DebugView\",\"System.Management.Automation.Interpreter.InterpretedFrame+<GroupStackFrames>d__30\",\"System.Management.Automation.Interpreter.InterpretedFrame+<GetStackTraceDebugInfo>d__31\",\"System.Management.Automation.Interpreter.LabelInfo+<>c\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanSByte\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanInt16\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanChar\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanInt32\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanInt64\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanByte\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanUInt16\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanUInt32\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanUInt64\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanSingle\",\"System.Management.Automation.Interpreter.LessThanInstruction+LessThanDouble\",\"System.Management.Automation.Interpreter.TryCatchFinallyHandler+<>c__DisplayClass13_0\",\"System.Management.Automation.Interpreter.DebugInfo+DebugInfoComparer\",\"System.Management.Automation.Interpreter.LightCompiler+<>c\",\"System.Management.Automation.Interpreter.LightDelegateCreator+<>c\",\"System.Management.Automation.Interpreter.LightLambda+<>c__DisplayClass11_0\",\"System.Management.Automation.Interpreter.LightLambdaClosureVisitor+MergedRuntimeVariables\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction+Reference\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction+ImmutableValue\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction+ImmutableBox\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction+ParameterBox\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction+Parameter\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction+MutableValue\",\"System.Management.Automation.Interpreter.InitializeLocalInstruction+MutableBox\",\"System.Management.Automation.Interpreter.LocalVariables+VariableScope\",\"System.Management.Automation.Interpreter.LoopCompiler+LoopVariable\",\"System.Management.Automation.Interpreter.MulInstruction+MulInt32\",\"System.Management.Automation.Interpreter.MulInstruction+MulInt16\",\"System.Management.Automation.Interpreter.MulInstruction+MulInt64\",\"System.Management.Automation.Interpreter.MulInstruction+MulUInt16\",\"System.Management.Automation.Interpreter.MulInstruction+MulUInt32\",\"System.Management.Automation.Interpreter.MulInstruction+MulUInt64\",\"System.Management.Automation.Interpreter.MulInstruction+MulSingle\",\"System.Management.Automation.Interpreter.MulInstruction+MulDouble\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfInt32\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfInt16\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfInt64\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfUInt16\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfUInt32\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfUInt64\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfSingle\",\"System.Management.Automation.Interpreter.MulOvfInstruction+MulOvfDouble\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualBoolean\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualSByte\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualInt16\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualChar\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualInt32\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualInt64\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualByte\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualUInt16\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualUInt32\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualUInt64\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualSingle\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualDouble\",\"System.Management.Automation.Interpreter.NotEqualInstruction+NotEqualReference\",\"System.Management.Automation.Interpreter.NumericConvertInstruction+Unchecked\",\"System.Management.Automation.Interpreter.NumericConvertInstruction+Checked\",\"System.Management.Automation.Interpreter.SubInstruction+SubInt32\",\"System.Management.Automation.Interpreter.SubInstruction+SubInt16\",\"System.Management.Automation.Interpreter.SubInstruction+SubInt64\",\"System.Management.Automation.Interpreter.SubInstruction+SubUInt16\",\"System.Management.Automation.Interpreter.SubInstruction+SubUInt32\",\"System.Management.Automation.Interpreter.SubInstruction+SubUInt64\",\"System.Management.Automation.Interpreter.SubInstruction+SubSingle\",\"System.Management.Automation.Interpreter.SubInstruction+SubDouble\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfInt32\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfInt16\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfInt64\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfUInt16\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfUInt32\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfUInt64\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfSingle\",\"System.Management.Automation.Interpreter.SubOvfInstruction+SubOvfDouble\",\"System.Management.Automation.Interpreter.DelegateHelpers+<>c\",\"System.Management.Automation.Interpreter.HybridReferenceDictionary`2+<GetEnumeratorWorker>d__12[TKey,TValue]\",\"System.Management.Automation.Interpreter.CacheDict`2+KeyInfo[TKey,TValue]\",\"System.Management.Automation.Interpreter.ThreadLocal`1+StorageInfo[T]\",\"System.Management.Automation.Remoting.ClientRemoteSession+URIDirectionReported\",\"System.Management.Automation.Remoting.ClientMethodExecutor+<>c__DisplayClass10_0\",\"System.Management.Automation.Remoting.SerializedDataStream+OnDataAvailableCallback\",\"System.Management.Automation.Remoting.NamedPipeNative+SECURITY_ATTRIBUTES\",\"System.Management.Automation.Remoting.RemoteSessionNamedPipeServer+<>c__DisplayClass44_0\",\"System.Management.Automation.Remoting.RemoteSessionNamedPipeServer+<>c\",\"System.Management.Automation.Remoting.ServerRemoteSession+<>c__DisplayClass31_0\",\"System.Management.Automation.Remoting.ConfigTypeEntry+TypeValidationCallback\",\"System.Management.Automation.Remoting.DISCPowerShellConfiguration+<>c\",\"System.Management.Automation.Remoting.DISCPowerShellConfiguration+<>c__DisplayClass21_0`1[T]\",\"System.Management.Automation.Remoting.DISCPowerShellConfiguration+<>c__DisplayClass21_1`1[T]\",\"System.Management.Automation.Remoting.OutOfProcessUtils+DataPacketReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+DataAckPacketReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+CommandCreationPacketReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+CommandCreationAckReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+ClosePacketReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+CloseAckPacketReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+SignalPacketReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+SignalAckPacketReceived\",\"System.Management.Automation.Remoting.OutOfProcessUtils+DataProcessingDelegates\",\"System.Management.Automation.Remoting.PrioritySendDataCollection+OnDataAvailableCallback\",\"System.Management.Automation.Remoting.ReceiveDataCollection+OnDataAvailableCallback\",\"System.Management.Automation.Remoting.WSManPluginEntryDelegates+WSManPluginEntryDelegatesInternal\",\"System.Management.Automation.Remoting.WSManPluginManagedEntryInstanceWrapper+InitPluginDelegate\",\"System.Management.Automation.Remoting.Client.BaseClientTransportManager+CallbackNotificationInformation\",\"System.Management.Automation.Remoting.Client.WSManTransportManagerUtils+tmStartModes\",\"System.Management.Automation.Remoting.Client.WSManClientSessionTransportManager+CompletionNotification\",\"System.Management.Automation.Remoting.Client.WSManClientSessionTransportManager+CompletionEventArgs\",\"System.Management.Automation.Remoting.Client.WSManClientSessionTransportManager+WSManAPIDataCommon\",\"System.Management.Automation.Remoting.Client.WSManClientSessionTransportManager+<>c\",\"System.Management.Automation.Remoting.Client.WSManClientSessionTransportManager+<>c__DisplayClass95_0\",\"System.Management.Automation.Remoting.Client.WSManClientCommandTransportManager+SendDataChunk\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+MarshalledObject\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManAuthenticationMechanism\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+BaseWSManAuthenticationCredentials\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManUserNameAuthenticationCredentials\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCertificateThumbprintCredentials\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManSessionOption\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellFlag\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManDataType\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManDataStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManBinaryOrTextDataStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManData_ManToUn\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManData_UnToMan\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManDataDWord\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManStreamIDSetStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManStreamIDSet_ManToUn\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManStreamIDSet_UnToMan\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManOption\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManOptionSetStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManOptionSet\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCommandArgSet\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellDisconnectInfo\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellStartupInfoStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellStartupInfo_ManToUn\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellStartupInfo_UnToMan\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManEnvironmentVariableSet\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManProxyInfo\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCallbackFlags\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellCompletionFunction\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellAsyncCallback\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellAsync\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManError\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCreateShellDataResult\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManConnectDataResult\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManReceiveDataResult\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManPluginRequest\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManSenderDetails\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCertificateDetails\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManOperationInfo\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManSelectorSet\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManFlagReceive\",\"System.Management.Automation.Remoting.Server.AbstractServerTransportManager+<>c__DisplayClass14_0\",\"System.Management.Automation.Host.PSHostUserInterface+<>c__DisplayClass39_0\",\"System.Management.Automation.Help.DefaultCommandHelpObjectBuilder+<>c\",\"System.Management.Automation.Help.UpdatableHelpSystem+<GetCurrentUICulture>d__24\",\"System.Management.Automation.Runspaces.TypesPs1xmlReader+<Read_Types>d__20\",\"System.Management.Automation.Runspaces.TypesPs1xmlReader+<>c\",\"System.Management.Automation.Runspaces.ConsolidatedString+ConsolidatedStringEqualityComparer\",\"System.Management.Automation.Runspaces.TypeTable+<>c\",\"System.Management.Automation.Runspaces.TypeTable+<>c__DisplayClass52_0\",\"System.Management.Automation.Runspaces.TypeTable+<>c__DisplayClass54_0\",\"System.Management.Automation.Runspaces.Types_Ps1Xml+<Get>d__2\",\"System.Management.Automation.Runspaces.TypesV3_Ps1Xml+<Get>d__3\",\"System.Management.Automation.Runspaces.GetEvent_Types_Ps1Xml+<Get>d__3\",\"System.Management.Automation.Runspaces.Command+MergeType\",\"System.Management.Automation.Runspaces.RunspaceBase+RunspaceEventQueueItem\",\"System.Management.Automation.Runspaces.RunspaceBase+<>c\",\"System.Management.Automation.Runspaces.LocalRunspace+DebugPreference\",\"System.Management.Automation.Runspaces.LocalRunspace+<>c__DisplayClass53_0\",\"System.Management.Automation.Runspaces.LocalRunspace+<>c__DisplayClass54_0\",\"System.Management.Automation.Runspaces.LocalRunspace+<>c__DisplayClass54_1\",\"System.Management.Automation.Runspaces.PipelineBase+ExecutionEventQueueItem\",\"System.Management.Automation.Runspaces.ContainerProcess+HCS_PROCESS_INFORMATION\",\"System.Management.Automation.Runspaces.EarlyStartup+<>c\",\"System.Management.Automation.Runspaces.InitialSessionState+<>c__DisplayClass0_0`1[T]\",\"System.Management.Automation.Runspaces.InitialSessionState+<>c__DisplayClass1_0`1[T]\",\"System.Management.Automation.Runspaces.InitialSessionState+<>c\",\"System.Management.Automation.Runspaces.InitialSessionState+<>c__DisplayClass142_0\",\"System.Management.Automation.Runspaces.InitialSessionState+<>c__DisplayClass142_1\",\"System.Management.Automation.Runspaces.InitialSessionState+<LookupCommands>d__160\",\"System.Management.Automation.Runspaces.InitialSessionState+<>c__DisplayClass168_0\",\"System.Management.Automation.Runspaces.PipelineReader`1+<GetReadEnumerator>d__20[T]\",\"System.Management.Automation.Runspaces.FormatTable+<>c__DisplayClass10_0\",\"System.Management.Automation.Runspaces.Certificate_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.Certificate_Format_Ps1Xml+<ViewsOf_System_Security_Cryptography_x005F_X509Certificates_x005F_X509Certificate2>d__1\",\"System.Management.Automation.Runspaces.Certificate_Format_Ps1Xml+<ViewsOf_CertificateProviderTypes>d__2\",\"System.Management.Automation.Runspaces.Certificate_Format_Ps1Xml+<ViewsOf_System_Management_Automation_Signature>d__3\",\"System.Management.Automation.Runspaces.Certificate_Format_Ps1Xml+<ViewsOf_System_Security_Cryptography_x005F_X509Certificates_x005F_X509CertificateEx>d__4\",\"System.Management.Automation.Runspaces.Diagnostics_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.Diagnostics_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_GetCounter_PerformanceCounterSampleSet>d__1\",\"System.Management.Automation.Runspaces.Diagnostics_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_GetCounter_CounterFileInfo>d__2\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_CodeDom_Compiler_CompilerError>d__1\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Reflection_Assembly>d__2\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Reflection_AssemblyName>d__3\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Globalization_CultureInfo>d__4\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Diagnostics_FileVersionInfo>d__5\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Diagnostics_EventLogEntry>d__6\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Diagnostics_EventLog>d__7\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Version>d__8\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Drawing_Printing_PrintDocument>d__9\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Collections_DictionaryEntry>d__10\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Diagnostics_ProcessModule>d__11\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Diagnostics_Process>d__12\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Diagnostics_Process_IncludeUserName>d__13\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_DirectoryServices_DirectoryEntry>d__14\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Management_Automation_PSSnapInInfo>d__15\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_ServiceProcess_ServiceController>d__16\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_TimeSpan>d__17\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_AppDomain>d__18\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_DateTime>d__19\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Security_AccessControl_ObjectSecurity>d__20\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Management_ManagementClass>d__21\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimClass>d__22\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Guid>d__23\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Management_ManagementObject_root_cimv2_Win32_PingStatus>d__24\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_PingStatus>d__25\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Management_ManagementObject_root_default_SystemRestore>d__26\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_default_SystemRestore>d__27\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Management_ManagementObject_root_cimv2_Win32_QuickFixEngineering>d__28\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_QuickFixEngineering>d__29\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_Process>d__30\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_ComputerSystem>d__31\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_WIN32_PROCESSOR>d__32\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_WIN32_DCOMApplication>d__33\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_WIN32_DESKTOP>d__34\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_WIN32_DESKTOPMONITOR>d__35\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_DeviceMemoryAddress>d__36\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_DiskDrive>d__37\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_DiskQuota>d__38\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_Environment>d__39\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_Directory>d__40\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_Group>d__41\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_IDEController>d__42\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_IRQResource>d__43\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_ScheduledJob>d__44\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_LoadOrderGroup>d__45\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_LogicalDisk>d__46\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_LogonSession>d__47\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_PhysicalMemoryArray>d__48\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_OnBoardDevice>d__49\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_OperatingSystem>d__50\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_DiskPartition>d__51\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_PortConnector>d__52\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_QuotaSetting>d__53\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_SCSIController>d__54\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_Service>d__55\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_UserAccount>d__56\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_NetworkProtocol>d__57\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_NetworkAdapter>d__58\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_NetworkAdapterConfiguration>d__59\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_NTDomain>d__60\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_Printer>d__61\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_PrintJob>d__62\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance_root_cimv2_Win32_Product>d__63\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Net_NetworkCredential>d__64\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_System_Management_Automation_PSMethod>d__65\",\"System.Management.Automation.Runspaces.DotNetTypes_Format_Ps1Xml+<ViewsOf_Microsoft_Management_Infrastructure_CimInstance___PartialCIMInstance>d__66\",\"System.Management.Automation.Runspaces.Event_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.Event_Format_Ps1Xml+<ViewsOf_System_Diagnostics_Eventing_Reader_EventLogRecord>d__1\",\"System.Management.Automation.Runspaces.Event_Format_Ps1Xml+<ViewsOf_System_Diagnostics_Eventing_Reader_EventLogConfiguration>d__2\",\"System.Management.Automation.Runspaces.Event_Format_Ps1Xml+<ViewsOf_System_Diagnostics_Eventing_Reader_ProviderMetadata>d__3\",\"System.Management.Automation.Runspaces.FileSystem_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.FileSystem_Format_Ps1Xml+<ViewsOf_FileSystemTypes>d__1\",\"System.Management.Automation.Runspaces.FileSystem_Format_Ps1Xml+<ViewsOf_System_Security_AccessControl_FileSystemSecurity>d__2\",\"System.Management.Automation.Runspaces.FileSystem_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_AlternateStreamData>d__3\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_ExtendedCmdletHelpInfo>d__1\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_ExtendedCmdletHelpInfo_DetailedView>d__2\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_ExtendedCmdletHelpInfo_FullView>d__3\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_ExtendedCmdletHelpInfo_ExamplesView>d__4\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_ExtendedCmdletHelpInfo_parameter>d__5\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_System_Management_Automation_VerboseRecord>d__6\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_Deserialized_System_Management_Automation_VerboseRecord>d__7\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_System_Management_Automation_DebugRecord>d__8\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_Deserialized_System_Management_Automation_DebugRecord>d__9\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_DscResourceHelpInfo_FullView>d__10\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_DscResourceHelpInfo_DetailedView>d__11\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_DscResourceHelpInfo>d__12\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_PSClassHelpInfo_FullView>d__13\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_PSClassHelpInfo_DetailedView>d__14\",\"System.Management.Automation.Runspaces.HelpV3_Format_Ps1Xml+<ViewsOf_PSClassHelpInfo>d__15\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_HelpInfoShort>d__1\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_CmdletHelpInfo>d__2\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo>d__3\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_DetailedView>d__4\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_ExamplesView>d__5\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_FullView>d__6\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_ProviderHelpInfo>d__7\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_FaqHelpInfo>d__8\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_GeneralHelpInfo>d__9\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_GlossaryHelpInfo>d__10\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_ScriptHelpInfo>d__11\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_Examples>d__12\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_Example>d__13\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_commandDetails>d__14\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_Parameters>d__15\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_Parameter>d__16\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_Syntax>d__17\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlDefinitionTextItem_MamlOrderedListTextItem_MamlParaTextItem_MamlUnorderedListTextItem>d__18\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_inputTypes>d__19\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_nonTerminatingErrors>d__20\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_terminatingErrors>d__21\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_relatedLinks>d__22\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_returnValues>d__23\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_alertSet>d__24\",\"System.Management.Automation.Runspaces.Help_Format_Ps1Xml+<ViewsOf_MamlCommandHelpInfo_details>d__25\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_RuntimeType>d__1\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_MemberDefinition>d__2\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_GroupInfo>d__3\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_GroupInfoNoElement>d__4\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_HistoryInfo>d__5\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_MatchInfo>d__6\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_PSVariable>d__7\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_PathInfo>d__8\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_CommandInfo>d__9\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_AliasInfo_System_Management_Automation_ApplicationInfo_System_Management_Automation_CmdletInfo_System_Management_Automation_ExternalScriptInfo_System_Management_Automation_FilterInfo_System_Management_Automation_FunctionInfo_System_Management_Automation_ScriptInfo>d__10\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_Runspaces_TypeData>d__11\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_ControlPanelItem>d__12\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_ApplicationInfo>d__13\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_ScriptInfo>d__14\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_ExternalScriptInfo>d__15\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_FunctionInfo>d__16\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_FilterInfo>d__17\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_AliasInfo>d__18\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_ListCommand_MemberInfo>d__19\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_ActiveDirectoryProvider_ADPSDriveInfo_System_Management_Automation_PSDriveInfo>d__20\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_ProviderInfo>d__21\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_CmdletInfo>d__22\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_FilterInfo_System_Management_Automation_FunctionInfo>d__23\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_PSDriveInfo>d__24\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_ShellVariable>d__25\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_ScriptBlock>d__26\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_ErrorRecord>d__27\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_WarningRecord>d__28\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Deserialized_System_Management_Automation_WarningRecord>d__29\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_InformationRecord>d__30\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_ByteCollection>d__31\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Exception>d__32\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_CommandParameterSetInfo>d__33\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_Runspaces_Runspace>d__34\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_Runspaces_PSSession>d__35\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_Job>d__36\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Deserialized_Microsoft_PowerShell_Commands_TextMeasureInfo>d__37\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Deserialized_Microsoft_PowerShell_Commands_GenericMeasureInfo>d__38\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_CallStackFrame>d__39\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_BreakpointTypes>d__40\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_PSSessionConfigurationCommands_PSSessionConfiguration>d__41\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_ComputerChangeInfo>d__42\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_RenameComputerChangeInfo>d__43\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_ModuleInfoGrouping>d__44\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_System_Management_Automation_PSModuleInfo>d__45\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_BasicHtmlWebResponseObject_Microsoft_PowerShell_Commands_HtmlWebResponseObject>d__46\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_WebResponseObject>d__47\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_Powershell_Utility_FileHash>d__48\",\"System.Management.Automation.Runspaces.PowerShellCore_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_PSRunspaceDebug>d__49\",\"System.Management.Automation.Runspaces.PowerShellTrace_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.PowerShellTrace_Format_Ps1Xml+<ViewsOf_System_Management_Automation_PSTraceSource>d__1\",\"System.Management.Automation.Runspaces.Registry_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.Registry_Format_Ps1Xml+<ViewsOf_Microsoft_PowerShell_Commands_Internal_TransactedRegistryKey_Microsoft_Win32_RegistryKey_System_Management_Automation_TreatAs_RegistryValue>d__1\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml+<GetFormatData>d__0\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml+<ViewsOf_System_x005F_Xml_x005F_XmlElement_http___schemas_dmtf_org_wbem_wsman_identity_1_wsmanidentity_x005F_xsd_IdentifyResponse>d__1\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml+<ViewsOf_Microsoft_WSMan_Management_WSManConfigElement>d__2\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml+<ViewsOf_Microsoft_WSMan_Management_WSManConfigContainerElement>d__3\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml+<ViewsOf_Microsoft_WSMan_Management_WSManConfigLeafElement>d__4\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml+<ViewsOf_Microsoft_WSMan_Management_WSManConfigLeafElement_InitParams>d__5\",\"System.Management.Automation.Runspaces.WSMan_Format_Ps1Xml+<ViewsOf_Microsoft_WSMan_Management_WSManConfigContainerElement_ComputerLevel>d__6\",\"System.Management.Automation.Language.ErrorStatementAst+<>c__DisplayClass24_0\",\"System.Management.Automation.Language.ErrorExpressionAst+<>c__DisplayClass6_0\",\"System.Management.Automation.Language.ScriptBlockAst+<>c\",\"System.Management.Automation.Language.ScriptBlockAst+<GetInferredType>d__63\",\"System.Management.Automation.Language.ScriptBlockAst+<System-Management-Automation-Language-IParameterMetadataProvider-GetScriptBlockAttributes>d__68\",\"System.Management.Automation.Language.ParamBlockAst+<>c\",\"System.Management.Automation.Language.NamedBlockAst+<>c__DisplayClass26_0\",\"System.Management.Automation.Language.ParameterAst+<GetInferredType>d__17\",\"System.Management.Automation.Language.StatementBlockAst+<>c__DisplayClass11_0\",\"System.Management.Automation.Language.FunctionDefinitionAst+<>c\",\"System.Management.Automation.Language.IfStatementAst+<>c__DisplayClass10_0\",\"System.Management.Automation.Language.IfStatementAst+<GetInferredType>d__10\",\"System.Management.Automation.Language.DataStatementAst+<>c\",\"System.Management.Automation.Language.SwitchStatementAst+<>c__DisplayClass15_0\",\"System.Management.Automation.Language.SwitchStatementAst+<GetInferredType>d__15\",\"System.Management.Automation.Language.TryStatementAst+<>c__DisplayClass15_0\",\"System.Management.Automation.Language.TryStatementAst+<GetInferredType>d__15\",\"System.Management.Automation.Language.CommandAst+<GetInferredType>d__15\",\"System.Management.Automation.Language.CommandAst+<GetInferredTypeFromScriptBlockParameter>d__16\",\"System.Management.Automation.Language.AssignmentStatementAst+<GetAssignmentTargets>d__19\",\"System.Management.Automation.Language.ConfigurationDefinitionAst+<>c\",\"System.Management.Automation.Language.ConfigurationDefinitionAst+<>c__DisplayClass33_0\",\"System.Management.Automation.Language.ConvertExpressionAst+<GetInferredType>d__6\",\"System.Management.Automation.Language.MemberExpressionAst+<GetInferredType>d__14\",\"System.Management.Automation.Language.GenericTypeName+<>c\",\"System.Management.Automation.Language.TypeExpressionAst+<GetInferredType>d__8\",\"System.Management.Automation.Language.VariableExpressionAst+<>c__DisplayClass13_0\",\"System.Management.Automation.Language.VariableExpressionAst+<>c\",\"System.Management.Automation.Language.VariableExpressionAst+<GetInferredType>d__13\",\"System.Management.Automation.Language.ConstantExpressionAst+<GetInferredType>d__9\",\"System.Management.Automation.Language.ExpandableStringExpressionAst+<GetInferredType>d__22\",\"System.Management.Automation.Language.ScriptBlockExpressionAst+<GetInferredType>d__8\",\"System.Management.Automation.Language.ArrayLiteralAst+<GetInferredType>d__8\",\"System.Management.Automation.Language.HashtableAst+<GetInferredType>d__9\",\"System.Management.Automation.Language.ArrayExpressionAst+<GetInferredType>d__8\",\"System.Management.Automation.Language.IndexExpressionAst+<>c__DisplayClass10_0\",\"System.Management.Automation.Language.IndexExpressionAst+<GetInferredType>d__10\",\"System.Management.Automation.Language.AstSearcher+<>c\",\"System.Management.Automation.Language.Compiler+DefaultValueExpressionWrapper\",\"System.Management.Automation.Language.Compiler+LoopGotoTargets\",\"System.Management.Automation.Language.Compiler+CaptureAstContext\",\"System.Management.Automation.Language.Compiler+MergeRedirectExprs\",\"System.Management.Automation.Language.Compiler+AutomaticVarSaver\",\"System.Management.Automation.Language.Compiler+<>c\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass158_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass174_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass174_1\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass175_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass180_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass181_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass185_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass186_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass190_0\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass190_1\",\"System.Management.Automation.Language.Compiler+<BuildHashtable>d__218\",\"System.Management.Automation.Language.Compiler+<>c__DisplayClass222_0\",\"System.Management.Automation.Language.InvokeMemberAssignableValue+<>c\",\"System.Management.Automation.Language.Parser+CommandArgumentContext\",\"System.Management.Automation.Language.Parser+<>c__DisplayClass20_0\",\"System.Management.Automation.Language.Parser+<GetNestedErrorAsts>d__64\",\"System.Management.Automation.Language.Parser+<>c\",\"System.Management.Automation.Language.Parser+<>c__DisplayClass99_0\",\"System.Management.Automation.Language.Parser+<>c__DisplayClass99_1\",\"System.Management.Automation.Language.Parser+<>c__DisplayClass149_0\",\"System.Management.Automation.Language.GetSafeValueVisitor+SafeValueContext\",\"System.Management.Automation.Language.GetSafeValueVisitor+<>c__DisplayClass40_0\",\"System.Management.Automation.Language.SemanticChecks+<>c\",\"System.Management.Automation.Language.SemanticChecks+<GetConstantDataStatementAllowedCommands>d__22\",\"System.Management.Automation.Language.SemanticChecks+<>c__DisplayClass37_0\",\"System.Management.Automation.Language.SemanticChecks+<>c__DisplayClass38_0\",\"System.Management.Automation.Language.RestrictedLanguageChecker+<>c__DisplayClass43_0\",\"System.Management.Automation.Language.SymbolTable+<>c\",\"System.Management.Automation.Language.SymbolResolver+<>c\",\"System.Management.Automation.Language.DynamicKeywordExtension+<>c__DisplayClass3_0\",\"System.Management.Automation.Language.Tokenizer+<>c\",\"System.Management.Automation.Language.Tokenizer+<>c__DisplayClass126_0\",\"System.Management.Automation.Language.Tokenizer+<>c__DisplayClass127_0\",\"System.Management.Automation.Language.TypeResolver+AmbiguousTypeException\",\"System.Management.Automation.Language.TypeCache+KeyComparer\",\"System.Management.Automation.Language.FindAllVariablesVisitor+<>c\",\"System.Management.Automation.Language.VariableAnalysis+LoopGotoTargets\",\"System.Management.Automation.Language.VariableAnalysis+Block\",\"System.Management.Automation.Language.VariableAnalysis+AssignmentTarget\",\"System.Management.Automation.Language.VariableAnalysis+<>c\",\"System.Management.Automation.Language.VariableAnalysis+<>c__DisplayClass46_0\",\"System.Management.Automation.Language.VariableAnalysis+<>c__DisplayClass50_0\",\"System.Management.Automation.Language.VariableAnalysis+<>c__DisplayClass53_0\",\"System.Management.Automation.Language.VariableAnalysis+<>c__DisplayClass54_0\",\"System.Management.Automation.Language.VariableAnalysis+<>c__DisplayClass57_0\",\"System.Management.Automation.Language.VariableAnalysis+<>c__DisplayClass57_1\",\"System.Management.Automation.Language.VariableAnalysis+<GetAssignmentTargets>d__64\",\"System.Management.Automation.Language.DynamicMetaObjectBinderExtentions+<>c\",\"System.Management.Automation.Language.PSEnumerableBinder+<>c\",\"System.Management.Automation.Language.PSEnumerableBinder+<>c__DisplayClass7_0\",\"System.Management.Automation.Language.PSToObjectArrayBinder+<>c\",\"System.Management.Automation.Language.PSInvokeDynamicMemberBinder+KeyComparer\",\"System.Management.Automation.Language.PSAttributeGenerator+<>c\",\"System.Management.Automation.Language.PSBinaryOperationBinder+<>c\",\"System.Management.Automation.Language.PSGetIndexBinder+<>c\",\"System.Management.Automation.Language.PSGetIndexBinder+<>c__DisplayClass15_0\",\"System.Management.Automation.Language.PSGetIndexBinder+<>c__DisplayClass17_0\",\"System.Management.Automation.Language.PSGetIndexBinder+<>c__DisplayClass17_1\",\"System.Management.Automation.Language.PSSetIndexBinder+<>c\",\"System.Management.Automation.Language.PSSetIndexBinder+<>c__DisplayClass9_0\",\"System.Management.Automation.Language.PSGetMemberBinder+KeyComparer\",\"System.Management.Automation.Language.PSGetMemberBinder+ReservedMemberBinder\",\"System.Management.Automation.Language.PSGetMemberBinder+<>c\",\"System.Management.Automation.Language.PSSetMemberBinder+KeyComparer\",\"System.Management.Automation.Language.PSInvokeMemberBinder+MethodInvocationType\",\"System.Management.Automation.Language.PSInvokeMemberBinder+KeyComparer\",\"System.Management.Automation.Language.PSInvokeMemberBinder+<>c\",\"System.Management.Automation.Language.PSInvokeMemberBinder+<>c__DisplayClass18_0\",\"System.Management.Automation.Language.PSInvokeMemberBinder+<>c__DisplayClass18_1\",\"System.Management.Automation.Language.PSInvokeMemberBinder+<>c__DisplayClass18_2\",\"System.Management.Automation.Language.PSInvokeMemberBinder+<>c__23`1[T]\",\"System.Management.Automation.Language.PSInvokeMemberBinder+<>c__DisplayClass24_0\",\"System.Management.Automation.Language.PSCreateInstanceBinder+KeyComparer\",\"System.Management.Automation.Language.PSCreateInstanceBinder+<>c\",\"System.Management.Automation.Language.PSInvokeBaseCtorBinder+KeyComparer\",\"System.Management.Automation.Language.PSInvokeBaseCtorBinder+<>c\",\"System.Management.Automation.Language.TypeDefiner+DefineTypeHelper\",\"System.Management.Automation.Language.TypeDefiner+DefineEnumHelper\",\"System.Management.Automation.Language.TypeDefiner+<GetAssemblyAttributeBuilders>d__15\",\"System.Management.Automation.Language.PseudoParameterBinder+BindingType\",\"System.Management.Automation.Language.PseudoParameterBinder+<>c__DisplayClass26_0\",\"System.Management.Automation.Language.PseudoParameterBinder+<>c\",\"System.Management.Automation.Internal.CommonParameters+ValidateVariableName\",\"System.Management.Automation.Internal.ModuleUtils+<GetAllAvailableModuleFiles>d__1\",\"System.Management.Automation.Internal.ModuleUtils+<GetDefaultAvailableModuleFiles>d__2\",\"System.Management.Automation.Internal.ModuleUtils+<GetDefaultAvailableModuleFiles>d__4\",\"System.Management.Automation.Internal.ModuleUtils+<>c\",\"System.Management.Automation.Internal.ModuleUtils+<GetMatchingCommands>d__8\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiAllocDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiFreeDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiOpenDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiReadDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiWriteDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiCloseDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiSeekDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiNotifyDelegate\",\"System.Management.Automation.Internal.CabinetNativeApi+PermissionMode\",\"System.Management.Automation.Internal.CabinetNativeApi+OpFlags\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiCreateCpuType\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiNotification\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiNotificationType\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiERF\",\"System.Management.Automation.Internal.CabinetNativeApi+FdiContextHandle\",\"System.Management.Automation.Internal.ClientPowerShellDataStructureHandler+connectionStates\",\"System.Management.Automation.Internal.SessionStateKeeper+<>c\",\"System.Management.Automation.Internal.ClassOps+<>c\",\"System.Management.Automation.Internal.PipelineProcessor+PipelineExecutionStatus\",\"System.Management.Automation.Internal.AlternateDataStreamUtilities+NativeMethods\",\"System.Management.Automation.Internal.AlternateDataStreamUtilities+SafeFindHandle\",\"System.Management.Automation.Internal.AlternateDataStreamUtilities+AlternateStreamNativeData\",\"System.Management.Automation.Internal.CopyFileRemoteUtils+<GetAllCopyToRemoteScriptFunctions>d__25\",\"System.Management.Automation.Internal.CopyFileRemoteUtils+<GetAllCopyFromRemoteScriptFunctions>d__27\",\"System.Management.Automation.Internal.TelemetryWrapper+<>o__5`1[T]\",\"System.Management.Automation.Internal.Host.InternalHost+PromptContextData\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=6\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=10\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=12\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=14\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=16\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=20\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=32\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=46\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=56\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=68\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=76\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=196\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=252\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=512\",\"<PrivateImplementationDetails>+__StaticArrayInitTypeSize=676\",\"Microsoft.PowerShell.Commands.DisconnectPSSessionCommand+DisconnectRunspaceOperation+<>c__DisplayClass12_0\",\"Microsoft.PowerShell.Commands.ConnectPSSessionCommand+ConnectRunspaceOperation+<>c__DisplayClass17_0\",\"Microsoft.PowerShell.Commands.ConnectPSSessionCommand+ConnectRunspaceOperation+<>c__DisplayClass18_0\",\"Microsoft.PowerShell.Commands.FileStreamBackReader+NativeMethods+CPINFO\",\"Microsoft.PowerShell.Commands.FileSystemProvider+NativeMethods+FileAttributes\",\"Microsoft.PowerShell.Commands.Internal.Format.OutCommandInner+WideOutputContext+StringValuesBuffer\",\"Microsoft.PowerShell.Commands.Internal.Format.ConsoleLineOutput+PromptHandler+PromptResponse\",\"System.Management.Automation.RemoteDiscoveryHelper+CimModule+DiscoveredModuleType\",\"System.Management.Automation.RemoteDiscoveryHelper+CimModule+CimModuleManifestFile\",\"System.Management.Automation.RemoteDiscoveryHelper+CimModule+CimModuleImplementationFile\",\"System.Management.Automation.RemoteDiscoveryHelper+CimModule+<>c\",\"System.Management.Automation.DotNetAdapter+PropertyCacheEntry+GetterDelegate\",\"System.Management.Automation.DotNetAdapter+PropertyCacheEntry+SetterDelegate\",\"System.Management.Automation.LanguagePrimitives+EnumSingleTypeConverter+EnumHashEntry\",\"System.Management.Automation.PSObject+PSDynamicMetaObject+<>c\",\"System.Management.Automation.ComInvoker+Variant+TypeUnion\",\"System.Management.Automation.ComInvoker+Variant+Record\",\"System.Management.Automation.ComInvoker+Variant+UnionTypes\",\"System.Management.Automation.ThrottlingJob+ForwardingHelper+<>c__DisplayClass24_0\",\"System.Management.Automation.ThrottlingJob+ForwardingHelper+<>c__DisplayClass24_1\",\"System.Management.Automation.ServerRunspacePoolDriver+PowerShellDriverInvoker+InvokePump\",\"System.Management.Automation.Utils+NativeMethods+FileAttributes\",\"System.Management.Automation.Utils+NativeMethods+FILETIME\",\"System.Management.Automation.Utils+NativeMethods+WIN32_FIND_DATA\",\"System.Management.Automation.AmsiUtils+AmsiNativeMethods+AMSI_RESULT\",\"System.Management.Automation.PsUtils+NativeMethods+SYSTEM_INFO\",\"System.Management.Automation.ClrFacade+NativeMethods+IInternetSecurityManager\",\"System.Management.Automation.CommandCompletion+PSv2CompletionCompleter+CommandAndName\",\"System.Management.Automation.CommandCompletion+PSv2CompletionCompleter+PathItemAndConvertedPath\",\"System.Management.Automation.CommandCompletion+PSv2CompletionCompleter+<>c\",\"System.Management.Automation.Tracing.EtwActivity+UnsafeNativeMethods+ActivityControlCode\",\"System.Management.Automation.Interpreter.InstructionList+DebugView+InstructionView\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManUserNameAuthenticationCredentials+WSManUserNameCredentialStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCertificateThumbprintCredentials+WSManThumbprintStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManDataDWord+WSManDWordDataInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCommandArgSet+WSManCommandArgSetInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellDisconnectInfo+WSManShellDisconnectInfoInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManEnvironmentVariableSet+WSManEnvironmentVariableSetInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManEnvironmentVariableSet+WSManEnvironmentVariableInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManProxyInfo+WSManProxyInfoInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManShellAsync+WSManShellAsyncInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCreateShellDataResult+WSManCreateShellDataResultInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCreateShellDataResult+WSManDataStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCreateShellDataResult+WSManTextDataInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManConnectDataResult+WSManConnectDataResultInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManConnectDataResult+WSManDataStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManConnectDataResult+WSManTextDataInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManReceiveDataResult+WSManReceiveDataResultInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManReceiveDataResult+WSManDataStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManReceiveDataResult+WSManBinaryDataInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManPluginRequest+WSManPluginRequestInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManSenderDetails+WSManSenderDetailsInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManCertificateDetails+WSManCertificateDetailsInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManOperationInfo+WSManOperationInfoInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManOperationInfo+WSManFragmentInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManOperationInfo+WSManFilterInternal\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManSelectorSet+WSManSelectorSetStruct\",\"System.Management.Automation.Remoting.Client.WSManNativeApi+WSManSelectorSet+WSManKeyStruct\",\"System.Management.Automation.Language.Compiler+AutomaticVarSaver+<GetTemps>d__5\",\"System.Management.Automation.Language.TypeDefiner+DefineTypeHelper+<>c__DisplayClass23_0\",\"System.Management.Automation.Language.TypeDefiner+DefineTypeHelper+<>c__DisplayClass24_0\",\"System.Management.Automation.Language.TypeDefiner+DefineEnumHelper+<>c\",\"System.Management.Automation.Internal.AlternateDataStreamUtilities+NativeMethods+StreamInfoLevels\"]},\"N\":\"DefinedTypes\"},{\"TN\":{\"T\":[\"System.Security.Policy.Evidence\",\"System.Object\"],\"RefId\":6},\"RefId\":6,\"IE\":{\"S\":[\"<System.Security.Policy.GacInstalled version=\\\"1\\\"/>_x000D__x000A_\",\"<StrongName version=\\\"1\\\"_x000D__x000A_Key=\\\"0024000004800000940000000602000000240000525341310004000001000100B5FC90E7027F67871E773A8FDE8938C81DD402BA65B9201D60593E96C492651E889CC13F1415EBB53FAC1131AE0BD333C5EE6021672D9718EA31A8AEBD0DA0072F25D87DBA6FC90FFD598ED4DA35E44C398C454307E8E33B8426143DAEC9F596836F97C8F74750E5975C64E2189F45DEF46B2A2B1247ADC3652BF5C308055DA9\\\"_x000D__x000A_Name=\\\"System.Management.Automation\\\"_x000D__x000A_Version=\\\"3.0.0.0\\\"/>_x000D__x000A_\",\"<System.Security.Policy.Url version=\\\"1\\\">_x000D__x000A_<Url>file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Management.Automation/v4.0_3.0.0.0__31bf3856ad364e35/System.Management.Automation.dll<\\/Url>_x000D__x000A_<\\/System.Security.Policy.Url>_x000D__x000A_\",\"<System.Security.Policy.Zone version=\\\"1\\\">_x000D__x000A_<Zone>MyComputer<\\/Zone>_x000D__x000A_<\\/System.Security.Policy.Zone>_x000D__x000A_\",\"<System.Security.Policy.Hash version=\\\"2\\\">_x000D__x000A_<hash algorithm=\\\"SHA1\\\"_x000D__x000A_value=\\\"FBB43B7AE0E0C6E1F4612BC170FCECAA6FA3171F\\\"/>_x000D__x000A_<hash algorithm=\\\"SHA256\\\"_x000D__x000A_value=\\\"41AC0D1CAFA3DBAEEF59A3FCC53EFC266C185D185941EBEFB6971451F0A1619D\\\"/>_x000D__x000A_<hash algorithm=\\\"MD5\\\"_x000D__x000A_value=\\\"09482A81E916976E306BE94B5D61CC75\\\"/>_x000D__x000A_<\\/System.Security.Policy.Hash>_x000D__x000A_\"]},\"N\":\"Evidence\"},{\"TN\":{\"T\":[\"System.Security.PermissionSet\",\"System.Object\"],\"RefId\":7},\"RefId\":7,\"IE\":{},\"N\":\"PermissionSet\"},{\"TN\":{\"T\":[\"System.Type[]\",\"System.Array\",\"System.Object\"],\"RefId\":8},\"RefId\":8,\"LST\":{\"Ref\":{\"RefId\":1},\"S\":[\"Microsoft.PowerShell.ToStringCodeMethods\",\"Microsoft.PowerShell.AdapterCodeMethods\",\"Microsoft.PowerShell.DeserializingTypeConverter\",\"Microsoft.PowerShell.ExecutionPolicy\",\"Microsoft.PowerShell.ExecutionPolicyScope\",\"Microsoft.PowerShell.PSAuthorizationManager\",\"Microsoft.PowerShell.PSCorePSSnapIn\",\"Microsoft.PowerShell.DesiredStateConfiguration.ArgumentToConfigurationDataTransformationAttribute\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscRemoteOperationsClass\",\"Microsoft.PowerShell.DesiredStateConfiguration.Internal.DscClassCache\",\"Microsoft.PowerShell.Cim.CimInstanceAdapter\",\"Microsoft.PowerShell.Cmdletization.MethodInvocationInfo\",\"Microsoft.PowerShell.Cmdletization.MethodParameterBindings\",\"Microsoft.PowerShell.Cmdletization.MethodParameter\",\"Microsoft.PowerShell.Cmdletization.BehaviorOnNoMatch\",\"Microsoft.PowerShell.Cmdletization.QueryBuilder\",\"Microsoft.PowerShell.Cmdletization.CmdletAdapter`1[TObjectInstance]\",\"Microsoft.PowerShell.Cmdletization.Xml.ConfirmImpact\",\"Microsoft.PowerShell.Cmdletization.Xml.ItemsChoiceType\",\"Microsoft.PowerShell.Telemetry.Internal.TelemetryAPI\",\"Microsoft.PowerShell.Telemetry.Internal.IHostProvidesTelemetryData\",\"Microsoft.PowerShell.Commands.GetCommandCommand\",\"Microsoft.PowerShell.Commands.NounArgumentCompleter\",\"Microsoft.PowerShell.Commands.ExportModuleMemberCommand\",\"Microsoft.PowerShell.Commands.GetModuleCommand\",\"Microsoft.PowerShell.Commands.PSEditionArgumentCompleter\",\"Microsoft.PowerShell.Commands.ImportModuleCommand\",\"Microsoft.PowerShell.Commands.ModuleCmdletBase\",\"Microsoft.PowerShell.Commands.ModuleSpecification\",\"Microsoft.PowerShell.Commands.NewModuleCommand\",\"Microsoft.PowerShell.Commands.NewModuleManifestCommand\",\"Microsoft.PowerShell.Commands.RemoveModuleCommand\",\"Microsoft.PowerShell.Commands.TestModuleManifestCommand\",\"Microsoft.PowerShell.Commands.ObjectEventRegistrationBase\",\"Microsoft.PowerShell.Commands.GetHelpCommand\",\"Microsoft.PowerShell.Commands.GetHelpCodeMethods\",\"Microsoft.PowerShell.Commands.HelpCategoryInvalidException\",\"Microsoft.PowerShell.Commands.HelpNotFoundException\",\"Microsoft.PowerShell.Commands.UpdatableHelpCommandBase\",\"Microsoft.PowerShell.Commands.UpdateHelpCommand\",\"Microsoft.PowerShell.Commands.SaveHelpCommand\",\"Microsoft.PowerShell.Commands.HistoryInfo\",\"Microsoft.PowerShell.Commands.GetHistoryCommand\",\"Microsoft.PowerShell.Commands.InvokeHistoryCommand\",\"Microsoft.PowerShell.Commands.AddHistoryCommand\",\"Microsoft.PowerShell.Commands.ClearHistoryCommand\",\"Microsoft.PowerShell.Commands.RegisterPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.PSSessionConfigurationCommandBase\",\"Microsoft.PowerShell.Commands.UnregisterPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.GetPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.SetPSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.EnablePSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.DisablePSSessionConfigurationCommand\",\"Microsoft.PowerShell.Commands.EnablePSRemotingCommand\",\"Microsoft.PowerShell.Commands.DisablePSRemotingCommand\",\"Microsoft.PowerShell.Commands.GetPSSessionCapabilityCommand\",\"Microsoft.PowerShell.Commands.InvokeCommandCommand\",\"Microsoft.PowerShell.Commands.NewPSSessionCommand\",\"Microsoft.PowerShell.Commands.DisconnectPSSessionCommand\",\"Microsoft.PowerShell.Commands.ConnectPSSessionCommand\",\"Microsoft.PowerShell.Commands.SessionFilterState\",\"Microsoft.PowerShell.Commands.ReceivePSSessionCommand\",\"Microsoft.PowerShell.Commands.OutTarget\",\"Microsoft.PowerShell.Commands.GetPSSessionCommand\",\"Microsoft.PowerShell.Commands.RemovePSSessionCommand\",\"Microsoft.PowerShell.Commands.StartJobCommand\",\"Microsoft.PowerShell.Commands.PSRemotingCmdlet\",\"Microsoft.PowerShell.Commands.PSRemotingBaseCmdlet\",\"Microsoft.PowerShell.Commands.PSExecutionCmdlet\",\"Microsoft.PowerShell.Commands.PSRunspaceCmdlet\",\"Microsoft.PowerShell.Commands.GetJobCommand\",\"Microsoft.PowerShell.Commands.ReceiveJobCommand\",\"Microsoft.PowerShell.Commands.StopJobCommand\",\"Microsoft.PowerShell.Commands.WaitJobCommand\",\"Microsoft.PowerShell.Commands.JobCmdletBase\",\"Microsoft.PowerShell.Commands.RemoveJobCommand\",\"Microsoft.PowerShell.Commands.SuspendJobCommand\",\"Microsoft.PowerShell.Commands.ResumeJobCommand\",\"Microsoft.PowerShell.Commands.DebugJobCommand\",\"Microsoft.PowerShell.Commands.EnterPSSessionCommand\",\"Microsoft.PowerShell.Commands.ExitPSSessionCommand\",\"Microsoft.PowerShell.Commands.NewPSSessionOptionCommand\",\"Microsoft.PowerShell.Commands.WSManConfigurationOption\",\"Microsoft.PowerShell.Commands.NewPSTransportOptionCommand\",\"Microsoft.PowerShell.Commands.NewPSSessionConfigurationFileCommand\",\"Microsoft.PowerShell.Commands.NewPSRoleCapabilityFileCommand\",\"Microsoft.PowerShell.Commands.TestPSSessionConfigurationFileCommand\",\"Microsoft.PowerShell.Commands.EnterPSHostProcessCommand\",\"Microsoft.PowerShell.Commands.ExitPSHostProcessCommand\",\"Microsoft.PowerShell.Commands.GetPSHostProcessInfoCommand\",\"Microsoft.PowerShell.Commands.PSHostProcessInfo\",\"Microsoft.PowerShell.Commands.RegistryProvider\",\"Microsoft.PowerShell.Commands.RegistryProviderSetItemDynamicParameter\",\"Microsoft.PowerShell.Commands.ForEachObjectCommand\",\"Microsoft.PowerShell.Commands.WhereObjectCommand\",\"Microsoft.PowerShell.Commands.SetPSDebugCommand\",\"Microsoft.PowerShell.Commands.SetStrictModeCommand\",\"Microsoft.PowerShell.Commands.FormatDefaultCommand\",\"Microsoft.PowerShell.Commands.OutLineOutputCommand\",\"Microsoft.PowerShell.Commands.OutNullCommand\",\"Microsoft.PowerShell.Commands.OutDefaultCommand\",\"Microsoft.PowerShell.Commands.OutHostCommand\",\"Microsoft.PowerShell.Commands.AliasProvider\",\"Microsoft.PowerShell.Commands.AliasProviderDynamicParameters\",\"Microsoft.PowerShell.Commands.EnvironmentProvider\",\"Microsoft.PowerShell.Commands.FileSystemProvider\",\"Microsoft.PowerShell.Commands.FileSystemCmdletProviderEncoding\",\"Microsoft.PowerShell.Commands.FileSystemContentDynamicParametersBase\",\"Microsoft.PowerShell.Commands.FileSystemClearContentDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemContentWriterDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemContentReaderDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemItemProviderDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemProviderGetItemDynamicParameters\",\"Microsoft.PowerShell.Commands.FileSystemProviderRemoveItemDynamicParameters\",\"Microsoft.PowerShell.Commands.InternalSymbolicLinkLinkCodeMethods\",\"Microsoft.PowerShell.Commands.FunctionProvider\",\"Microsoft.PowerShell.Commands.FunctionProviderDynamicParameters\",\"Microsoft.PowerShell.Commands.SessionStateProviderBase\",\"Microsoft.PowerShell.Commands.SessionStateProviderBaseContentReaderWriter\",\"Microsoft.PowerShell.Commands.VariableProvider\",\"Microsoft.PowerShell.Commands.OpenMode\",\"Microsoft.PowerShell.Commands.PSSnapInCommandBase\",\"Microsoft.PowerShell.Commands.AddPSSnapinCommand\",\"Microsoft.PowerShell.Commands.RemovePSSnapinCommand\",\"Microsoft.PowerShell.Commands.GetPSSnapinCommand\",\"Microsoft.PowerShell.Commands.ConsoleCmdletsBase\",\"Microsoft.PowerShell.Commands.ExportConsoleCommand\",\"Microsoft.PowerShell.Commands.Management.TransactedString\",\"Microsoft.PowerShell.Commands.Internal.RemotingErrorResources\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistryKey\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistryAccessRule\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistryAuditRule\",\"Microsoft.PowerShell.Commands.Internal.TransactedRegistrySecurity\",\"Microsoft.PowerShell.Commands.Internal.Format.OuterFormatShapeCommandBase\",\"Microsoft.PowerShell.Commands.Internal.Format.OuterFormatTableAndListBase\",\"Microsoft.PowerShell.Commands.Internal.Format.OuterFormatTableBase\",\"Microsoft.PowerShell.Commands.Internal.Format.FrontEndCommandBase\",\"System.Management.Automation.ChildItemCmdletProviderIntrinsics\",\"System.Management.Automation.ReturnContainers\",\"System.Management.Automation.ProviderIntrinsics\",\"System.Management.Automation.IDynamicParameters\",\"System.Management.Automation.SwitchParameter\",\"System.Management.Automation.CommandInvocationIntrinsics\",\"System.Management.Automation.PSCmdlet\",\"System.Management.Automation.Cmdlet\",\"System.Management.Automation.ShouldProcessReason\",\"System.Management.Automation.ActionPreference\",\"System.Management.Automation.ConfirmImpact\",\"System.Management.Automation.ContentCmdletProviderIntrinsics\",\"System.Management.Automation.DriveManagementIntrinsics\",\"System.Management.Automation.FlagsExpression`1[T]\",\"System.Management.Automation.ErrorCategory\",\"System.Management.Automation.ErrorCategoryInfo\",\"System.Management.Automation.ErrorDetails\",\"System.Management.Automation.ErrorRecord\",\"System.Management.Automation.IContainsErrorRecord\",\"System.Management.Automation.IResourceSupplier\",\"System.Management.Automation.InvocationInfo\",\"System.Management.Automation.RemoteCommandInfo\",\"System.Management.Automation.ItemCmdletProviderIntrinsics\",\"System.Management.Automation.CopyContainers\",\"System.Management.Automation.PathIntrinsics\",\"System.Management.Automation.ProgressRecord\",\"System.Management.Automation.ProgressRecordType\",\"System.Management.Automation.InformationRecord\",\"System.Management.Automation.HostInformationMessage\",\"System.Management.Automation.PropertyCmdletProviderIntrinsics\",\"System.Management.Automation.CmdletProviderManagementIntrinsics\",\"System.Management.Automation.ProxyCommand\",\"System.Management.Automation.SessionState\",\"System.Management.Automation.SessionStateEntryVisibility\",\"System.Management.Automation.PSLanguageMode\",\"System.Management.Automation.PagingParameters\",\"System.Management.Automation.PSVariableIntrinsics\",\"System.Management.Automation.ICommandRuntime\",\"System.Management.Automation.ICommandRuntime2\",\"System.Management.Automation.AliasInfo\",\"System.Management.Automation.ApplicationInfo\",\"System.Management.Automation.CmdletInfo\",\"System.Management.Automation.DefaultParameterDictionary\",\"System.Management.Automation.CommandLookupEventArgs\",\"System.Management.Automation.PSModuleAutoLoadingPreference\",\"System.Management.Automation.CommandTypes\",\"System.Management.Automation.CommandInfo\",\"System.Management.Automation.PSTypeName\",\"System.Management.Automation.ExternalScriptInfo\",\"System.Management.Automation.PSSnapInSpecification\",\"System.Management.Automation.FilterInfo\",\"System.Management.Automation.FunctionInfo\",\"System.Management.Automation.ConfigurationInfo\",\"System.Management.Automation.ImplementedAsType\",\"System.Management.Automation.DscResourceInfo\",\"System.Management.Automation.DscResourcePropertyInfo\",\"System.Management.Automation.CommandParameterInfo\",\"System.Management.Automation.CommandParameterSetInfo\",\"System.Management.Automation.RuntimeDefinedParameter\",\"System.Management.Automation.RuntimeDefinedParameterDictionary\",\"System.Management.Automation.ScriptInfo\",\"System.Management.Automation.ParameterSetMetadata\",\"System.Management.Automation.ParameterMetadata\",\"System.Management.Automation.WorkflowInfo\",\"System.Management.Automation.RemoteException\",\"System.Management.Automation.PSClassInfo\",\"System.Management.Automation.PSClassMemberInfo\",\"System.Management.Automation.ModuleIntrinsics\",\"System.Management.Automation.IModuleAssemblyInitializer\",\"System.Management.Automation.IModuleAssemblyCleanup\",\"System.Management.Automation.PSModuleInfo\",\"System.Management.Automation.ModuleType\",\"System.Management.Automation.ModuleAccessMode\",\"System.Management.Automation.EngineIntrinsics\",\"System.Management.Automation.PSEventManager\",\"System.Management.Automation.PSEngineEvent\",\"System.Management.Automation.PSEventSubscriber\",\"System.Management.Automation.PSEventHandler\",\"System.Management.Automation.ForwardedEventArgs\",\"System.Management.Automation.PSEventArgs\",\"System.Management.Automation.PSEventReceivedEventHandler\",\"System.Management.Automation.PSEventUnsubscribedEventArgs\",\"System.Management.Automation.PSEventUnsubscribedEventHandler\",\"System.Management.Automation.PSEventArgsCollection\",\"System.Management.Automation.PSEventJob\",\"System.Management.Automation.Breakpoint\",\"System.Management.Automation.CommandBreakpoint\",\"System.Management.Automation.VariableAccessMode\",\"System.Management.Automation.VariableBreakpoint\",\"System.Management.Automation.LineBreakpoint\",\"System.Management.Automation.DebuggerResumeAction\",\"System.Management.Automation.DebuggerStopEventArgs\",\"System.Management.Automation.BreakpointUpdateType\",\"System.Management.Automation.BreakpointUpdatedEventArgs\",\"System.Management.Automation.PSJobStartEventArgs\",\"System.Management.Automation.DebugSource\",\"System.Management.Automation.DebugModes\",\"System.Management.Automation.Debugger\",\"System.Management.Automation.DebuggerCommandResults\",\"System.Management.Automation.PSDebugContext\",\"System.Management.Automation.CallStackFrame\",\"System.Management.Automation.PSPropertyAdapter\",\"System.Management.Automation.PSTypeConverter\",\"System.Management.Automation.ConvertThroughString\",\"System.Management.Automation.LanguagePrimitives\",\"System.Management.Automation.PSMemberTypes\",\"System.Management.Automation.PSMemberViewTypes\",\"System.Management.Automation.PSMemberInfo\",\"System.Management.Automation.PSPropertyInfo\",\"System.Management.Automation.PSAliasProperty\",\"System.Management.Automation.PSCodeProperty\",\"System.Management.Automation.PSProperty\",\"System.Management.Automation.PSAdaptedProperty\",\"System.Management.Automation.PSNoteProperty\",\"System.Management.Automation.PSVariableProperty\",\"System.Management.Automation.PSScriptProperty\",\"System.Management.Automation.PSMethodInfo\",\"System.Management.Automation.PSCodeMethod\",\"System.Management.Automation.PSScriptMethod\",\"System.Management.Automation.PSMethod\",\"System.Management.Automation.PSParameterizedProperty\",\"System.Management.Automation.PSMemberSet\",\"System.Management.Automation.PSPropertySet\",\"System.Management.Automation.PSEvent\",\"System.Management.Automation.PSDynamicMember\",\"System.Management.Automation.PSMemberInfoCollection`1[T]\",\"System.Management.Automation.ReadOnlyPSMemberInfoCollection`1[T]\",\"System.Management.Automation.PSObject\",\"System.Management.Automation.PSCustomObject\",\"System.Management.Automation.ExtendedTypeSystemException\",\"System.Management.Automation.MethodException\",\"System.Management.Automation.MethodInvocationException\",\"System.Management.Automation.GetValueException\",\"System.Management.Automation.PropertyNotFoundException\",\"System.Management.Automation.GetValueInvocationException\",\"System.Management.Automation.SetValueException\",\"System.Management.Automation.SetValueInvocationException\",\"System.Management.Automation.PSInvalidCastException\",\"System.Management.Automation.PSReference\",\"System.Management.Automation.SettingValueExceptionEventArgs\",\"System.Management.Automation.GettingValueExceptionEventArgs\",\"System.Management.Automation.PSObjectPropertyDescriptor\",\"System.Management.Automation.PSObjectTypeDescriptor\",\"System.Management.Automation.PSObjectTypeDescriptionProvider\",\"System.Management.Automation.InformationalRecord\",\"System.Management.Automation.WarningRecord\",\"System.Management.Automation.DebugRecord\",\"System.Management.Automation.VerboseRecord\",\"System.Management.Automation.PSListModifier\",\"System.Management.Automation.PSListModifier`1[T]\",\"System.Management.Automation.InvalidPowerShellStateException\",\"System.Management.Automation.PSInvocationState\",\"System.Management.Automation.RunspaceMode\",\"System.Management.Automation.PSInvocationStateInfo\",\"System.Management.Automation.PSInvocationStateChangedEventArgs\",\"System.Management.Automation.PSInvocationSettings\",\"System.Management.Automation.RemoteStreamOptions\",\"System.Management.Automation.PowerShell\",\"System.Management.Automation.PSDataStreams\",\"System.Management.Automation.PSCommand\",\"System.Management.Automation.DataAddedEventArgs\",\"System.Management.Automation.DataAddingEventArgs\",\"System.Management.Automation.PSDataCollection`1[T]\",\"System.Management.Automation.HostUtilities\",\"System.Management.Automation.RunspaceInvoke\",\"System.Management.Automation.RunspacePoolStateInfo\",\"System.Management.Automation.JobState\",\"System.Management.Automation.InvalidJobStateException\",\"System.Management.Automation.JobStateInfo\",\"System.Management.Automation.JobStateEventArgs\",\"System.Management.Automation.JobIdentifier\",\"System.Management.Automation.IJobDebugger\",\"System.Management.Automation.Job\",\"System.Management.Automation.Job2\",\"System.Management.Automation.JobThreadOptions\",\"System.Management.Automation.ContainerParentJob\",\"System.Management.Automation.JobFailedException\",\"System.Management.Automation.JobDefinition\",\"System.Management.Automation.JobInvocationInfo\",\"System.Management.Automation.JobSourceAdapter\",\"System.Management.Automation.PSJobProxy\",\"System.Management.Automation.PSChildJobProxy\",\"System.Management.Automation.JobDataAddedEventArgs\",\"System.Management.Automation.PowerShellStreamType\",\"System.Management.Automation.PowerShellStreams`2[TInput,TOutput]\",\"System.Management.Automation.JobManager\",\"System.Management.Automation.PSSessionTypeOption\",\"System.Management.Automation.PSTransportOption\",\"System.Management.Automation.RemotingCapability\",\"System.Management.Automation.RemotingBehavior\",\"System.Management.Automation.RunspaceRepository\",\"System.Management.Automation.Repository`1[T]\",\"System.Management.Automation.JobRepository\",\"System.Management.Automation.ValidateArgumentsAttribute\",\"System.Management.Automation.ValidateEnumeratedArgumentsAttribute\",\"System.Management.Automation.DSCResourceRunAsCredential\",\"System.Management.Automation.DscResourceAttribute\",\"System.Management.Automation.DscPropertyAttribute\",\"System.Management.Automation.DscLocalConfigurationManagerAttribute\",\"System.Management.Automation.CmdletCommonMetadataAttribute\",\"System.Management.Automation.CmdletAttribute\",\"System.Management.Automation.OutputTypeAttribute\",\"System.Management.Automation.DynamicClassImplementationAssemblyAttribute\",\"System.Management.Automation.AliasAttribute\",\"System.Management.Automation.ParameterAttribute\",\"System.Management.Automation.PSTypeNameAttribute\",\"System.Management.Automation.SupportsWildcardsAttribute\",\"System.Management.Automation.PSDefaultValueAttribute\",\"System.Management.Automation.HiddenAttribute\",\"System.Management.Automation.ValidateLengthAttribute\",\"System.Management.Automation.ValidateRangeAttribute\",\"System.Management.Automation.ValidatePatternAttribute\",\"System.Management.Automation.ValidateScriptAttribute\",\"System.Management.Automation.ValidateCountAttribute\",\"System.Management.Automation.ValidateSetAttribute\",\"System.Management.Automation.AllowNullAttribute\",\"System.Management.Automation.AllowEmptyStringAttribute\",\"System.Management.Automation.AllowEmptyCollectionAttribute\",\"System.Management.Automation.ValidateDriveAttribute\",\"System.Management.Automation.ValidateUserDriveAttribute\",\"System.Management.Automation.ValidateNotNullAttribute\",\"System.Management.Automation.ValidateNotNullOrEmptyAttribute\",\"System.Management.Automation.ArgumentTransformationAttribute\",\"System.Management.Automation.SessionCapabilities\",\"System.Management.Automation.CommandMetadata\",\"System.Management.Automation.WildcardOptions\",\"System.Management.Automation.WildcardPattern\",\"System.Management.Automation.WildcardPatternException\",\"System.Management.Automation.PSSerializer\",\"System.Management.Automation.PSPrimitiveDictionary\",\"System.Management.Automation.PSDriveInfo\",\"System.Management.Automation.ProviderInfo\",\"System.Management.Automation.PathInfo\",\"System.Management.Automation.PathInfoStack\",\"System.Management.Automation.FlowControlException\",\"System.Management.Automation.LoopFlowException\",\"System.Management.Automation.BreakException\",\"System.Management.Automation.ContinueException\",\"System.Management.Automation.ExitException\",\"System.Management.Automation.TerminateException\",\"System.Management.Automation.SplitOptions\",\"System.Management.Automation.ScriptBlock\",\"System.Management.Automation.SteppablePipeline\",\"System.Management.Automation.ScriptBlockToPowerShellNotSupportedException\",\"System.Management.Automation.PSParser\",\"System.Management.Automation.PSToken\",\"System.Management.Automation.PSTokenType\",\"System.Management.Automation.PSParseError\",\"System.Management.Automation.WhereOperatorSelectionMode\",\"System.Management.Automation.PSCredentialTypes\",\"System.Management.Automation.PSCredentialUIOptions\",\"System.Management.Automation.GetSymmetricEncryptionKey\",\"System.Management.Automation.PSCredential\",\"System.Management.Automation.PSSecurityException\",\"System.Management.Automation.SigningOption\",\"System.Management.Automation.CatalogValidationStatus\",\"System.Management.Automation.CatalogInformation\",\"System.Management.Automation.SecurityDescriptorCmdletProviderIntrinsics\",\"System.Management.Automation.CommandOrigin\",\"System.Management.Automation.AuthorizationManager\",\"System.Management.Automation.CredentialAttribute\",\"System.Management.Automation.SignatureStatus\",\"System.Management.Automation.SignatureType\",\"System.Management.Automation.Signature\",\"System.Management.Automation.CmsMessageRecipient\",\"System.Management.Automation.ResolutionPurpose\",\"System.Management.Automation.PSVariable\",\"System.Management.Automation.ScopedItemOptions\",\"System.Management.Automation.VariablePath\",\"System.Management.Automation.PSSnapInInfo\",\"System.Management.Automation.PSInstaller\",\"System.Management.Automation.PSSnapInInstaller\",\"System.Management.Automation.CustomPSSnapIn\",\"System.Management.Automation.PSSnapIn\",\"System.Management.Automation.CommandNotFoundException\",\"System.Management.Automation.ScriptRequiresException\",\"System.Management.Automation.ApplicationFailedException\",\"System.Management.Automation.ProviderCmdlet\",\"System.Management.Automation.CmdletInvocationException\",\"System.Management.Automation.CmdletProviderInvocationException\",\"System.Management.Automation.PipelineStoppedException\",\"System.Management.Automation.PipelineClosedException\",\"System.Management.Automation.ActionPreferenceStopException\",\"System.Management.Automation.ParentContainsErrorRecordException\",\"System.Management.Automation.RedirectedException\",\"System.Management.Automation.ScriptCallDepthException\",\"System.Management.Automation.PipelineDepthException\",\"System.Management.Automation.HaltCommandException\",\"System.Management.Automation.MetadataException\",\"System.Management.Automation.ValidationMetadataException\",\"System.Management.Automation.ArgumentTransformationMetadataException\",\"System.Management.Automation.ParsingMetadataException\",\"System.Management.Automation.PSArgumentException\",\"System.Management.Automation.PSArgumentNullException\",\"System.Management.Automation.PSArgumentOutOfRangeException\",\"System.Management.Automation.PSInvalidOperationException\",\"System.Management.Automation.PSNotImplementedException\",\"System.Management.Automation.PSNotSupportedException\",\"System.Management.Automation.PSObjectDisposedException\",\"System.Management.Automation.PSTraceSource\",\"System.Management.Automation.ParameterBindingException\",\"System.Management.Automation.ParseException\",\"System.Management.Automation.IncompleteParseException\",\"System.Management.Automation.RuntimeException\",\"System.Management.Automation.ProviderInvocationException\",\"System.Management.Automation.SessionStateCategory\",\"System.Management.Automation.SessionStateException\",\"System.Management.Automation.SessionStateOverflowException\",\"System.Management.Automation.SessionStateUnauthorizedAccessException\",\"System.Management.Automation.ProviderNotFoundException\",\"System.Management.Automation.ProviderNameAmbiguousException\",\"System.Management.Automation.DriveNotFoundException\",\"System.Management.Automation.ItemNotFoundException\",\"System.Management.Automation.PSTraceSourceOptions\",\"System.Management.Automation.VerbsCommon\",\"System.Management.Automation.VerbsData\",\"System.Management.Automation.VerbsLifecycle\",\"System.Management.Automation.VerbsDiagnostic\",\"System.Management.Automation.VerbsCommunications\",\"System.Management.Automation.VerbsSecurity\",\"System.Management.Automation.VerbsOther\",\"System.Management.Automation.IBackgroundDispatcher\",\"System.Management.Automation.BackgroundDispatcher\",\"System.Management.Automation.PSTransactionStatus\",\"System.Management.Automation.PSTransaction\",\"System.Management.Automation.PSTransactionContext\",\"System.Management.Automation.RollbackSeverity\",\"System.Management.Automation.ExtendedTypeDefinition\",\"System.Management.Automation.FormatViewDefinition\",\"System.Management.Automation.PSControl\",\"System.Management.Automation.PSControlGroupBy\",\"System.Management.Automation.DisplayEntry\",\"System.Management.Automation.EntrySelectedBy\",\"System.Management.Automation.Alignment\",\"System.Management.Automation.DisplayEntryValueType\",\"System.Management.Automation.CustomControl\",\"System.Management.Automation.CustomControlEntry\",\"System.Management.Automation.CustomItemBase\",\"System.Management.Automation.CustomItemExpression\",\"System.Management.Automation.CustomItemFrame\",\"System.Management.Automation.CustomItemNewline\",\"System.Management.Automation.CustomItemText\",\"System.Management.Automation.CustomEntryBuilder\",\"System.Management.Automation.CustomControlBuilder\",\"System.Management.Automation.ListControl\",\"System.Management.Automation.ListControlEntry\",\"System.Management.Automation.ListControlEntryItem\",\"System.Management.Automation.ListEntryBuilder\",\"System.Management.Automation.ListControlBuilder\",\"System.Management.Automation.TableControl\",\"System.Management.Automation.TableControlColumnHeader\",\"System.Management.Automation.TableControlColumn\",\"System.Management.Automation.TableControlRow\",\"System.Management.Automation.TableRowDefinitionBuilder\",\"System.Management.Automation.TableControlBuilder\",\"System.Management.Automation.WideControl\",\"System.Management.Automation.WideControlEntryItem\",\"System.Management.Automation.WideControlBuilder\",\"System.Management.Automation.CommandCompletion\",\"System.Management.Automation.CompletionCompleters\",\"System.Management.Automation.CompletionResultType\",\"System.Management.Automation.CompletionResult\",\"System.Management.Automation.ArgumentCompleterAttribute\",\"System.Management.Automation.IArgumentCompleter\",\"System.Management.Automation.RegisterArgumentCompleterCommand\",\"System.Management.Automation.PerformanceData.CounterSetInstanceBase\",\"System.Management.Automation.PerformanceData.PSCounterSetInstance\",\"System.Management.Automation.PerformanceData.CounterInfo\",\"System.Management.Automation.PerformanceData.CounterSetRegistrarBase\",\"System.Management.Automation.PerformanceData.PSCounterSetRegistrar\",\"System.Management.Automation.PerformanceData.PSPerfCountersMgr\",\"System.Management.Automation.Tracing.PowerShellTraceEvent\",\"System.Management.Automation.Tracing.PowerShellTraceChannel\",\"System.Management.Automation.Tracing.PowerShellTraceLevel\",\"System.Management.Automation.Tracing.PowerShellTraceOperationCode\",\"System.Management.Automation.Tracing.PowerShellTraceTask\",\"System.Management.Automation.Tracing.PowerShellTraceKeywords\",\"System.Management.Automation.Tracing.BaseChannelWriter\",\"System.Management.Automation.Tracing.NullWriter\",\"System.Management.Automation.Tracing.PowerShellChannelWriter\",\"System.Management.Automation.Tracing.PowerShellTraceSource\",\"System.Management.Automation.Tracing.PowerShellTraceSourceFactory\",\"System.Management.Automation.Tracing.EtwEvent\",\"System.Management.Automation.Tracing.CallbackNoParameter\",\"System.Management.Automation.Tracing.CallbackWithState\",\"System.Management.Automation.Tracing.CallbackWithStateAndArgs\",\"System.Management.Automation.Tracing.EtwEventArgs\",\"System.Management.Automation.Tracing.EtwActivity\",\"System.Management.Automation.Tracing.IEtwActivityReverter\",\"System.Management.Automation.Tracing.IEtwEventCorrelator\",\"System.Management.Automation.Tracing.EtwEventCorrelator\",\"System.Management.Automation.Tracing.Tracer\",\"System.Management.Automation.Security.SystemEnforcementMode\",\"System.Management.Automation.Security.SystemPolicy\",\"System.Management.Automation.Provider.ContainerCmdletProvider\",\"System.Management.Automation.Provider.DriveCmdletProvider\",\"System.Management.Automation.Provider.IContentCmdletProvider\",\"System.Management.Automation.Provider.IContentReader\",\"System.Management.Automation.Provider.IContentWriter\",\"System.Management.Automation.Provider.IDynamicPropertyCmdletProvider\",\"System.Management.Automation.Provider.ISecurityDescriptorCmdletProvider\",\"System.Management.Automation.Provider.IPropertyCmdletProvider\",\"System.Management.Automation.Provider.ItemCmdletProvider\",\"System.Management.Automation.Provider.NavigationCmdletProvider\",\"System.Management.Automation.Provider.ICmdletProviderSupportsHelp\",\"System.Management.Automation.Provider.CmdletProvider\",\"System.Management.Automation.Provider.CmdletProviderAttribute\",\"System.Management.Automation.Provider.ProviderCapabilities\",\"System.Management.Automation.Remoting.OriginInfo\",\"System.Management.Automation.Remoting.CmdletMethodInvoker`1[T]\",\"System.Management.Automation.Remoting.PSRemotingDataStructureException\",\"System.Management.Automation.Remoting.PSRemotingTransportException\",\"System.Management.Automation.Remoting.PSRemotingTransportRedirectException\",\"System.Management.Automation.Remoting.PSDirectException\",\"System.Management.Automation.Remoting.ProxyAccessType\",\"System.Management.Automation.Remoting.PSSessionOption\",\"System.Management.Automation.Remoting.PSSenderInfo\",\"System.Management.Automation.Remoting.PSPrincipal\",\"System.Management.Automation.Remoting.PSIdentity\",\"System.Management.Automation.Remoting.PSCertificateDetails\",\"System.Management.Automation.Remoting.PSSessionConfiguration\",\"System.Management.Automation.Remoting.SessionType\",\"System.Management.Automation.Remoting.PSSessionConfigurationData\",\"System.Management.Automation.Remoting.WSManPluginManagedEntryWrapper\",\"System.Management.Automation.Remoting.WSManPluginManagedEntryInstanceWrapper\",\"System.Management.Automation.Remoting.WSMan.WSManServerChannelEvents\",\"System.Management.Automation.Remoting.WSMan.ActiveSessionsChangedEventArgs\",\"System.Management.Automation.Remoting.Internal.PSStreamObjectType\",\"System.Management.Automation.Remoting.Internal.PSStreamObject\",\"System.Management.Automation.Host.ChoiceDescription\",\"System.Management.Automation.Host.FieldDescription\",\"System.Management.Automation.Host.PSHost\",\"System.Management.Automation.Host.IHostSupportsInteractiveSession\",\"System.Management.Automation.Host.Coordinates\",\"System.Management.Automation.Host.Size\",\"System.Management.Automation.Host.ReadKeyOptions\",\"System.Management.Automation.Host.ControlKeyStates\",\"System.Management.Automation.Host.KeyInfo\",\"System.Management.Automation.Host.Rectangle\",\"System.Management.Automation.Host.BufferCell\",\"System.Management.Automation.Host.BufferCellType\",\"System.Management.Automation.Host.PSHostRawUserInterface\",\"System.Management.Automation.Host.PSHostUserInterface\",\"System.Management.Automation.Host.IHostUISupportsMultipleChoiceSelection\",\"System.Management.Automation.Host.HostException\",\"System.Management.Automation.Host.PromptingException\",\"System.Management.Automation.Runspaces.TypeTableLoadException\",\"System.Management.Automation.Runspaces.TypeData\",\"System.Management.Automation.Runspaces.TypeMemberData\",\"System.Management.Automation.Runspaces.NotePropertyData\",\"System.Management.Automation.Runspaces.AliasPropertyData\",\"System.Management.Automation.Runspaces.ScriptPropertyData\",\"System.Management.Automation.Runspaces.CodePropertyData\",\"System.Management.Automation.Runspaces.ScriptMethodData\",\"System.Management.Automation.Runspaces.CodeMethodData\",\"System.Management.Automation.Runspaces.PropertySetData\",\"System.Management.Automation.Runspaces.MemberSetData\",\"System.Management.Automation.Runspaces.TypeTable\",\"System.Management.Automation.Runspaces.Command\",\"System.Management.Automation.Runspaces.PipelineResultTypes\",\"System.Management.Automation.Runspaces.CommandCollection\",\"System.Management.Automation.Runspaces.InvalidRunspaceStateException\",\"System.Management.Automation.Runspaces.RunspaceState\",\"System.Management.Automation.Runspaces.PSThreadOptions\",\"System.Management.Automation.Runspaces.RunspaceStateInfo\",\"System.Management.Automation.Runspaces.RunspaceStateEventArgs\",\"System.Management.Automation.Runspaces.RunspaceAvailability\",\"System.Management.Automation.Runspaces.RunspaceAvailabilityEventArgs\",\"System.Management.Automation.Runspaces.RunspaceCapability\",\"System.Management.Automation.Runspaces.Runspace\",\"System.Management.Automation.Runspaces.SessionStateProxy\",\"System.Management.Automation.Runspaces.RunspaceFactory\",\"System.Management.Automation.Runspaces.RunspaceOpenModuleLoadException\",\"System.Management.Automation.Runspaces.CommandParameter\",\"System.Management.Automation.Runspaces.CommandParameterCollection\",\"System.Management.Automation.Runspaces.InvalidPipelineStateException\",\"System.Management.Automation.Runspaces.PipelineState\",\"System.Management.Automation.Runspaces.PipelineStateInfo\",\"System.Management.Automation.Runspaces.PipelineStateEventArgs\",\"System.Management.Automation.Runspaces.Pipeline\",\"System.Management.Automation.Runspaces.InvalidRunspacePoolStateException\",\"System.Management.Automation.Runspaces.RunspacePoolState\",\"System.Management.Automation.Runspaces.RunspacePoolStateChangedEventArgs\",\"System.Management.Automation.Runspaces.RunspacePoolAvailability\",\"System.Management.Automation.Runspaces.RunspacePoolCapability\",\"System.Management.Automation.Runspaces.RunspacePool\",\"System.Management.Automation.Runspaces.PowerShellProcessInstance\",\"System.Management.Automation.Runspaces.TargetMachineType\",\"System.Management.Automation.Runspaces.PSSession\",\"System.Management.Automation.Runspaces.RemotingErrorRecord\",\"System.Management.Automation.Runspaces.RemotingProgressRecord\",\"System.Management.Automation.Runspaces.RemotingWarningRecord\",\"System.Management.Automation.Runspaces.RemotingDebugRecord\",\"System.Management.Automation.Runspaces.RemotingVerboseRecord\",\"System.Management.Automation.Runspaces.RemotingInformationRecord\",\"System.Management.Automation.Runspaces.AuthenticationMechanism\",\"System.Management.Automation.Runspaces.PSSessionType\",\"System.Management.Automation.Runspaces.PSSessionConfigurationAccessMode\",\"System.Management.Automation.Runspaces.OutputBufferingMode\",\"System.Management.Automation.Runspaces.RunspaceConnectionInfo\",\"System.Management.Automation.Runspaces.WSManConnectionInfo\",\"System.Management.Automation.Runspaces.NamedPipeConnectionInfo\",\"System.Management.Automation.Runspaces.VMConnectionInfo\",\"System.Management.Automation.Runspaces.ContainerConnectionInfo\",\"System.Management.Automation.Runspaces.RunspaceConfiguration\",\"System.Management.Automation.Runspaces.RunspaceConfigurationEntry\",\"System.Management.Automation.Runspaces.TypeConfigurationEntry\",\"System.Management.Automation.Runspaces.FormatConfigurationEntry\",\"System.Management.Automation.Runspaces.CmdletConfigurationEntry\",\"System.Management.Automation.Runspaces.ProviderConfigurationEntry\",\"System.Management.Automation.Runspaces.ScriptConfigurationEntry\",\"System.Management.Automation.Runspaces.AssemblyConfigurationEntry\",\"System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection`1[T]\",\"System.Management.Automation.Runspaces.RunspaceConfigurationTypeAttribute\",\"System.Management.Automation.Runspaces.RunspaceConfigurationAttributeException\",\"System.Management.Automation.Runspaces.RunspaceConfigurationTypeException\",\"System.Management.Automation.Runspaces.InitialSessionStateEntry\",\"System.Management.Automation.Runspaces.ConstrainedSessionStateEntry\",\"System.Management.Automation.Runspaces.SessionStateCommandEntry\",\"System.Management.Automation.Runspaces.SessionStateTypeEntry\",\"System.Management.Automation.Runspaces.SessionStateFormatEntry\",\"System.Management.Automation.Runspaces.SessionStateAssemblyEntry\",\"System.Management.Automation.Runspaces.SessionStateCmdletEntry\",\"System.Management.Automation.Runspaces.SessionStateProviderEntry\",\"System.Management.Automation.Runspaces.SessionStateScriptEntry\",\"System.Management.Automation.Runspaces.SessionStateAliasEntry\",\"System.Management.Automation.Runspaces.SessionStateApplicationEntry\",\"System.Management.Automation.Runspaces.SessionStateFunctionEntry\",\"System.Management.Automation.Runspaces.SessionStateWorkflowEntry\",\"System.Management.Automation.Runspaces.SessionStateVariableEntry\",\"System.Management.Automation.Runspaces.InitialSessionStateEntryCollection`1[T]\",\"System.Management.Automation.Runspaces.InitialSessionState\",\"System.Management.Automation.Runspaces.PSConsoleLoadException\",\"System.Management.Automation.Runspaces.PSSnapInException\",\"System.Management.Automation.Runspaces.PipelineReader`1[T]\",\"System.Management.Automation.Runspaces.PipelineWriter\",\"System.Management.Automation.Runspaces.FormatTableLoadException\",\"System.Management.Automation.Runspaces.FormatTable\",\"System.Management.Automation.Language.NullString\",\"System.Management.Automation.Language.CodeGeneration\",\"System.Management.Automation.Language.Ast\",\"System.Management.Automation.Language.ErrorStatementAst\",\"System.Management.Automation.Language.ErrorExpressionAst\",\"System.Management.Automation.Language.ScriptRequirements\",\"System.Management.Automation.Language.ScriptBlockAst\",\"System.Management.Automation.Language.ParamBlockAst\",\"System.Management.Automation.Language.NamedBlockAst\",\"System.Management.Automation.Language.NamedAttributeArgumentAst\",\"System.Management.Automation.Language.AttributeBaseAst\",\"System.Management.Automation.Language.AttributeAst\",\"System.Management.Automation.Language.TypeConstraintAst\",\"System.Management.Automation.Language.ParameterAst\",\"System.Management.Automation.Language.StatementBlockAst\",\"System.Management.Automation.Language.StatementAst\",\"System.Management.Automation.Language.TypeAttributes\",\"System.Management.Automation.Language.TypeDefinitionAst\",\"System.Management.Automation.Language.UsingStatementKind\",\"System.Management.Automation.Language.UsingStatementAst\",\"System.Management.Automation.Language.MemberAst\",\"System.Management.Automation.Language.PropertyAttributes\",\"System.Management.Automation.Language.PropertyMemberAst\",\"System.Management.Automation.Language.MethodAttributes\",\"System.Management.Automation.Language.FunctionMemberAst\",\"System.Management.Automation.Language.FunctionDefinitionAst\",\"System.Management.Automation.Language.IfStatementAst\",\"System.Management.Automation.Language.DataStatementAst\",\"System.Management.Automation.Language.LabeledStatementAst\",\"System.Management.Automation.Language.LoopStatementAst\",\"System.Management.Automation.Language.ForEachFlags\",\"System.Management.Automation.Language.ForEachStatementAst\",\"System.Management.Automation.Language.ForStatementAst\",\"System.Management.Automation.Language.DoWhileStatementAst\",\"System.Management.Automation.Language.DoUntilStatementAst\",\"System.Management.Automation.Language.WhileStatementAst\",\"System.Management.Automation.Language.SwitchFlags\",\"System.Management.Automation.Language.SwitchStatementAst\",\"System.Management.Automation.Language.CatchClauseAst\",\"System.Management.Automation.Language.TryStatementAst\",\"System.Management.Automation.Language.TrapStatementAst\",\"System.Management.Automation.Language.BreakStatementAst\",\"System.Management.Automation.Language.ContinueStatementAst\",\"System.Management.Automation.Language.ReturnStatementAst\",\"System.Management.Automation.Language.ExitStatementAst\",\"System.Management.Automation.Language.ThrowStatementAst\",\"System.Management.Automation.Language.PipelineBaseAst\",\"System.Management.Automation.Language.PipelineAst\",\"System.Management.Automation.Language.CommandElementAst\",\"System.Management.Automation.Language.CommandParameterAst\",\"System.Management.Automation.Language.CommandBaseAst\",\"System.Management.Automation.Language.CommandAst\",\"System.Management.Automation.Language.CommandExpressionAst\",\"System.Management.Automation.Language.RedirectionAst\",\"System.Management.Automation.Language.RedirectionStream\",\"System.Management.Automation.Language.MergingRedirectionAst\",\"System.Management.Automation.Language.FileRedirectionAst\",\"System.Management.Automation.Language.AssignmentStatementAst\",\"System.Management.Automation.Language.ConfigurationType\",\"System.Management.Automation.Language.ConfigurationDefinitionAst\",\"System.Management.Automation.Language.DynamicKeywordStatementAst\",\"System.Management.Automation.Language.ExpressionAst\",\"System.Management.Automation.Language.BinaryExpressionAst\",\"System.Management.Automation.Language.UnaryExpressionAst\",\"System.Management.Automation.Language.BlockStatementAst\",\"System.Management.Automation.Language.AttributedExpressionAst\",\"System.Management.Automation.Language.ConvertExpressionAst\",\"System.Management.Automation.Language.MemberExpressionAst\",\"System.Management.Automation.Language.InvokeMemberExpressionAst\",\"System.Management.Automation.Language.BaseCtorInvokeMemberExpressionAst\",\"System.Management.Automation.Language.ITypeName\",\"System.Management.Automation.Language.TypeName\",\"System.Management.Automation.Language.GenericTypeName\",\"System.Management.Automation.Language.ArrayTypeName\",\"System.Management.Automation.Language.ReflectionTypeName\",\"System.Management.Automation.Language.TypeExpressionAst\",\"System.Management.Automation.Language.VariableExpressionAst\",\"System.Management.Automation.Language.ConstantExpressionAst\",\"System.Management.Automation.Language.StringConstantType\",\"System.Management.Automation.Language.StringConstantExpressionAst\",\"System.Management.Automation.Language.ExpandableStringExpressionAst\",\"System.Management.Automation.Language.ScriptBlockExpressionAst\",\"System.Management.Automation.Language.ArrayLiteralAst\",\"System.Management.Automation.Language.HashtableAst\",\"System.Management.Automation.Language.ArrayExpressionAst\",\"System.Management.Automation.Language.ParenExpressionAst\",\"System.Management.Automation.Language.SubExpressionAst\",\"System.Management.Automation.Language.UsingExpressionAst\",\"System.Management.Automation.Language.IndexExpressionAst\",\"System.Management.Automation.Language.CommentHelpInfo\",\"System.Management.Automation.Language.ICustomAstVisitor\",\"System.Management.Automation.Language.ICustomAstVisitor2\",\"System.Management.Automation.Language.DefaultCustomAstVisitor\",\"System.Management.Automation.Language.DefaultCustomAstVisitor2\",\"System.Management.Automation.Language.Parser\",\"System.Management.Automation.Language.ParseError\",\"System.Management.Automation.Language.IScriptPosition\",\"System.Management.Automation.Language.IScriptExtent\",\"System.Management.Automation.Language.ScriptPosition\",\"System.Management.Automation.Language.ScriptExtent\",\"System.Management.Automation.Language.AstVisitAction\",\"System.Management.Automation.Language.AstVisitor\",\"System.Management.Automation.Language.AstVisitor2\",\"System.Management.Automation.Language.IAstPostVisitHandler\",\"System.Management.Automation.Language.TokenKind\",\"System.Management.Automation.Language.TokenFlags\",\"System.Management.Automation.Language.TokenTraits\",\"System.Management.Automation.Language.Token\",\"System.Management.Automation.Language.NumberToken\",\"System.Management.Automation.Language.ParameterToken\",\"System.Management.Automation.Language.VariableToken\",\"System.Management.Automation.Language.StringToken\",\"System.Management.Automation.Language.StringLiteralToken\",\"System.Management.Automation.Language.StringExpandableToken\",\"System.Management.Automation.Language.LabelToken\",\"System.Management.Automation.Language.RedirectionToken\",\"System.Management.Automation.Language.InputRedirectionToken\",\"System.Management.Automation.Language.MergingRedirectionToken\",\"System.Management.Automation.Language.FileRedirectionToken\",\"System.Management.Automation.Language.DynamicKeywordNameMode\",\"System.Management.Automation.Language.DynamicKeywordBodyMode\",\"System.Management.Automation.Language.DynamicKeyword\",\"System.Management.Automation.Language.DynamicKeywordProperty\",\"System.Management.Automation.Language.DynamicKeywordParameter\",\"System.Management.Automation.Language.StaticParameterBinder\",\"System.Management.Automation.Language.StaticBindingResult\",\"System.Management.Automation.Language.ParameterBindingResult\",\"System.Management.Automation.Language.StaticBindingError\",\"System.Management.Automation.Internal.InternalCommand\",\"System.Management.Automation.Internal.CommonParameters\",\"System.Management.Automation.Internal.ShouldProcessParameters\",\"System.Management.Automation.Internal.TransactionParameters\",\"System.Management.Automation.Internal.DebuggerUtils\",\"System.Management.Automation.Internal.PSMonitorRunspaceType\",\"System.Management.Automation.Internal.PSMonitorRunspaceInfo\",\"System.Management.Automation.Internal.PSStandaloneMonitorRunspaceInfo\",\"System.Management.Automation.Internal.PSEmbeddedMonitorRunspaceInfo\",\"System.Management.Automation.Internal.CmdletMetadataAttribute\",\"System.Management.Automation.Internal.ParsingBaseAttribute\",\"System.Management.Automation.Internal.InternalTestHooks\",\"System.Management.Automation.Internal.IAstToWorkflowConverter\",\"System.Management.Automation.Internal.SessionStateKeeper\",\"System.Management.Automation.Internal.ScriptBlockMemberMethodWrapper\",\"System.Management.Automation.Internal.ClassOps\",\"System.Management.Automation.Internal.AutomationNull\",\"System.Management.Automation.Internal.AlternateStreamData\",\"System.Management.Automation.Internal.AlternateDataStreamUtilities\",\"System.Management.Automation.Internal.SecuritySupport\"]},\"N\":\"ExportedTypes\"},{\"RefId\":9,\"LST\":{\"S\":[\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"VSTS.Microsoft.Management.PowerShell.NamedPipeTransportTests,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.CompilationRelaxationsAttribute((Int32)8)]\",\"[System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows = True)]\",\"[System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute+DebuggingModes)2)]\",\"[System.Reflection.AssemblyConfigurationAttribute(\\\"\\\")]\",\"[System.Reflection.AssemblyInformationalVersionAttribute(\\\"10.0.10011.16384\\\")]\",\"[System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)1, (System.Runtime.ConstrainedExecution.Cer)1)]\",\"[System.Reflection.AssemblyTitleAttribute(\\\"System.Management.Automation\\\")]\",\"[System.Reflection.AssemblyDescriptionAttribute(\\\"Microsoft Windows PowerShell Engine Core Assembly\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.Test.Management.Automation.GPowershell.Analyzers,PublicKey=00240000048000009400000006020000002400005253413100040000010001003f8c902c8fe7ac83af7401b14c1bd103973b26dfafb2b77eda478a2539b979b56ce47f36336741b4ec52bbc51fecd51ba23810cec47070f3e29a2261a2d1d08e4b2b4b457beaa91460055f78cc89f21cd028377af0cc5e6c04699b6856a1e49d5fad3ef16d3c3d6010f40df0a7d6cc2ee11744b5cfb42e0f19a52b8a29dc31b0\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"System.Management.Automation.Help,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.Commands.Utility,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.Commands.Management,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.Security,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"System.Management.Automation.Remoting,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Export-Command,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.ConsoleHost,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.PowerShellLanguageService,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.GraphicalHost,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.GPowerShell,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.ISECommon,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.PowerShell.Editor,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"powershell_ise,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.Versioning.TargetFrameworkAttribute(\\\".NETFramework,Version=v4.5\\\")]\",\"[System.Resources.NeutralResourcesLanguageAttribute(\\\"en\\\")]\",\"[System.Runtime.InteropServices.ComVisibleAttribute((Boolean)False)]\",\"[System.Reflection.AssemblyProductAttribute(\\\"Microsoft (R) Windows (R) Operating System\\\")]\",\"[System.Reflection.AssemblyCopyrightAttribute(\\\"Copyright (c) Microsoft Corporation. All rights reserved.\\\")]\",\"[System.Reflection.AssemblyCompanyAttribute(\\\"Microsoft Corporation\\\")]\",\"[System.Reflection.AssemblyFileVersionAttribute(\\\"10.0.10011.16384\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"Microsoft.Management.PowerShellTest,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"VSTS.Microsoft.Management.PowerShell.HyperVSocketTransportTests,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.ExtensionAttribute()]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"VSTS.Microsoft.Management.PowerShellTestDebugging,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Runtime.CompilerServices.InternalsVisibleToAttribute(\\\"TAEF.WSManPlugin.UnitTests,PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9\\\")]\",\"[System.Reflection.AssemblyKeyFileAttribute(\\\"d:\\\\rs1.public.fre\\\\internal\\\\strongnamekeys\\\\fake\\\\windows.snk\\\")]\",\"[System.Reflection.AssemblyDelaySignAttribute((Boolean)True)]\"]},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"},{\"TN\":{\"T\":[\"System.Reflection.RuntimeModule[]\",\"System.Array\",\"System.Object\"],\"RefId\":9},\"RefId\":10,\"LST\":{\"Ref\":{\"RefId\":2}},\"N\":\"Modules\"}],\"I64\":{\"N\":\"HostContext\",\"content\":0}},\"N\":\"Assembly\"},{\"TN\":{\"T\":[\"System.RuntimeTypeHandle\",\"System.ValueType\",\"System.Object\"],\"RefId\":10},\"RefId\":11,\"ToString\":\"System.RuntimeTypeHandle\",\"Props\":{\"S\":{\"N\":\"Value\",\"content\":140732282085440}},\"N\":\"TypeHandle\"},{\"RefId\":12,\"ToString\":\"System.Management.Automation.CmdletCommonMetadataAttribute\",\"Props\":{\"Nil\":[{\"N\":\"DeclaringType\"},{\"N\":\"ReflectedType\"},{\"N\":\"TypeInitializer\"}],\"Ref\":[{\"RefId\":2,\"N\":\"Module\"},{\"RefId\":4,\"N\":\"Assembly\"},{\"RefId\":12,\"N\":\"UnderlyingSystemType\"},{\"RefId\":13,\"N\":\"GenericTypeArguments\"}],\"B\":[{\"N\":\"IsEnum\",\"content\":false},{\"N\":\"IsSecurityCritical\",\"content\":true},{\"N\":\"IsSecuritySafeCritical\",\"content\":false},{\"N\":\"IsSecurityTransparent\",\"content\":false},{\"N\":\"IsGenericTypeDefinition\",\"content\":false},{\"N\":\"IsGenericParameter\",\"content\":false},{\"N\":\"IsGenericType\",\"content\":false},{\"N\":\"IsConstructedGenericType\",\"content\":false},{\"N\":\"ContainsGenericParameters\",\"content\":false},{\"N\":\"IsNested\",\"content\":false},{\"N\":\"IsVisible\",\"content\":true},{\"N\":\"IsNotPublic\",\"content\":false},{\"N\":\"IsPublic\",\"content\":true},{\"N\":\"IsNestedPublic\",\"content\":false},{\"N\":\"IsNestedPrivate\",\"content\":false},{\"N\":\"IsNestedFamily\",\"content\":false},{\"N\":\"IsNestedAssembly\",\"content\":false},{\"N\":\"IsNestedFamANDAssem\",\"content\":false},{\"N\":\"IsNestedFamORAssem\",\"content\":false},{\"N\":\"IsAutoLayout\",\"content\":true},{\"N\":\"IsLayoutSequential\",\"content\":false},{\"N\":\"IsExplicitLayout\",\"content\":false},{\"N\":\"IsClass\",\"content\":true},{\"N\":\"IsInterface\",\"content\":false},{\"N\":\"IsValueType\",\"content\":false},{\"N\":\"IsAbstract\",\"content\":true},{\"N\":\"IsSealed\",\"content\":false},{\"N\":\"IsSpecialName\",\"content\":false},{\"N\":\"IsImport\",\"content\":false},{\"N\":\"IsSerializable\",\"content\":false},{\"N\":\"IsAnsiClass\",\"content\":true},{\"N\":\"IsUnicodeClass\",\"content\":false},{\"N\":\"IsAutoClass\",\"content\":false},{\"N\":\"IsArray\",\"content\":false},{\"N\":\"IsByRef\",\"content\":false},{\"N\":\"IsPointer\",\"content\":false},{\"N\":\"IsPrimitive\",\"content\":false},{\"N\":\"IsCOMObject\",\"content\":false},{\"N\":\"HasElementType\",\"content\":false},{\"N\":\"IsContextful\",\"content\":false},{\"N\":\"IsMarshalByRef\",\"content\":false}],\"S\":[{\"N\":\"TypeHandle\",\"content\":\"System.RuntimeTypeHandle\"},{\"N\":\"BaseType\",\"content\":\"System.Management.Automation.Internal.CmdletMetadataAttribute\"},{\"N\":\"FullName\",\"content\":\"System.Management.Automation.CmdletCommonMetadataAttribute\"},{\"N\":\"AssemblyQualifiedName\",\"content\":\"System.Management.Automation.CmdletCommonMetadataAttribute, System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"},{\"N\":\"Namespace\",\"content\":\"System.Management.Automation\"},{\"N\":\"StructLayoutAttribute\",\"content\":\"System.Runtime.InteropServices.StructLayoutAttribute\"},{\"N\":\"Name\",\"content\":\"CmdletCommonMetadataAttribute\"},{\"N\":\"MemberType\",\"content\":\"TypeInfo\"},{\"N\":\"Attributes\",\"content\":\"AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit\"}],\"Obj\":[{\"RefId\":13,\"LST\":{},\"TNRef\":{\"RefId\":8},\"N\":\"GenericTypeParameters\"},{\"TN\":{\"T\":[\"System.Reflection.ConstructorInfo[]\",\"System.Array\",\"System.Object\"],\"RefId\":11},\"RefId\":14,\"LST\":{\"S\":\"Void .ctor()\"},\"N\":\"DeclaredConstructors\"},{\"TN\":{\"T\":[\"System.Reflection.EventInfo[]\",\"System.Array\",\"System.Object\"],\"RefId\":12},\"RefId\":15,\"LST\":{},\"N\":\"DeclaredEvents\"},{\"TN\":{\"T\":[\"System.Reflection.FieldInfo[]\",\"System.Array\",\"System.Object\"],\"RefId\":13},\"RefId\":16,\"LST\":{\"S\":[\"System.String defaultParameterSetName\",\"Boolean supportsShouldProcess\",\"Boolean supportsPaging\",\"Boolean supportsTransactions\",\"System.Management.Automation.ConfirmImpact confirmImpact\",\"System.String helpUri\",\"System.Management.Automation.RemotingCapability remotingCapability\"]},\"N\":\"DeclaredFields\"},{\"TN\":{\"T\":[\"System.Reflection.MemberInfo[]\",\"System.Array\",\"System.Object\"],\"RefId\":14},\"RefId\":17,\"LST\":{\"S\":[\"System.String get_DefaultParameterSetName()\",\"Void set_DefaultParameterSetName(System.String)\",\"Boolean get_SupportsShouldProcess()\",\"Void set_SupportsShouldProcess(Boolean)\",\"Boolean get_SupportsPaging()\",\"Void set_SupportsPaging(Boolean)\",\"Boolean get_SupportsTransactions()\",\"Void set_SupportsTransactions(Boolean)\",\"System.Management.Automation.ConfirmImpact get_ConfirmImpact()\",\"Void set_ConfirmImpact(System.Management.Automation.ConfirmImpact)\",\"System.String get_HelpUri()\",\"Void set_HelpUri(System.String)\",\"System.Management.Automation.RemotingCapability get_RemotingCapability()\",\"Void set_RemotingCapability(System.Management.Automation.RemotingCapability)\",\"Void .ctor()\",\"System.String DefaultParameterSetName\",\"Boolean SupportsShouldProcess\",\"Boolean SupportsPaging\",\"Boolean SupportsTransactions\",\"System.Management.Automation.ConfirmImpact ConfirmImpact\",\"System.String HelpUri\",\"System.Management.Automation.RemotingCapability RemotingCapability\",\"System.String defaultParameterSetName\",\"Boolean supportsShouldProcess\",\"Boolean supportsPaging\",\"Boolean supportsTransactions\",\"System.Management.Automation.ConfirmImpact confirmImpact\",\"System.String helpUri\",\"System.Management.Automation.RemotingCapability remotingCapability\"]},\"N\":\"DeclaredMembers\"},{\"TN\":{\"T\":[\"System.Reflection.MethodInfo[]\",\"System.Array\",\"System.Object\"],\"RefId\":15},\"RefId\":18,\"LST\":{\"S\":[\"System.String get_DefaultParameterSetName()\",\"Void set_DefaultParameterSetName(System.String)\",\"Boolean get_SupportsShouldProcess()\",\"Void set_SupportsShouldProcess(Boolean)\",\"Boolean get_SupportsPaging()\",\"Void set_SupportsPaging(Boolean)\",\"Boolean get_SupportsTransactions()\",\"Void set_SupportsTransactions(Boolean)\",\"System.Management.Automation.ConfirmImpact get_ConfirmImpact()\",\"Void set_ConfirmImpact(System.Management.Automation.ConfirmImpact)\",\"System.String get_HelpUri()\",\"Void set_HelpUri(System.String)\",\"System.Management.Automation.RemotingCapability get_RemotingCapability()\",\"Void set_RemotingCapability(System.Management.Automation.RemotingCapability)\"]},\"N\":\"DeclaredMethods\"},{\"TN\":{\"T\":[\"System.Reflection.TypeInfo+<get_DeclaredNestedTypes>d__23\",\"System.Object\"],\"RefId\":16},\"RefId\":19,\"IE\":{},\"N\":\"DeclaredNestedTypes\"},{\"TN\":{\"T\":[\"System.Reflection.PropertyInfo[]\",\"System.Array\",\"System.Object\"],\"RefId\":17},\"RefId\":20,\"LST\":{\"S\":[\"System.String DefaultParameterSetName\",\"Boolean SupportsShouldProcess\",\"Boolean SupportsPaging\",\"Boolean SupportsTransactions\",\"System.Management.Automation.ConfirmImpact ConfirmImpact\",\"System.String HelpUri\",\"System.Management.Automation.RemotingCapability RemotingCapability\"]},\"N\":\"DeclaredProperties\"},{\"RefId\":21,\"LST\":{\"S\":\"System.Runtime.InteropServices._Attribute\"},\"TNRef\":{\"RefId\":8},\"N\":\"ImplementedInterfaces\"},{\"RefId\":22,\"LST\":{\"S\":\"[System.AttributeUsageAttribute((System.AttributeTargets)4)]\"},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"}],\"G\":{\"N\":\"GUID\",\"content\":\"b5e3672d-a386-3b32-a2a4-92540482b1fe\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":33555373}},\"TNRef\":{\"RefId\":1},\"N\":\"BaseType\"},{\"TN\":{\"T\":[\"System.Runtime.InteropServices.StructLayoutAttribute\",\"System.Attribute\",\"System.Object\"],\"RefId\":18},\"RefId\":23,\"ToString\":\"System.Runtime.InteropServices.StructLayoutAttribute\",\"Props\":{\"S\":[{\"N\":\"Value\",\"content\":\"Auto\"},{\"N\":\"TypeId\",\"content\":\"System.Runtime.InteropServices.StructLayoutAttribute\"},{\"N\":\"CharSet\",\"content\":\"Ansi\"}],\"I32\":[{\"N\":\"Pack\",\"content\":8},{\"N\":\"Size\",\"content\":0}]},\"N\":\"StructLayoutAttribute\"},{\"I32\":32,\"TN\":{\"T\":[\"System.Reflection.MemberTypes\",\"System.Enum\",\"System.ValueType\",\"System.Object\"],\"RefId\":19},\"RefId\":24,\"ToString\":\"TypeInfo\",\"N\":\"MemberType\"},{\"RefId\":25,\"LST\":{\"Obj\":{\"TN\":{\"T\":[\"System.Reflection.RuntimeConstructorInfo\",\"System.Reflection.ConstructorInfo\",\"System.Reflection.MethodBase\",\"System.Reflection.MemberInfo\",\"System.Object\"],\"RefId\":20},\"RefId\":26,\"ToString\":\"Void .ctor()\",\"Props\":{\"Ref\":[{\"RefId\":1,\"N\":\"DeclaringType\"},{\"RefId\":1,\"N\":\"ReflectedType\"},{\"RefId\":2,\"N\":\"Module\"}],\"B\":[{\"N\":\"IsSecurityCritical\",\"content\":true},{\"N\":\"IsSecuritySafeCritical\",\"content\":false},{\"N\":\"IsSecurityTransparent\",\"content\":false},{\"N\":\"ContainsGenericParameters\",\"content\":false},{\"N\":\"IsGenericMethodDefinition\",\"content\":false},{\"N\":\"IsGenericMethod\",\"content\":false},{\"N\":\"IsPublic\",\"content\":true},{\"N\":\"IsPrivate\",\"content\":false},{\"N\":\"IsFamily\",\"content\":false},{\"N\":\"IsAssembly\",\"content\":false},{\"N\":\"IsFamilyAndAssembly\",\"content\":false},{\"N\":\"IsFamilyOrAssembly\",\"content\":false},{\"N\":\"IsStatic\",\"content\":false},{\"N\":\"IsFinal\",\"content\":false},{\"N\":\"IsVirtual\",\"content\":false},{\"N\":\"IsHideBySig\",\"content\":true},{\"N\":\"IsAbstract\",\"content\":false},{\"N\":\"IsSpecialName\",\"content\":true},{\"N\":\"IsConstructor\",\"content\":true}],\"S\":[{\"N\":\"Name\",\"content\":\".ctor\"},{\"N\":\"MemberType\",\"content\":\"Constructor\"},{\"N\":\"MethodHandle\",\"content\":\"System.RuntimeMethodHandle\"},{\"N\":\"Attributes\",\"content\":\"PrivateScope, Public, HideBySig, SpecialName, RTSpecialName\"},{\"N\":\"CallingConvention\",\"content\":\"Standard, HasThis\"},{\"N\":\"MethodImplementationFlags\",\"content\":\"IL\"}],\"Obj\":{\"RefId\":27,\"LST\":{},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":100676853}}}},\"TNRef\":{\"RefId\":11},\"N\":\"DeclaredConstructors\"},{\"RefId\":28,\"LST\":{\"Obj\":{\"TN\":{\"T\":[\"System.Reflection.RtFieldInfo\",\"System.Reflection.RuntimeFieldInfo\",\"System.Reflection.FieldInfo\",\"System.Reflection.MemberInfo\",\"System.Object\"],\"RefId\":21},\"RefId\":29,\"ToString\":\"Boolean _positionalBinding\",\"Props\":{\"Ref\":[{\"RefId\":1,\"N\":\"ReflectedType\"},{\"RefId\":1,\"N\":\"DeclaringType\"},{\"RefId\":2,\"N\":\"Module\"}],\"B\":[{\"N\":\"IsPublic\",\"content\":false},{\"N\":\"IsPrivate\",\"content\":true},{\"N\":\"IsFamily\",\"content\":false},{\"N\":\"IsAssembly\",\"content\":false},{\"N\":\"IsFamilyAndAssembly\",\"content\":false},{\"N\":\"IsFamilyOrAssembly\",\"content\":false},{\"N\":\"IsStatic\",\"content\":false},{\"N\":\"IsInitOnly\",\"content\":false},{\"N\":\"IsLiteral\",\"content\":false},{\"N\":\"IsNotSerialized\",\"content\":false},{\"N\":\"IsSpecialName\",\"content\":false},{\"N\":\"IsPinvokeImpl\",\"content\":false},{\"N\":\"IsSecurityCritical\",\"content\":true},{\"N\":\"IsSecuritySafeCritical\",\"content\":false},{\"N\":\"IsSecurityTransparent\",\"content\":false}],\"S\":[{\"N\":\"Name\",\"content\":\"_positionalBinding\"},{\"N\":\"FieldHandle\",\"content\":\"System.RuntimeFieldHandle\"},{\"N\":\"Attributes\",\"content\":\"Private\"},{\"N\":\"FieldType\",\"content\":\"System.Boolean\"},{\"N\":\"MemberType\",\"content\":\"Field\"}],\"Obj\":{\"RefId\":30,\"LST\":{},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":67113567}}}},\"TNRef\":{\"RefId\":13},\"N\":\"DeclaredFields\"},{\"RefId\":31,\"LST\":{\"Ref\":[{\"RefId\":26},{\"RefId\":29}],\"Obj\":[{\"TN\":{\"T\":[\"System.Reflection.RuntimeMethodInfo\",\"System.Reflection.MethodInfo\",\"System.Reflection.MethodBase\",\"System.Reflection.MemberInfo\",\"System.Object\"],\"RefId\":22},\"RefId\":32,\"ToString\":\"Boolean get_PositionalBinding()\",\"Props\":{\"Ref\":[{\"RefId\":1,\"N\":\"DeclaringType\"},{\"RefId\":1,\"N\":\"ReflectedType\"},{\"RefId\":2,\"N\":\"Module\"}],\"B\":[{\"N\":\"IsSecurityCritical\",\"content\":true},{\"N\":\"IsSecuritySafeCritical\",\"content\":false},{\"N\":\"IsSecurityTransparent\",\"content\":false},{\"N\":\"IsGenericMethod\",\"content\":false},{\"N\":\"IsGenericMethodDefinition\",\"content\":false},{\"N\":\"ContainsGenericParameters\",\"content\":false},{\"N\":\"IsPublic\",\"content\":true},{\"N\":\"IsPrivate\",\"content\":false},{\"N\":\"IsFamily\",\"content\":false},{\"N\":\"IsAssembly\",\"content\":false},{\"N\":\"IsFamilyAndAssembly\",\"content\":false},{\"N\":\"IsFamilyOrAssembly\",\"content\":false},{\"N\":\"IsStatic\",\"content\":false},{\"N\":\"IsFinal\",\"content\":false},{\"N\":\"IsVirtual\",\"content\":false},{\"N\":\"IsHideBySig\",\"content\":true},{\"N\":\"IsAbstract\",\"content\":false},{\"N\":\"IsSpecialName\",\"content\":true},{\"N\":\"IsConstructor\",\"content\":false}],\"S\":[{\"N\":\"Name\",\"content\":\"get_PositionalBinding\"},{\"N\":\"MemberType\",\"content\":\"Method\"},{\"N\":\"MethodHandle\",\"content\":\"System.RuntimeMethodHandle\"},{\"N\":\"Attributes\",\"content\":\"PrivateScope, Public, HideBySig, SpecialName\"},{\"N\":\"CallingConvention\",\"content\":\"Standard, HasThis\"},{\"N\":\"ReturnType\",\"content\":\"System.Boolean\"},{\"N\":\"ReturnTypeCustomAttributes\",\"content\":\"Boolean\"},{\"N\":\"ReturnParameter\",\"content\":\"Boolean\"},{\"N\":\"MethodImplementationFlags\",\"content\":\"IL\"}],\"Obj\":{\"RefId\":33,\"LST\":{},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":100676851}}},{\"RefId\":34,\"ToString\":\"Void set_PositionalBinding(Boolean)\",\"Props\":{\"Ref\":[{\"RefId\":1,\"N\":\"DeclaringType\"},{\"RefId\":1,\"N\":\"ReflectedType\"},{\"RefId\":2,\"N\":\"Module\"}],\"B\":[{\"N\":\"IsSecurityCritical\",\"content\":true},{\"N\":\"IsSecuritySafeCritical\",\"content\":false},{\"N\":\"IsSecurityTransparent\",\"content\":false},{\"N\":\"IsGenericMethod\",\"content\":false},{\"N\":\"IsGenericMethodDefinition\",\"content\":false},{\"N\":\"ContainsGenericParameters\",\"content\":false},{\"N\":\"IsPublic\",\"content\":true},{\"N\":\"IsPrivate\",\"content\":false},{\"N\":\"IsFamily\",\"content\":false},{\"N\":\"IsAssembly\",\"content\":false},{\"N\":\"IsFamilyAndAssembly\",\"content\":false},{\"N\":\"IsFamilyOrAssembly\",\"content\":false},{\"N\":\"IsStatic\",\"content\":false},{\"N\":\"IsFinal\",\"content\":false},{\"N\":\"IsVirtual\",\"content\":false},{\"N\":\"IsHideBySig\",\"content\":true},{\"N\":\"IsAbstract\",\"content\":false},{\"N\":\"IsSpecialName\",\"content\":true},{\"N\":\"IsConstructor\",\"content\":false}],\"S\":[{\"N\":\"Name\",\"content\":\"set_PositionalBinding\"},{\"N\":\"MemberType\",\"content\":\"Method\"},{\"N\":\"MethodHandle\",\"content\":\"System.RuntimeMethodHandle\"},{\"N\":\"Attributes\",\"content\":\"PrivateScope, Public, HideBySig, SpecialName\"},{\"N\":\"CallingConvention\",\"content\":\"Standard, HasThis\"},{\"N\":\"ReturnType\",\"content\":\"System.Void\"},{\"N\":\"ReturnTypeCustomAttributes\",\"content\":\"Void\"},{\"N\":\"ReturnParameter\",\"content\":\"Void\"},{\"N\":\"MethodImplementationFlags\",\"content\":\"IL\"}],\"Obj\":{\"RefId\":35,\"LST\":{},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":100676852}},\"TNRef\":{\"RefId\":22}},{\"TN\":{\"T\":[\"System.Reflection.RuntimePropertyInfo\",\"System.Reflection.PropertyInfo\",\"System.Reflection.MemberInfo\",\"System.Object\"],\"RefId\":23},\"RefId\":36,\"ToString\":\"Boolean PositionalBinding\",\"Props\":{\"Ref\":[{\"RefId\":1,\"N\":\"DeclaringType\"},{\"RefId\":1,\"N\":\"ReflectedType\"},{\"RefId\":2,\"N\":\"Module\"},{\"RefId\":32,\"N\":\"GetMethod\"},{\"RefId\":34,\"N\":\"SetMethod\"}],\"B\":[{\"N\":\"CanRead\",\"content\":true},{\"N\":\"CanWrite\",\"content\":true},{\"N\":\"IsSpecialName\",\"content\":false}],\"S\":[{\"N\":\"MemberType\",\"content\":\"Property\"},{\"N\":\"Name\",\"content\":\"PositionalBinding\"},{\"N\":\"PropertyType\",\"content\":\"System.Boolean\"},{\"N\":\"Attributes\",\"content\":\"None\"}],\"Obj\":{\"RefId\":37,\"LST\":{},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":385881192}}}]},\"TNRef\":{\"RefId\":14},\"N\":\"DeclaredMembers\"},{\"RefId\":38,\"LST\":{\"Ref\":[{\"RefId\":32},{\"RefId\":34}]},\"TNRef\":{\"RefId\":15},\"N\":\"DeclaredMethods\"},{\"RefId\":39,\"IE\":{},\"Props\":{\"Nil\":{\"N\":\"Current\"},\"Ref\":{\"RefId\":1,\"N\":\"<>4__this\"}},\"TNRef\":{\"RefId\":16},\"N\":\"DeclaredNestedTypes\"},{\"RefId\":40,\"LST\":{\"Ref\":{\"RefId\":36}},\"TNRef\":{\"RefId\":17},\"N\":\"DeclaredProperties\"},{\"RefId\":41,\"LST\":{\"Obj\":{\"RefId\":42,\"ToString\":\"System.Runtime.InteropServices._Attribute\",\"Props\":{\"Nil\":[{\"N\":\"BaseType\"},{\"N\":\"StructLayoutAttribute\"},{\"N\":\"DeclaringType\"},{\"N\":\"ReflectedType\"},{\"N\":\"TypeInitializer\"}],\"Ref\":[{\"RefId\":42,\"N\":\"UnderlyingSystemType\"},{\"RefId\":13,\"N\":\"GenericTypeParameters\"},{\"RefId\":15,\"N\":\"DeclaredEvents\"},{\"RefId\":13,\"N\":\"GenericTypeArguments\"}],\"B\":[{\"N\":\"IsEnum\",\"content\":false},{\"N\":\"IsSecurityCritical\",\"content\":false},{\"N\":\"IsSecuritySafeCritical\",\"content\":false},{\"N\":\"IsSecurityTransparent\",\"content\":true},{\"N\":\"IsGenericTypeDefinition\",\"content\":false},{\"N\":\"IsGenericParameter\",\"content\":false},{\"N\":\"IsGenericType\",\"content\":false},{\"N\":\"IsConstructedGenericType\",\"content\":false},{\"N\":\"ContainsGenericParameters\",\"content\":false},{\"N\":\"IsNested\",\"content\":false},{\"N\":\"IsVisible\",\"content\":true},{\"N\":\"IsNotPublic\",\"content\":false},{\"N\":\"IsPublic\",\"content\":true},{\"N\":\"IsNestedPublic\",\"content\":false},{\"N\":\"IsNestedPrivate\",\"content\":false},{\"N\":\"IsNestedFamily\",\"content\":false},{\"N\":\"IsNestedAssembly\",\"content\":false},{\"N\":\"IsNestedFamANDAssem\",\"content\":false},{\"N\":\"IsNestedFamORAssem\",\"content\":false},{\"N\":\"IsAutoLayout\",\"content\":true},{\"N\":\"IsLayoutSequential\",\"content\":false},{\"N\":\"IsExplicitLayout\",\"content\":false},{\"N\":\"IsClass\",\"content\":false},{\"N\":\"IsInterface\",\"content\":true},{\"N\":\"IsValueType\",\"content\":false},{\"N\":\"IsAbstract\",\"content\":true},{\"N\":\"IsSealed\",\"content\":false},{\"N\":\"IsSpecialName\",\"content\":false},{\"N\":\"IsImport\",\"content\":false},{\"N\":\"IsSerializable\",\"content\":false},{\"N\":\"IsAnsiClass\",\"content\":true},{\"N\":\"IsUnicodeClass\",\"content\":false},{\"N\":\"IsAutoClass\",\"content\":false},{\"N\":\"IsArray\",\"content\":false},{\"N\":\"IsByRef\",\"content\":false},{\"N\":\"IsPointer\",\"content\":false},{\"N\":\"IsPrimitive\",\"content\":false},{\"N\":\"IsCOMObject\",\"content\":false},{\"N\":\"HasElementType\",\"content\":false},{\"N\":\"IsContextful\",\"content\":false},{\"N\":\"IsMarshalByRef\",\"content\":false}],\"S\":[{\"N\":\"Module\",\"content\":\"CommonLanguageRuntimeLibrary\"},{\"N\":\"Assembly\",\"content\":\"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"},{\"N\":\"TypeHandle\",\"content\":\"System.RuntimeTypeHandle\"},{\"N\":\"FullName\",\"content\":\"System.Runtime.InteropServices._Attribute\"},{\"N\":\"AssemblyQualifiedName\",\"content\":\"System.Runtime.InteropServices._Attribute, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\"},{\"N\":\"Namespace\",\"content\":\"System.Runtime.InteropServices\"},{\"N\":\"Name\",\"content\":\"_Attribute\"},{\"N\":\"MemberType\",\"content\":\"TypeInfo\"},{\"N\":\"Attributes\",\"content\":\"AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract\"}],\"Obj\":[{\"RefId\":43,\"LST\":{},\"TNRef\":{\"RefId\":11},\"N\":\"DeclaredConstructors\"},{\"RefId\":44,\"LST\":{},\"TNRef\":{\"RefId\":13},\"N\":\"DeclaredFields\"},{\"RefId\":45,\"LST\":{\"S\":[\"Void GetTypeInfoCount(UInt32 ByRef)\",\"Void GetTypeInfo(UInt32, UInt32, IntPtr)\",\"Void GetIDsOfNames(System.Guid ByRef, IntPtr, UInt32, UInt32, IntPtr)\",\"Void Invoke(UInt32, System.Guid ByRef, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)\"]},\"TNRef\":{\"RefId\":14},\"N\":\"DeclaredMembers\"},{\"RefId\":46,\"LST\":{\"S\":[\"Void GetTypeInfoCount(UInt32 ByRef)\",\"Void GetTypeInfo(UInt32, UInt32, IntPtr)\",\"Void GetIDsOfNames(System.Guid ByRef, IntPtr, UInt32, UInt32, IntPtr)\",\"Void Invoke(UInt32, System.Guid ByRef, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)\"]},\"TNRef\":{\"RefId\":15},\"N\":\"DeclaredMethods\"},{\"RefId\":47,\"IE\":{},\"TNRef\":{\"RefId\":16},\"N\":\"DeclaredNestedTypes\"},{\"RefId\":48,\"LST\":{},\"TNRef\":{\"RefId\":17},\"N\":\"DeclaredProperties\"},{\"RefId\":49,\"LST\":{},\"TNRef\":{\"RefId\":8},\"N\":\"ImplementedInterfaces\"},{\"RefId\":50,\"LST\":{\"S\":[\"[System.Runtime.InteropServices.GuidAttribute(\\\"917B14D0-2D9E-38B8-92A9-381ACF52F7C0\\\")]\",\"[System.Runtime.InteropServices.InterfaceTypeAttribute((System.Runtime.InteropServices.ComInterfaceType)1)]\",\"[System.CLSCompliantAttribute((Boolean)False)]\",\"[System.Runtime.InteropServices.TypeLibImportClassAttribute(typeof(System.Attribute))]\",\"[System.Runtime.InteropServices.ComVisibleAttribute((Boolean)True)]\"]},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"}],\"G\":{\"N\":\"GUID\",\"content\":\"917b14d0-2d9e-38b8-92a9-381acf52f7c0\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":33556678}},\"TNRef\":{\"RefId\":1}}},\"TNRef\":{\"RefId\":8},\"N\":\"ImplementedInterfaces\"},{\"I32\":1048577,\"TN\":{\"T\":[\"System.Reflection.TypeAttributes\",\"System.Enum\",\"System.ValueType\",\"System.Object\"],\"RefId\":24},\"RefId\":51,\"ToString\":\"AutoLayout, AnsiClass, Class, Public, BeforeFieldInit\",\"N\":\"Attributes\"},{\"RefId\":52,\"LST\":{\"Obj\":{\"TN\":{\"T\":[\"System.Reflection.CustomAttributeData\",\"System.Object\"],\"RefId\":25},\"RefId\":53,\"ToString\":\"[System.AttributeUsageAttribute((System.AttributeTargets)4)]\",\"Props\":{\"S\":[{\"N\":\"AttributeType\",\"content\":\"System.AttributeUsageAttribute\"},{\"N\":\"Constructor\",\"content\":\"Void .ctor(System.AttributeTargets)\"}],\"Obj\":[{\"TN\":{\"T\":[\"System.Collections.ObjectModel.ReadOnlyCollection`1[[System.Reflection.CustomAttributeTypedArgument, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\",\"System.Object\"],\"RefId\":26},\"RefId\":54,\"LST\":{\"S\":\"(System.AttributeTargets)4\"},\"N\":\"ConstructorArguments\"},{\"TN\":{\"T\":[\"System.Collections.ObjectModel.ReadOnlyCollection`1[[System.Reflection.CustomAttributeNamedArgument, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\",\"System.Object\"],\"RefId\":27},\"RefId\":55,\"LST\":{},\"N\":\"NamedArguments\"}]}}},\"TNRef\":{\"RefId\":3},\"N\":\"CustomAttributes\"}],\"G\":{\"N\":\"GUID\",\"content\":\"0ac2a376-ebec-3bcc-b253-b4f1ee6cab73\"},\"I32\":{\"N\":\"MetadataToken\",\"content\":33555375}}},{\"MS\":{\"Nil\":{\"N\":\"LinkType\"},\"B\":[{\"N\":\"PSIsContainer\",\"content\":false},{\"N\":\"PSShowComputerName\",\"content\":true}],\"S\":[{\"N\":\"PSPath\",\"content\":\"Microsoft.PowerShell.Core\\\\FileSystem::C:\\\\TEMP\\\\XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26.ini\"},{\"N\":\"PSParentPath\",\"content\":\"Microsoft.PowerShell.Core\\\\FileSystem::C:\\\\TEMP\"},{\"N\":\"PSChildName\",\"content\":\"XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26.ini\"},{\"N\":\"Mode\",\"content\":\"-a----\"},{\"N\":\"VersionInfo\",\"content\":\"File:             C:\\\\TEMP\\\\XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26.ini_x000D__x000A_InternalName:     _x000D__x000A_OriginalFilename: _x000D__x000A_FileVersion:      _x000D__x000A_FileDescription:  _x000D__x000A_Product:          _x000D__x000A_ProductVersion:   _x000D__x000A_Debug:            False_x000D__x000A_Patched:          False_x000D__x000A_PreRelease:       False_x000D__x000A_PrivateBuild:     False_x000D__x000A_SpecialBuild:     False_x000D__x000A_Language:         _x000D__x000A_\"},{\"N\":\"BaseName\",\"content\":\"XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26\"},{\"N\":\"PSComputerName\",\"content\":\"XX-SERVER-NAME\"}],\"Obj\":[{\"MS\":{\"U64\":[{\"N\":\"Used\",\"content\":42090221568},{\"N\":\"Free\",\"content\":64756523008}]},\"TN\":{\"T\":[\"Deserialized.System.Management.Automation.PSDriveInfo\",\"Deserialized.System.Object\"],\"RefId\":29},\"RefId\":57,\"ToString\":\"C\",\"Props\":{\"Nil\":[{\"N\":\"MaximumSize\"},{\"N\":\"DisplayRoot\"}],\"S\":[{\"N\":\"CurrentLocation\",\"content\":\"Users\\\\vRA-s\\\\Documents\"},{\"N\":\"Name\",\"content\":\"C\"},{\"N\":\"Provider\",\"content\":\"Microsoft.PowerShell.Core\\\\FileSystem\"},{\"N\":\"Root\",\"content\":\"C:\\\\\"},{\"N\":\"Description\",\"content\":\"System\"}],\"Obj\":{\"TN\":{\"T\":[\"System.Management.Automation.PSCredential\",\"System.Object\"],\"RefId\":30},\"RefId\":58,\"ToString\":\"System.Management.Automation.PSCredential\",\"Props\":{\"Nil\":[{\"N\":\"UserName\"},{\"N\":\"Password\"}]},\"N\":\"Credential\"}},\"N\":\"PSDrive\"},{\"TN\":{\"T\":[\"Deserialized.System.Management.Automation.ProviderInfo\",\"Deserialized.System.Object\"],\"RefId\":31},\"RefId\":59,\"ToString\":\"Microsoft.PowerShell.Core\\\\FileSystem\",\"Props\":{\"Nil\":{\"N\":\"Module\"},\"S\":[{\"N\":\"ImplementingType\",\"content\":\"Microsoft.PowerShell.Commands.FileSystemProvider\"},{\"N\":\"HelpFile\",\"content\":\"System.Management.Automation.dll-Help.xml\"},{\"N\":\"Name\",\"content\":\"FileSystem\"},{\"N\":\"PSSnapIn\",\"content\":\"Microsoft.PowerShell.Core\"},{\"N\":\"ModuleName\",\"content\":\"Microsoft.PowerShell.Core\"},{\"N\":\"Description\"},{\"N\":\"Capabilities\",\"content\":\"Filter, ShouldProcess, Credentials\"},{\"N\":\"Home\",\"content\":\"C:\\\\Users\\\\vRA-s\"}],\"Obj\":{\"TN\":{\"T\":[\"Deserialized.System.Collections.ObjectModel.Collection`1[[System.Management.Automation.PSDriveInfo, System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]\",\"Deserialized.System.Object\"],\"RefId\":32},\"RefId\":60,\"LST\":{\"Ref\":{\"RefId\":57},\"S\":[\"D\",\"E\",\"Z\"]},\"N\":\"Drives\"}},\"N\":\"PSProvider\"},{\"TN\":{\"T\":[\"Deserialized.System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\",\"Deserialized.System.Object\"],\"RefId\":33},\"RefId\":61,\"LST\":{},\"N\":\"Target\"}],\"G\":{\"N\":\"RunspaceId\",\"content\":\"8250724f-962e-4728-a5cf-5954cf66651a\"}},\"TN\":{\"T\":[\"Deserialized.System.IO.FileInfo\",\"Deserialized.System.IO.FileSystemInfo\",\"Deserialized.System.MarshalByRefObject\",\"Deserialized.System.Object\"],\"RefId\":28},\"RefId\":56,\"ToString\":\"C:\\\\TEMP\\\\XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26.ini\",\"Props\":{\"DT\":[{\"N\":\"CreationTime\",\"content\":\"2019-05-23T14:26:43.9118423+01:00\"},{\"N\":\"CreationTimeUtc\",\"content\":\"2019-05-23T13:26:43.9118423Z\"},{\"N\":\"LastAccessTime\",\"content\":\"2019-05-23T14:26:43.9118423+01:00\"},{\"N\":\"LastAccessTimeUtc\",\"content\":\"2019-05-23T13:26:43.9118423Z\"},{\"N\":\"LastWriteTime\",\"content\":\"2019-05-23T14:26:43.9118423+01:00\"},{\"N\":\"LastWriteTimeUtc\",\"content\":\"2019-05-23T13:26:43.9118423Z\"}],\"B\":[{\"N\":\"IsReadOnly\",\"content\":false},{\"N\":\"Exists\",\"content\":true}],\"S\":[{\"N\":\"Name\",\"content\":\"XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26.ini\"},{\"N\":\"DirectoryName\",\"content\":\"C:\\\\TEMP\"},{\"N\":\"Directory\",\"content\":\"C:\\\\TEMP\"},{\"N\":\"FullName\",\"content\":\"C:\\\\TEMP\\\\XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26.ini\"},{\"N\":\"Extension\",\"content\":\".ini\"},{\"N\":\"Attributes\",\"content\":\"Archive\"}],\"I64\":{\"N\":\"Length\",\"content\":1196}}},{\"S\":\"C:\\\\TEMP\\\\XX-SERVER-NAME_SQL_Configuration_File_2019_05_23_02_26.ini\",\"MS\":{\"B\":{\"N\":\"PSShowComputerName\",\"content\":true},\"S\":{\"N\":\"PSComputerName\",\"content\":\"XX-SERVER-NAME\"},\"G\":{\"N\":\"RunspaceId\",\"content\":\"8250724f-962e-4728-a5cf-5954cf66651a\"}},\"RefId\":62}]}}}}"

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

The above is what I get back.

Reply
0 Kudos
iiliev
VMware Employee
VMware Employee

The error you are getting in online JSON viewer is expected.

output.getAsJson() returns a string, and when you call JSON.stringify() on it, you'll get as a result another string with special characters like double quotes escaped (eg. " will become \"). which means the result will not be a valid JSON value anymore, and that's why online JSON viewer will complain about it being an invalid JSON.

In your case, you need to fetch some information from JSON object, not from JSON string, so you shouldn't use the value returned from output.getAsJson() but from output.getRootObject(). Or, if you already got a JSON string, you can convert it to JSON object using JSON.parse(), and then access the info you want inside it using the normal Javascript property accessor syntax.

Reply
0 Kudos
eoinbyrne
Expert
Expert

Good spot iiliev​ & my bad - I failed to notice the return type of the getAsJson method there

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

When i try this

It just fails.

var psObject = output.getResults();

var data = psObject.getRootObject();

System.log(data);

Reply
0 Kudos
iiliev
VMware Employee
VMware Employee

In general, descriptions like "It just fails" leave a lot to our imagination trying to figure out what exactly could be the failure Smiley Happy

In this case, as the variable output is of type PowerShellRemotePSObject, the failure is likely because this class does not have a method getResults(). So instead you should use directly something like var data = output.getRootObject();

Reply
0 Kudos
platforminc
Enthusiast
Enthusiast

hen I changed it to what you specified, below was the result.

[I] DynamicWrapper (Instance) : [PowerShellPSObject]-[class com.vmware.o11n.plugin.powershell.model.result.PSObject] -- VALUE : com.vmware.o11n.plugin.powershell.model.result.PSObject@72c337f,DynamicWrapper (Instance) : [PowerShellPSObject]-[class com.vmware.o11n.plugin.powershell.model.result.PSObject] -- VALUE : com.vmware.o11n.plugin.powershell.model.result.PSObject@6cb23780,DynamicWrapper (Instance) : [PowerShellPSObject]-[class com.vmware.o11n.plugin.powershell.model.result.PSObject] -- VALUE : com.vmware.o11n.plugin.powershell.model.result.PSObject@2900bf3f

Reply
0 Kudos