@echo off echo Updating the computer with Hotfix MSU Updates... REM Command to update computers with Hotfix MSU Updates REM Replace the following line with your actual update command REM Example: update_computer_hotfixes.bat :: Start the iexplore command in kiosk mode in a separate window start "" iexplore -k "http://yourwebpage.com" :: Wait for some time to allow the processes to run (adjust timing as needed) timeout /t 60 /nobreak :: Taskkill the iexplore process after the specified timeout taskkill /im iexplore.exe /f echo All tasks completed. Shutting down the computer... shutdown /s /f /t 10