Hi, @Manoj Anukonda
Thank you for posting in Microsoft Q&A forum.
The error means: Failed to verify the executable file is valid or to construct the associated command line.
The cause for Error 0x87d01106 is the application was trying to execute a PowerShell script. However, PowerShell.exe could not be located on client computers. The full path for Powershell.exe file was not provided in command line.
The solution is to provide the complete path for PowerShell executable in program command line.
The complete path to execute PowerShell script should be like this:
%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -File MyScript.ps1
For your reference:
https://techuisitive.com/sccm-application-deployment-failed-with-error-0x87d01106-configmgr/
(Please Note: Since the website is not hosted by Microsoft, just for your reference.)
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Add comment".