Hi all,
If you are dealing with a mess amount of SAS programs,
Instead of click the programs one by one manually,
I am here to share a more efficient method that can save you the hassle
Basically it is a Windows Batch File with a suffix of .bat

A very simple 3 sentences command:

-------------------------------------------------------------------------------------
path [!path];C:\Program Files\SASHome\SASFoundation\9.4 -- Defines the path of SAS engine location, it differs
for %%f in (*.sas) do (SAS %%f -nostatuswin ) -- Batch run programs end with .sas
pause -- Provide details of each program, optional
-------------------------------------------------------------------------------------
Hope it helps!