Is there a way I can copy all files in the toolkit to the target computer?
When installing SCCM packages, I’d like to trigger Deploy-Application.exe to run from the target computer rather than from the SCCM share.
However, I can’t figure out how to get all the toolkit files to download to the target computer.
Looks like these lines from AppDeloyToolkitMain.ps1 will copy files in the “Files” or “SupportFiles” folders:
<code>[string]$dirFiles = Join-Path -Path $scriptParentPath -ChildPath 'Files' [string]$dirSupportFiles = Join-Path -Path $scriptParentPath -ChildPath 'SupportFiles' </code>
But what I really want to do is copy everything in the “Toolkit” folder down to the target computer, so I can then trigger Deploy-Application.exe from the computer rather than the SCCM share.
Thanks!