Forum Discussion
Skofe
Jun 28, 2023Copper Contributor
Pushing a PDF via InTune / Endpoint Manager
Hello Community, I am trying to leverage InTune to distribute a PDF file of a Business Continuity Plan Contact list to iOS devices in my organization and after extensive searching on the web and ...
- Jun 30, 2023I put together something. Have a look. https://rahuljindalmyit.blogspot.com/2023/06/pushing-pdf-on-ios-using-microsoft.html
Kevin_Fink
Jun 28, 2023Copper Contributor
I have pushed files out to devices via Intune by wrapping them up in a Win32 app along with a cmd file (my example is install.cmd). Inside the CMD file, i use an xcopy script to put the file where i want it.
if not exist "C:\FOLDER" md "C:\ProgramData\AutoPilotConfig"
xcopy "XXXXX.PDF" "C:/WhereEverYouWantIt" /Y
Wrap this install.cmd along with your PDF as a win32 app and then push it out to your endpoints. My uninstall is to delete the file and my detection is make sure the file exists.
if not exist "C:\FOLDER" md "C:\ProgramData\AutoPilotConfig"
xcopy "XXXXX.PDF" "C:/WhereEverYouWantIt" /Y
Wrap this install.cmd along with your PDF as a win32 app and then push it out to your endpoints. My uninstall is to delete the file and my detection is make sure the file exists.
Skofe
Jun 28, 2023Copper Contributor
Hi Kevin, yes, thank you for this response, I saw similar in my search. I should have been more specific in my post, and I apologize. I am trying to find a method to push a PDF file to iOS devices not Windows workstations.
- rahuljindalJun 30, 2023Bronze ContributorHave you considered using Webclip? You can store the pdf on a cloud storage like Azure blob and push that to your managed iOS devices.
- SkofeJun 30, 2023Copper ContributorThank you for this suggestion, I will investigate.
- rahuljindalJun 30, 2023Bronze ContributorI put together something. Have a look. https://rahuljindalmyit.blogspot.com/2023/06/pushing-pdf-on-ios-using-microsoft.html