How to set the application program to start automatically in the Windows system

Method 1: Add system startup path

Find the startup folder, mine is C:\Users\ThinkPad\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup, or open Run, enter shell:startup, press Enter, you can also quickly open the startup folder.

Just copy the shortcuts of the programs that need to be started up to this folder.

Method 2: Set the task plan to start the program automatically

Write script file.bat

    @echo off

        start exe path

 Win+r opens the pop-up window and enters: compmgmt.msc to open computer management

Select Create Basic Task

 Method 3: Set application startup items through the registry

 Win+r opens the run pop-up window and enters: regedit to open the registry

Find the path: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

new string value

Edit the string, set the value data path to the application e location - OK

 

Method 4: Start with the server through the group policy setting script

win+r input: gpedit to open the local group policy editor

Select Computer Configuration - Script Settings for the Windows Settings folder

 Select Startup Properties - Add Settings Script Location.

 

 

Guess you like

Origin blog.csdn.net/weixin_56306210/article/details/127403016