Forum Discussion
AhmedSHMK
Mar 24, 2025Brass Contributor
Copy folder using Intine
Hi All, I have a folder containing files and other subfolders that I am trying to copy to devices using Intune. Is there a way to achieve this. I have tried win 32 app so far and it has been tricky...
Bogdan_Guinea
Mar 31, 2025Iron Contributor
Hy,
You need to have the file and folder already on the devices via a blob storage or deploy via app (win32) and in your source code you can create your small script and then package it with IntuneWinAppUtil.exe
Example for a Onliner via win32:
Copy-Item -Path .\YOURFOLDERTOCOPY -Destination C:\YOURFOLDERONDEVICE -Recurse -Force
Same like MoritzG but i wanted to make it clearly for you.