multiple_launcher

Multiple Launcher

English Version | GitHub

Summary

Requirements

Sample 1

Save the following as L1.ahk.

SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

run,D:\github\stakiran\text\daily.md
run,D:\github\stakiran\text\home.trita
run,D:\github\stakiran\text\Personal_Roadmap.scb

run,https://keep.google.com/u/0/
run,D:\Dropbox\text\diary.md

run,"C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe"

;run,D:\github\stakiran\text\home2.trita
;...

When you run L1.ahk, all the files and URLs listed in it will be opened.

Sample 2

Save as a batch file xxx.bat.

@echo off

echo chrome...
start "" "C:\Program Files\Google\Chrome\Application\chrome.exe"

echo text files...
start "" d:\dropbox\text\diary.txt
start "" d:\dropbox\tasks\today.md

The key is to launch using start "" "CommandLine".

Common Use Cases

TIPS