Starting .ps1 Script from PowerShell with Parameters and Credentials and getting output using variable

前端 未结 4 1831
无人共我
无人共我 2020-12-19 01:58

Hello Stack Community :)

I have a simple goal. I\'d like to start some PowerShell Script from an another Powershell Script, but there are 3 conditions:

    <
4条回答
  •  悲&欢浪女
    2020-12-19 02:42

    Note:

    • The following solution works with any external program, and captures output invariably as text.

    • To invoke another PowerShell instance and capture its output as rich objects (with limitations), see the variant solution in the bottom section or consider Mathias R. Jessen's helpful answer, which uses the PowerShell SDK.

    Here's a proof-of-concept based on direct use of the System.Diagnostics.Process and System.Diagnostics.ProcessStartInfo .NET types to capture process output in memory (as stated in your question, Start-Process is not an option, because it only supports capturing output in files, as shown in this answer):

    Note:

    • Due to running as a different user, this is supported on Windows only (as of .NET Core 3.1), but in both PowerShell editions there.

    • Due to needing to run as a different user and needing to capture output, .WindowStyle cannot be used to run the command hidden (because using .WindowStyle requires .UseShellExecute to be $true, which is incompatible with these requirements); however, since all output is being captured, setting .CreateNoNewWindow to $true effectively results in hidden execution.

    # Get the target user's name and password.
    $cred = Get-Credential
    
    # Create a ProcessStartInfo instance
    # with the relevant properties.
    $psi = [System.Diagnostics.ProcessStartInfo] @{
      # For demo purposes, use a simple `cmd.exe` command that echoes the username. 
      # See the bottom section for a call to `powershell.exe`.
      FileName = 'cmd.exe'
      Arguments = '/c echo %USERNAME%'
      # Set this to a directory that the target user
      # is permitted to access.
      WorkingDirectory = 'C:\'                                                                   #'
      # Ask that output be captured in the
      # .StandardOutput / .StandardError properties of
      # the Process object created later.
      UseShellExecute = $false # must be $false
      RedirectStandardOutput = $true
      RedirectStandardError = $true
      # Uncomment this line if you want the process to run effectively hidden.
      #   CreateNoNewWindow = $true
      # Specify the user identity.
      # Note: If you specify a UPN in .UserName
      # (user@doamin.com), set .Domain to $null
      Domain = $env:USERDOMAIN
      UserName = $cred.UserName
      Password = $cred.Password
    }
    
    # Create (launch) the process...
    $ps = [System.Diagnostics.Process]::Start($psi)
    
    # Read the captured standard output.
    # By reading to the *end*, this implicitly waits for (near) termination
    # of the process.
    # Do NOT use $ps.WaitForExit() first, as that can result in a deadlock.
    $stdout = $ps.StandardOutput.ReadToEnd()
    
    # Uncomment the following lines to report the process' exit code.
    #   $ps.WaitForExit()
    #   "Process exit code: $($ps.ExitCode)"
    
    "Running ``cmd /c echo %USERNAME%`` as user $($cred.UserName) yielded:"
    $stdout
    

    The above yields something like the following, showing that the process successfully ran with the given user identity:

    Running `cmd /c echo %USERNAME%` as user jdoe yielded:
    jdoe
    

    Since you're calling another PowerShell instance, you may want to take advantage of the PowerShell CLI's ability to represent output in CLIXML format, which allows deserializing the output into rich objects, albeit with limited type fidelity, as explained in this related answer.

    # Get the target user's name and password.
    $cred = Get-Credential
    
    # Create a ProcessStartInfo instance
    # with the relevant properties.
    $psi = [System.Diagnostics.ProcessStartInfo] @{
      # Invoke the PowerShell CLI with a simple sample command
      # that calls `Get-Date` to output the current date as a [datetime] instance.
      FileName = 'powershell.exe'
      # `-of xml` asks that the output be returned as CLIXML,
      # a serialization format that allows deserialization into
      # rich objects.
      Arguments = '-of xml -noprofile -c Get-Date'
      # Set this to a directory that the target user
      # is permitted to access.
      WorkingDirectory = 'C:\'                                                                   #'
      # Ask that output be captured in the
      # .StandardOutput / .StandardError properties of
      # the Process object created later.
      UseShellExecute = $false # must be $false
      RedirectStandardOutput = $true
      RedirectStandardError = $true
      # Uncomment this line if you want the process to run effectively hidden.
      #   CreateNoNewWindow = $true
      # Specify the user identity.
      # Note: If you specify a UPN in .UserName
      # (user@doamin.com), set .Domain to $null
      Domain = $env:USERDOMAIN
      UserName = $cred.UserName
      Password = $cred.Password
    }
    
    # Create (launch) the process...
    $ps = [System.Diagnostics.Process]::Start($psi)
    
    # Read the captured standard output, in CLIXML format,
    # stripping the `#` comment line at the top (`#< CLIXML`)
    # which the deserializer doesn't know how to handle.
    $stdoutCliXml = $ps.StandardOutput.ReadToEnd() -replace '^#.*\r?\n'
    
    # Uncomment the following lines to report the process' exit code.
    #   $ps.WaitForExit()
    #   "Process exit code: $($ps.ExitCode)"
    
    # Use PowerShell's deserialization API to 
    # "rehydrate" the objects.
    $stdoutObjects = [Management.Automation.PSSerializer]::Deserialize($stdoutCliXml)
    
    "Running ``Get-Date`` as user $($cred.UserName) yielded:"
    $stdoutObjects
    "`nas data type:"
    $stdoutObjects.GetType().FullName
    

    The above outputs something like the following, showing that the [datetime] instance (System.DateTime) output by Get-Date was deserialized as such:

    Running `Get-Date` as user jdoe yielded:
    
    Friday, March 27, 2020 6:26:49 PM
    
    as data type:
    System.DateTime
    

提交回复
热议问题