Hello, I want to create a batch file that scans all my drives for “basecontent.7z” and extract all content of archive to directory where the batch file has been executed from. Here is what I have so far and it isn’t refined. Now It works only if the archive is placed anywhere within the same drive as batch file.
for /f “delims=” %%a in (‘dir /s /b \^|findstr.exe /i /c:”\basecontent.7z”‘) do 7za.exe x “%%a”&&goto; a
:a
=====================================
Helping others achieve escape felicity
M2