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 15, 2022
Hi
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
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