PoshCode Archive  Artifact [1d865c0e4c]

Artifact 1d865c0e4c23bbf8f7b281f4f0f4f1e3657c766e751f630886e4b57e6aeac3fc:

  • File Run-NET-optimizations.ps1 — part of check-in [7ca4facced] at 2018-06-10 13:50:40 on branch trunk — Force .NET Framework optimization to happen (causes high CPU by mscorsvw.exe) (user: Scott Copus size: 1744)

# encoding: ascii
# api: powershell
# title: Run .NET optimizations
# description: Force .NET Framework optimization to happen (causes high CPU by mscorsvw.exe)
# version: 0.1
# author: Scott Copus
# license: CC0
# x-poshcode-id: 5136
# x-archived: 2014-05-05T01:59:48
# x-published: 2014-05-01T16:08:00
#
# By default the optimization only uses a single CPU core.
# Running “NGEN.EXE executeQueuedItems” forces optimization to happen on all cores.
# http://blogs.msdn.com/b/dotnet/archive/2013/08/06/wondering-why-mscorsvw-exe-has-high-cpu-usage-you-can-speed-it-up.aspx
#
# Force .NET Framework optimization to happen (causes high CPU by mscorsvw.exe)
# By default the optimization only uses a single CPU core.
# Running "NGEN.EXE executeQueuedItems" forces optimization to happen on all cores.
# http://blogs.msdn.com/b/dotnet/archive/2013/08/06/wondering-why-mscorsvw-exe-has-high-cpu-usage-you-can-speed-it-up.aspx

Remove-Item variable:frameworks
# get all framework paths (adding 64-bit if necessary):
$frameworks = @("$env:SystemRoot\Microsoft.NET\Framework")
If (Test-Path "$env:SystemRoot\Microsoft.NET\Framework64") {
    $frameworks += "$env:SystemRoot\Microsoft.NET\Framework64"
}

ForEach ($framework in $frameworks) {
    # find the latest version of NGEN.EXE in the current framework path:
    $ngen_path = Join-Path (Join-Path $framework -childPath (gci $framework | where { ($_.PSIsContainer) -and (Test-Path (Join-Path $_.FullName -childPath "ngen.exe")) } | Sort Name -Descending | Select -First 1).Name) -childPath "ngen.exe"
    # execute the optimization command:
    Write-Host "$ngen_path executeQueuedItems"
    Start-Process $ngen_path -ArgumentList "executeQueuedItems" -Wait
}