How to run bat file in android app - TechRepublic
General discussion
November 7, 2020 at 07:18 AM
dbdeveloper

How to run bat file in android app

by dbdeveloper . Updated 2 years, 7 months ago

Hi Guys,

I am new to this process. Please let me know how to execute this below .bat file on mobile. It runs perfectly on the desktop through the task scheduler. I want the same execution on mobile.

@echo off

Title Start and Kill Internet Explorer

Mode con cols=100 lines=25 & color 2B
echo

Start “” “C:\Program Files\Google\Chrome\Application\chrome.exe” “https://google.com”

:: Sleep for 600 seconds, you can change the SleepTime variable

set SleepTime=600

Timeout /T %SleepTime% /NoBreak>NUL

Taskkill /IM “chrome.exe” /F

This discussion is locked

All Comments