1

According to

https://learn.microsoft.com/en-us/dotnet/api/system.management.automation.internal.internalcommand.commandorigin?view=powershellsdk-1.1.0#System_Management_Automation_Internal_InternalCommand_CommandOrigin

There is a runspace, and there is what they refer to as an "external request". I am wondering the difference between these two, specifically the "external requests", as I cannot find any information on what a Powershell "external request" is.

john doe
  • 170
  • 1
  • 11

1 Answers1

1

Clicking on the CommandOrigin of the link you supplied takes you to a page that has descriptions for what these are:

Internal - The command was dispatched by the msh engine as a result of a dispatch request from an already running command.

Runspace - The command was submitted via a runspace.

I.T Delinquent
  • 2,305
  • 2
  • 16
  • 33