Примітка:
Наступне рішення працює з будь-якою зовнішньою програмою і фіксує вихід незмінно як текст .
Щоб викликати інший екземпляр PowerShell і захоплювати його вихід у вигляді багатих об'єктів (з обмеженнями), дивіться варіантне рішення в нижньому розділі або розгляньте корисну відповідь Матіаса Р. Джессена , в якій використовується PowerShell SDK .
Ось доказ концепції, заснованої на прямому використанні System.Diagnostics.Process
таSystem.Diagnostics.ProcessStartInfo
типів .NET для збору результатів процесу в пам'яті (як зазначено у вашому запитанні, Start-Process
це не варіант, оскільки він підтримує лише захоплення виводу у файлах , як показано в цій відповіді ) :
Примітка:
Завдяки тому, що працює як інший користувач, це підтримується лише в Windows (станом на .NET Core 3.1), але в обох версіях PowerShell немає.
Через те, що потрібно запускати іншого користувача та потрібно захоплювати вихід, .WindowStyle
не можна використовувати для запуску приховану команду (оскільки використання .WindowStyle
потрібно .UseShellExecute
бути $true
, що несумісне з цими вимогами); однак, оскільки весь вихід фіксується , налаштування.CreateNoNewWindow
для $true
еффектівнога призводить до прихованого виконання.
# 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
Вищезазначене дає щось на кшталт наступного, показуючи, що процес успішно працює із заданою ідентифікацією користувача:
Running `cmd /c echo %USERNAME%` as user jdoe yielded:
jdoe
Оскільки ви викликаєте інший екземпляр PowerShell , можливо, ви захочете скористатися можливістю PowerShell CLI представляти вихід у форматі CLIXML, що дозволяє десеріалізувати вихід у багаті об'єкти , хоча і з обмеженою вірністю типу , як пояснено в цьому пов'язаному відповіді .
# 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
Вищевказані результати виходять приблизно на зразок наступного, показуючи, що результат [datetime]
екземпляра ( System.DateTime
) Get-Date
був десеріалізований як такий:
Running `Get-Date` as user jdoe yielded:
Friday, March 27, 2020 6:26:49 PM
as data type:
System.DateTime