Add NetFramingBase to TPA for AD module compat#113
Open
jborean93 wants to merge 1 commit into
Open
Add NetFramingBase to TPA for AD module compat#113jborean93 wants to merge 1 commit into
jborean93 wants to merge 1 commit into
Conversation
Adds System.ServiceModel.NetFramingBase to the list of Trusted Platform Assemblies so that a PSSession instance can load that assembly by name. The ActiveDirectory module uses this assembly and without this change it will fail to import into a PowerShell 7 configuration endpoint.
Author
|
It looks like this is a transitive dependency of I have not verified but this seems to be a regression with 7.6.0 which is when the updated assembly was introduced. While not ideal, a workaround for people using Add-Type -Path "$PSHome\System.ServiceModel.NetFramingBase.dll"For people relying on JEA with a restricted language mode you can achieve the same thign automatically by adding this to your session configuration ( @{
...
AssembliesToLoad = @(
"$PSHome\System.ServiceModel.NetFramingBase.dll"
)
}
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds System.ServiceModel.NetFramingBase to the list of Trusted Platform Assemblies so that a PSSession instance can load that assembly by name. The ActiveDirectory module uses this assembly and without this change it will fail to import into a PowerShell 7 configuration endpoint.
FIxes: PowerShell/PowerShell#27199