Forum Discussion
Task Sequence Failing - Installing Application
Hi, that 0x80004005 in TS often indicates that SYSTEM can't find the files on the DP or doesn't have permissions on the network share.
Check that the app is deployed to the DPs used by the TS collection and that the client has received the contents.
Remember that Task Sequences run in SYSTEM context: you need the Network Access Account configured in SCCM to access \share.
For copying licenses, create a package and in TS use a “Run Command Line” step (e.g., robocopy \share\licenze C:\dest) immediately after installation.
If you need to, precede with a net use \share /user:DOM\user Password and follow with net use \share /delete.
Then check the smsts.log on the client for any access errors or missing DPs.
Then the SYSTEM process can access the share and copy the files without failure.