スクリプトを続行するには、2つのPSSessionを確立して現在のセッションにインポートする必要があります。両方のステップでは、連続して実行する場合、合計20〜30秒間、それぞれ約10〜15秒かかる。New-PSSession Parellel Execution
別のランスペースでNew-PSSessionを実行して、確立されたセッションを親プロセスにインポートすることはできますか?
New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri ("https://$($service)/PowerShell/") -Credential $Credential -Authentication Basic -AllowRedirection -ErrorAction Stop
New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $Credential -Authentication Basic -AllowRedirection -ErrorAction Stop
はおそらくこのような何かが(これは動作しません警告)するには::
は$credential = Get-Credential
$scriptblock =
{
param ([string]$Credential)
$session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $Credential -Authentication Basic -AllowRedirection -ErrorAction Stop
return $session
}
$shell = [PowerShell]::Create().AddScript($scriptblock).AddParameter($credential)
$job = $shell.BeginInvoke()
$result = $shell.EndInvoke($job)
Import-PSSession $result
最終的な目標は、これはあまり時間がかかるようにすることです。このの例の変更については
私たちがNew-PSSessionを並行して使用すると、それは20〜30秒ではなく10〜15秒で完了します。私はこれを達成するすべての答えに満足しているでしょう、それは実行スペースを使用する必要はありません。
EDIT:
ルック:
は、だからあなたの場合、あなたはおそらくのようなものを実行して、あなたが望むものを達成することができます。 https://technet.microsoft.com/en-us/library/hh849717.aspx 複数のConnectionURIを作成して他のオブジェクトに割り当てることができ、実行を続行できます。 –それ以外の場合は、Invoke-Commandスクリプトブロックを使用することができます –
こんにちは@ShankarShastri、私はあなたの提案を完全に理解しているかどうかはわかりませんが、 –