PoshCode Archive  Artifact [feb89aeb43]

Artifact feb89aeb433cde04163cbb84630da5ca94359d19175d0344a66d5a6801e3b259:

  • File CLR4-module.ps1 — part of check-in [df0e111dc0] at 2018-06-10 13:23:29 on branch trunk — Runs a command in a powershell instance that hosts the CLR v4.0. If the current runspace is already hosting the 4.0 CLR, the command is invoked inline. (user: beefarino size: 1622)

# encoding: ascii
# api: powershell
# title: CLR4 module
# description: Runs a command in a powershell instance that hosts the CLR v4.0.  If the current runspace is already hosting the 4.0 CLR, the command is invoked inline.
# version: 4.0
# type: function
# author: beefarino
# license: CC0
# function: Start-CLR4
# x-poshcode-id: 3294
# x-archived: 2016-08-14T13:38:28
# x-published: 2012-03-20T07:07:00
#
#
function Start-CLR4 {
   
	[CmdletBinding()]
    
	param ( [string] $cmd )


    
    if ($PSVersionTable.CLRVersion.Major -eq 4) 
    {    
	write-debug 'already running clr 4'
	invoke-expression $cmd;
	return
    }

    $RunActivationConfigPath = resolve-path ~ | Join-Path -ChildPath .CLR4PowerShell;
    
    write-debug "clr4 config path: $runactivationconfigpath"

    if( -not( test-path $runactivationconfigpath ))
    {
	   New-Item -Path $RunActivationConfigPath -ItemType Container | Out-Null;
    

@"
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
  <supportedRuntime version="v4.0"/>
</startup>
</configuration>
"@ | Set-Content -Path $RunActivationConfigPath\powershell.exe.activation_config -Encoding UTF8;

    }
    
    $EnvVarName = 'COMPLUS_ApplicationMigrationRuntimeActivationConfigPath';
    [Environment]::SetEnvironmentVariable($EnvVarName, $RunActivationConfigPath);
    
    write-debug "current COMPLUS_ApplicationMigrationRuntimeActivationConfigPath: $env:COMPLUS_ApplicationMigrationRuntimeActivationConfigPath";

    & powershell.exe -nologo -command "$cmd";
}