Advertisement
DirectorGunner

SC unpack bat script

Apr 22nd, 2017
1,733
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.18 KB | None | 0 0
  1. @echo off
  2. cls
  3.  
  4. set ZLOC=%CD%\7za.exe
  5.  
  6. FOR /F "tokens=*" %%G IN ('dir /b /S *.pak') DO (
  7.   echo Extracting %%~dpnxG
  8.   pushd %%~dpG >nul
  9.   CALL %ZLOC% x %%G -y
  10.   popd >nul
  11. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement