DEV Community

kazi983
kazi983

Posted on

Use a Batch File to Start All Your Daily Apps in One Go

  1. Open Notepad.

  2. Write something like this (change paths to your apps):

    @echo off
    set "target_dir=C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
    for %%f in ("%target_dir%\*") do (
     echo Executing: %%f
     start "" "%%f"
    )
    
  3. Go to File → Save As…
    “Save as type”: All Files
    Name: start_app_folder.bat (extension must be .bat).

  4. Double‑click "start_app_folder.bat".
    All the files in the folder will be open.

Top comments (0)