Search found 2 matches
- 11 Aug 2022 12:10
- Forum: DOS Batch Forum
- Topic: back file to zip via batch file
- Replies: 1
- Views: 2429
Re: back file to zip via batch file
@echo off @title backup network drive rem Configuration set 7z=C:\Program Files\7-Zip\7z.exe for /f "tokens=* delims=" %%X in ('type name-of-folder-in-network drive.txt') do 7z a "E:\%%X.zip" "%%X" | findstr /i /v "pavlov scanning compressing" > %userprofile%\Desktop\log\Foot4k\%%X.txt 2>&1 pause --...
- 09 Aug 2022 10:42
- Forum: DOS Batch Forum
- Topic: back file to zip via batch file
- Replies: 1
- Views: 2429
back file to zip via batch file
I would like to backup file via zip. (before I use robocopy it use many hdd)
How could I make the batch file for zip without error?
What compression level is safe most?
thank you very much.