How to deploy application in SCCM 2012?

Copper Contributor

Hi Folks,

I am new to SCCM and want to create (deploy) my first application (exe file) with sccm 2012. I am trying via script installer option and i think i am failing at "Specify the command used to install" where i am writing application name without any switch. 

I am successful in install sccm client on remote machine. Please guide.

2 Replies

Try with /S or /Q after your application name

 

Examble - abc.exe /S or abc.exe/Q

 

Try running the exe from an admin command line.

 

First try with /? to find out what the options are. Depending on whether you are making the application an interactive install or silent, you will need to use the appropriate switch. The silent options will often be /s or /q as mentioned by @sivabalanpms