Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED How can I deploy applications or programs with SCCM without copying all the files to the client ?

  • Thread starter Thread starter madogran
  • Start date Start date
  • Replies Replies 6
  • Views Views 3K

madogran

New Member
Messages
3
Reaction score
0
Points
1
Hi,

I have a questions: How can I deploy applications or programs with SCCM without copying all the files to the computer's client?

Thanks!
 
I think you can do this with creating a package on SCCM with command line (or batch file), but you need to share the source file on the network.
 
I think you can do this with creating a package on SCCM with command line (or batch file), but you need to share the source file on the network.

Maybe I don´t have explained myself well, sorry. I have serveral distributions point and i want to deploy a batch, but I don´t want that this batch be copied in c:\windows\ccmache\. I want to install the batch from DP, directly ....

Thanks for your answer, Youssef!
 
Just don't enable the "This package contains source files" option when you create new package, try this and let us know for the result.
 
Maybe I don´t have explained myself well, sorry. I have serveral distributions point and i want to deploy a batch, but I don´t want that this batch be copied in c:\windows\ccmache\. I want to install the batch from DP, directly ....

Thanks for your answer, Youssef!
You can achieve this if you have got package. I guess, for application you cannot run it from DP.
 
Maybe I don´t have explained myself well, sorry. I have serveral distributions point and i want to deploy a batch, but I don´t want that this batch be copied in c:\windows\ccmache\. I want to install the batch from DP, directly ....

Thanks for your answer, Youssef!
use a batch script and on the script just point your installation file to your shared drive. this way, it will only copy the batch file into ccmcache. This way however will increase your network traffic and load to your file server.

eg. instal.bat
msiexec /i \\fileshare\dp\install.msi
 
Back
Top