MIMWAL Can run PowerShell 3.0 and beyond without PSRemoting or Start-Process!

June 7, 2024

I just discovered that a colleague had several years prior managed to get MIMWAL PowerShell Activity to run Get-ADUser and other commandlets from the Active Directory Module (which requires PowerShell 3.0 or later) without using PowerShell Remoting or starting a new Process with Start-Process.

<Caution> Per Eugene Sergeev

This breaks SSPR AuthN workflows.

</Caution>

So if you aren’t using SSPR through MIM this might be an option for you!

According to the MIMWAL Wiki

If there is a need to execute a script containing PowerShell 3.0+ cmdlets (e.g. ActiveDirectory module on Windows Server 2012), they can be made to run in a separate process to avoid the product limitation. e.g. using PowerShell Remoting or launching a new “powershell.exe” session using Start-Process cmdlet

But this is not quite true. The trick is in the Microsoft.ResourceManagement.Service.exe.config file.

According to a Microsoft Learn Article the useLegacyV2RuntimeActivationPolicy:

Specifies whether to enable the .NET Framework 2.0 runtime activation policy or to use the .NET Framework 4 activation policy.

Enable .NET Framework 2.0 runtime activation policy for the chosen runtime, which is to bind legacy runtime activation techniques (such as the CorBindToRuntimeEx function) to the runtime chosen from the configuration file instead of capping them at CLR version 2.0. Thus, if CLR version 4 or later is chosen from the configuration file, mixed-mode assemblies created with earlier versions of the .NET Framework are loaded with the chosen CLR version. Setting this value prevents CLR version 1.1 or CLR version 2.0 from loading into the same process, effectively disabling the in-process side-by-side feature.

Put the following in Microsoft.ResourceManagement.Service.exe.config file just before the runtime tag

<startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v4.0"></supportedRuntime> <supportedRuntime version="v2.0.50727"></supportedRuntime> </startup>

Remember to restart your Forefront Identity Manager Service before you expect it to work.

I ran the following script:

$PSVersionTable.PSVersion | Out-File -FilePath "D:\FIMLog\Disabled_account_memberof\2024\test.txt" import-module ActiveDirectory GEt-aduser "Dlundell" | out-file -FilePath "D:\FIMLog\Disabled_account_memberof\2024\testgetaduser.txt"

And got the following output:

Major Minor Build Revision


5 1 20348 2400

DistinguishedName : CN=David Lundell (DLundell),OU=Client Consultants,DC=Clientlab,DC=local Enabled : False GivenName : David Name : David Lundell (DLundell) ObjectClass : user ObjectGUID : SamAccountName : DLundell SID : Surname : Lundell UserPrincipalName : DLundell@Clientlab.local