Exit code 60008 when deploying with ConfigMgr

There seems to be an issue with Special Characters in Main.ps1. You have to change the line
Get-Content -LiteralPath $AppDeployConfigFile
to
Get-Content -LiteralPath $AppDeployConfigFile -Encoding UTF8 inside your Main.ps1

Hope this works!!!

1 Like