Run batch file in windows start

Hi,
I have created a batch file and i want to run that batch file from windows start.
But i am unable to find any option to bring my batch file in the start window.
Is there any way to do so?

Hi @somya177,
You can use it in Windows Scheduler or just paste it into:

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp

1 Like

Thanks Pablito,
I have another query,
the batch file that i have created i asking for the path of robot.exe.
as i am using community edition so that path that i am getting is “C:\Users\somya.sharma\AppData\Local\UiPath\UiPath.Agent.exe” which i am giving while creating batch file i.e. start “” /min “UiRobot.exe path” /file:“C:\Users\somya.sharma\Documents\UiPath\CheckBotRun\Main.xaml”. The batch file runs,but its not showing any result.

Please check this:

I think your command is wrong.

try this
@Echo on

CD “C:\Users\mnl01380\AppData\Local\UiPath\app-19.6.0”
UIROBOT.EXE -file “C:\Users\mnl01380\Documents\UiPath\Scheduler\Main.xaml”

1 Like

have u got the solution???