Archive for May, 2013
Find the latest file using Windows batch script
Posted by allenkwc in Technology, Windows Server on May 15, 2013
FOR /F "delims=|" %%I IN ('DIR "*.*" /B /O:D') DO SET NewestFile=%%I
Prompt for Input in Windows batch script
Posted by allenkwc in Technology, Windows Server on May 15, 2013
@echo off
set /p id="Enter ID: " %=%