I need a batch files the launches all files in a given folder (in this case it is c:\macros\day).
I've tried the following, but it doesn't seem to do anything.
for /f %i in ('C:\macros\Day /b') DO command %i
This works from my command line:
for /F "usebackq" %%i in (`dir /b C:\macros\Day\`) DO %%i
as does this:
for %%i in (C:\macros\Day\*) do %%i