bryeschen Posted September 6, 2013 Report post Posted September 6, 2013 Hello, I am entirely new to Package deployment using SCCM. I am trying to deploy Secunia for Windows. The program has to be run from the local machine. I have made a script to create my directories and copy the .exe to the local machine and then run it with the proper switches. echo cd.. cd.. md C:\Secunia copy \\fs\IT\Shared\Software\Security\Secunia\Windows\csia.exe C:\Secunia cd Secunia csia.exe -i -L When I navigate to the script, saved on \\fs and run it as admin it works and installs my program. When I put the script into a package and deploy it software center and then try and install it, installation fails with error Error: 0x80070002(-2147024894) I have a small understanding of creating packages but I have been following tutorials and i just cant seem to get it to work. Quote Share this post Link to post Share on other sites More sharing options...
Rocket Man Posted September 6, 2013 Report post Posted September 6, 2013 0x80070002(-2147024894) Cannot find the file specified. Would it be possible to create a package with the batch file in it and the exe, instead of pointing it to a share to copy locally. Then in deployment specify download locally before running. This way the files get downloaded to the ccmcache folder and can be executed from here which is local. The batch file could be simply: %~dp0csia.exe -i -L EDIT: the program command line would also be the name of the batch file for e:g installsecunia.bat Quote Share this post Link to post Share on other sites More sharing options...
jorlando Posted September 11, 2013 Report post Posted September 11, 2013 I am using Secunia as well... We are using 6.0. Secunia 6.0 has SCCM Database integration so you don't have to put the Secunia Client on every machine when SCCM already has all the information it needs. What version of Secunia are you running? Quote Share this post Link to post Share on other sites More sharing options...