web-dev-qa-db-ja.com

powershell.exeの呼び出しは非常に遅い

PowershellV4.0を搭載したWindows2008R2サーバーがあります

私はこのコンテンツで非常に単純なスクリプトtest.ps1を手に入れました:

Write-Host "Hello world!"

私はこのスクリプトを次のようなPowerShellプロンプトから呼び出します:

measure-command { powershell.exe -file .\test.ps1 }

あなたが見ることができるように私は非常に高い価値を得ました:

Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 7
Milliseconds      : 992
Ticks             : 79922815
TotalDays         : 9,25032581018519E-05
TotalHours        : 0,00222007819444444
TotalMinutes      : 0,133204691666667
TotalSeconds      : 7,9922815
TotalMilliseconds : 7992,2815

または

Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 4
Milliseconds      : 655
Ticks             : 46556579
TotalDays         : 5,38849293981481E-05
TotalHours        : 0,00129323830555556
TotalMinutes      : 0,0775942983333333
TotalSeconds      : 4,6556579
TotalMilliseconds : 4655,6579

そしてそれは私のCPUを50%で取っています。なぜ長すぎるのですか? -noprofileで試しましたが、同じです。

ご協力いただきありがとうございます。

5
Adeel ASIF

Powershellが読み込まれ、JITはトン、トン、そしてトンのものをコンパイルします。これには、多くの過剰なCPUサイクルとディスクI/Oが必要です。

ngen.exe(Native Image Generator) を使用して、起動時にPowershellが読み込むアセンブリをプリコンパイルしてみてください。起動時間が改善されるかもしれません。

$FrameworkDir=[Runtime.InteropServices.RuntimeEnvironment]::GetRuntimeDirectory()
$NGENPath = Join-Path $FrameworkDir 'ngen.exe'

[AppDomain]::CurrentDomain.GetAssemblies() |
  Select-Object -ExpandProperty Location |
  ForEach-Object { & $NGENPath """$_""" } 

Ngenについて読む ここ

6
Ryan Ries