How to expand multiple files from the Windows Xp CD
If you’ve ever needed to expand and restore multiple files from the Windows Xp CD (and don’t want to run expand for each file by hand), the following batch file might come in handy: @echo off setlocal set List=X:\path\*.ex_ for /f “delims=” %%a in (‘dir /b “%List%”‘) do expand %%a …