:: Unzip_Nirsoft_Apps.cmd :: :: - by Nick @ FoolishIT.com [Foolish IT LLC] :: - Official Download: https://download.foolishit.com/BatchFiles/Unzip_Nirsoft_Apps.cmd.txt :: :: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- :: Directions: :: :: 1 Put this batch file in same directory as all downloaded nirsoft zip files :: :: 2 This file was download as .txt file, please rename to .bat or .cmd to make it :: executable :: :: 3 Make sure unzip.exe is in your path (e.g. \Windows directory) :: I used Info-ZIP's unzip.exe from http://www.info-zip.org/ but you can use :: your own command-line unzip utility just make sure to change the filename :: and parameters in the loop code below. :: :: 4 On "set dest" line below set new directory you want to put all nirsoft utilities in :: :: 5 Double click this batch file. :: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @echo off set dest=c:\nirsoft pushd "%~dp0" if not exist %dest% md %dest% :loop move *.zip %dest% pushd %dest% for %%_ in (*.zip) do ( unzip -o "%%_" if exist readme.txt ren readme.txt "%%~n_.readme.txt" del "%%_" )