liquidcourage1 Posted August 29, 2013 Report post Posted August 29, 2013 ***DISREGARD... probably going with an MDM client that can handle this*** Is it possible to push/deploy individual files through SCCM 2012? My end-goal is to not only publish/deploy applications, but relevant files as well. For instance, if I deploy Adobe Reader XI, I'd like to go ahead and send some PDFs to a specific location on the PC.The thought process is to have task sequences that eliminate GPOs or hundreds of powershell scripts which can add complexity to the environment very quickly if done in mass quantities. Quote Share this post Link to post Share on other sites More sharing options...
AmrelMahdy Posted August 29, 2013 Report post Posted August 29, 2013 yes sure , just create a program with the blow command (Assume file is on shared server X and u want to copy it on C Drive of the Clients): cmd /c copy /y "\\serverX\sharedfolder\File1.txt" "C:\File1.txt\" Hint: you wont run distribute content as actually there is not program source to distribute it to dps )) Quote Share this post Link to post Share on other sites More sharing options...