Windows 开机自动运行

一、启动菜单中

二、开始-》运行-》msconfig 启动选项卡

三、开始-》运行-》regedit

  HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\Run

四、开始-》运行-》services.msc

  设置为自动

五、开机批处理

  例如:

  开机启动Windows Time 服务

  1. 编写批处理文件

      @echo off

      net stop w32time

      net start w32time

  2. 保存为time.bat

  3. 在time.bat 上右键->属性->兼容性

    设置以管理员身份运行此程序

  4. 放入启动菜单

转载于:https://www.cnblogs.com/liuming8080/p/3897927.html

猜你喜欢

转载自blog.csdn.net/weixin_33908217/article/details/93306988