AzureAD/Deployment-Plans

ADFSAADMigratonUtils export failure due to literalpath

shosho-san opened this issue · 1 comments

In lines 1208 and 1219 : "$AdfsRelyingPartyTrust | Export-Clixml $filePath -ErrorAction SilentlyContinue" failed
You have to add "$AdfsClaimsProviderTrust | Export-Clixml -literalpath $filePath -ErrorAction SilentlyContinue"

in line 1030: "$ADFSRPTrust = Import-clixml $fileName" failed
you have to add "$ADFSRPTrust = Import-clixml -LiteralPath $fileName"