ADFSAADMigratonUtils export failure due to literalpath
shosho-san opened this issue · 1 comments
shosho-san commented
In lines 1208 and 1219 : "$AdfsRelyingPartyTrust | Export-Clixml $filePath -ErrorAction SilentlyContinue" failed
You have to add "$AdfsClaimsProviderTrust | Export-Clixml -literalpath $filePath -ErrorAction SilentlyContinue"
shosho-san commented
in line 1030: "$ADFSRPTrust = Import-clixml $fileName" failed
you have to add "$ADFSRPTrust = Import-clixml -LiteralPath $fileName"