[Solved] SETLOCAL ENABLEDELAYEDEXPANSION , Interrupt SETLOCAL ENABLEDELAYEDEXPANSION, SETLOCAL ENABLEDELAYEDEXPANSION

You may solve your problem this way: set bang=! SETLOCAL ENABLEDELAYEDEXPANSION Echo hi! 7z e -o”C:\test” -i!bang!*.jar “C:\*.zip” Just be sure that the set bang=! command is executed when delayed expansion is disabled. 1 solved SETLOCAL ENABLEDELAYEDEXPANSION , Interrupt SETLOCAL ENABLEDELAYEDEXPANSION, SETLOCAL ENABLEDELAYEDEXPANSION

[Solved] How do I unzip files en masse but skip and log errors

I’ve written my solution in Python, since I found it easier to write and to understand. You need Python 3 in order to run this script. import os import shutil import sys import datetime import glob import subprocess PATH_7ZIP = r’C:\Program Files\7-Zip\7z.exe’ # Change it according to your 7-Zip installation PATH_ZIPS = r’zips’ # This … Read more