Azure Friday
390 TopicsCreating a folder containing multiple files and sending to devices via intune
Hi all, I desperately need some help! And just thought Id post on here to see if someone can help! I need to create a folder on client machines in the c drive (Folder name: Spanish Games) which I then deploy a bunch of files to this folder I create I have had a look and seems like I need to create a win32 app container with all in, script and files. What would I need to include in the script to get this to work? I have had a look at docs online but cant find one that deploys a folder and files too. I have found this: https://pariswells.com/blog/intune/copy-file-to-workstations-with-windows-intune but dont really understand some of it. Any help would be great!! Thanks in advanceSolved60KViews0likes22CommentsRemoving McAfee live safe via intune
Hi all, Was wondering if someone can help! I have enrolled devices and all have mcafee live safe trial on which I need to remove, as I have given these devices back to users, fresh start isnt possible. I have found this: https://christianlehrer.com/?p=359 if I run the command ".\Mccleanup.exe -p StopServices,MFSY,PEF,MXD,CSP,Sustainability,MOCP,MFP,APPSTATS,Auth,EMproxy,FWdiver,HW,MAS,MAT,MBK,MCPR,McProxy,McSvcHost,VUL,MHN,MNA,MOBK,MPFP,MPFPCU,MPS,SHRED,MPSCU,MQC,MQCCU,MSAD,MSHR,MSK,MSKCU,MWL,NMC,RedirSvc,VS,REMEDIATION,MSC,YAP,TRUEKEY,LAM,PCB,Symlink,SafeConnect,MGS,WMIRemover,RESIDUE -v -s" locally it works but once i follow the intune way of doing it I cant get it to work! Does anyone know how I can wrap the uninstall exe and a powershell script correctly to remove mcafee live safe or another way I can do this but has to be remote via intune. Thanks in advance!Solved34KViews0likes9Commentsdeploying printer via intune
Hello everyone, I'm in need of assistance with the following script I'm currently using: powershell # Replace the placeholders with your details $inf_path = ".\driver\KOBxxK__01.inf" $driver_name = "KONICA MINOLTA Universal V4 PCL" $driver_path = "C:\Windows\System32\DriverStore\FileRepository\KOBxxK__01.inf" $printer_name = "Konica 1" $port_name = “USED MY IP” $printer_ip_address = “USED MY IP” # Install the driver using Pnputil pnputil.exe /add-driver "$inf_path" # Add the printer driver using Add-PrinterDriver Add-PrinterDriver -Name "$driver_name" -InfPath "$driver_path" # Add the printer port using Add-PrinterPort Add-PrinterPort -Name "$port_name" -PrinterHostAddress "$printer_ip_address" # Add the printer using Add-Printer Add-Printer -DriverName "$driver_name" -Name "$printer_name" -PortName "$port_name" My objective is to remotely install a Konica printer via Intune using PowerShell. However, I've been unable to get this script to function properly. I placed this script in the folder located before the "Driver" folder. The error Could someone please assist me with this issue?Solved25KViews0likes18Comments