Forum Discussion
DGMalcolm
Jan 14, 2022Iron Contributor
Deploy Update Compliance Configuration Script via .BAT
Hey there, I am trying to deploy the Update Compliance Configuration Script through Intune using a batch file. I went through the instructions to modify the .bat file and it runs fine locally. I ...
- Jan 15, 2022Hi
It depends on how you named your bat file. I am explaining it in this blog
https://call4cloud.nl/2021/07/what-about-printer-drivers/
You will notice I am using PowerShell as install.ps1 to install the printer driver, so my install cmd would be :
powershell.exe -executionpolicy bypass .\install.ps1
Luckily when you have created an bat file like install.bat it would be just a simple: install.bat
But please make sure that you have that install.bat in the root of your win32app
Jan 14, 2022
You can just specify the filename like install.cmd as the install command (Or install.bat or whatever you used for testing locally) You should also specify a uninstall command, if you don't have one you can just specify uninstall.cmd