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...
MoritzG
Mar 24, 2025Iron Contributor
Hi,
you could use a powershell script:
$source = "$PSScriptRoot\MyDeployment"
$destination = "C:\Program Files\MyDeployment"
Copy-Item -Path $source -Destination $destination -Recurse -ForceSave in e.g. script.ps1
Upload to Intune:
- Go to Intune > Devices > Scripts
- Create a new script
- Upload script.ps1
- Assign it to your target devices