SCCM ERROR 0X87D01106 – THE SOFTWARE COULD NOT BE FOUND ON ANY SERVERS
Came across this error while trying to execute an exe from a sub folder of the path specified in the “Content Location“.
i.e.
Path specified in “Content Location” was \\SAP\Win\32bit\AllPackages\
the required binaries to be executed were under the subfolders –
- \\SAP\Win\32bit\AllPackages\App1Pack
- \\SAP\Win\32bit\AllPackages\App2Pack
- \\SAP\Win\32bit\AllPackages\App3Pack
- \\SAP\Win\32bit\AllPackages\App4Pack
The Installation Program was set to %CD%\App1Pack\setup.exe /parametera /parameterb
Tested the package execution and it throws error


Changed install command to %~dp0App1Pack\setup.exe /parametera /parameterb and it still throws the same exception.
Reason – SCCM is not able to find the required executable.
Refer to my post for the solution.