We do not want all programs to start automatically, because we sometimes need a boot directly to run the software we want to use, but because the startup software computer boot speed is slowed down, we sometimes need to boot automatically.
So I teach you how to achieve it.
First turn off all boot order:
Win+x, T run Task Manager to turn off all self-starter programs in the Boot Start column
Below
We write a. bat file so that the program starts automatically at any time
Win+r,notepad, enter the following code, because the program path is different, you can modify the path when using, for the last startup item, I used a SELECT statement, input n does not start, and other cases started.
@echo off Echo Rainlendar...start "" "C:\programFiles\rainlendar2\rainlendar2.exe "Echo Chrome...start" "" C:\programFiles (x86)\google\chrome\application\chrome. exe "echo Youdao...start" "" C:\users\pomodori\appdata\local\youdao\dict\application\yodaodict. exe "echo Baiduyun...start" "" C:\users\pomodori\appdata\roaming\baidu\baiduyunguanjia\baiduyunguanjia. exe "echo Vpn...start" "" C:\users\pomodori\downloads\SPEEDMM\SPEEDMM. exe "Echo QQ ... Start "" "C:\programFiles (x86)\tencent\QQ\qqprotect\ Bin\qqprotect. exe "set/p first=" start Ipython? y/n: "If%first% = = N (Goto index) Start "" "C:\programdata\microsoft\ Windows\startMenu\programs\anaconda(64-bit)\ipython(Py 2.7) Notebook ": Indexecho finished! Pause
When you want to boot up, open this file is OK ~
Use the. bat batch file to start the program automatically