Is there a command line or switch to run the 7 ZIP in the background or lower priority?
try like...
START /B /LOW 7Z a archive file
see: START/?
i would like to try this in my batch file. How would you suggest adding it? Below is my batch file:
D: cd D:\DatabaseBackups\MyTestServer\TargetDB\FULL 7z -t7z targetdb.7z *.bak -ms -mmt
CD /D D:\DatabaseBackups\MyTestServer\TargetDB\FULL START /B /LOW 7Z a targetdb *.bak
Log in to post a comment.
Is there a command line or switch to run the 7 ZIP in the background or lower priority?
try like...
see: START/?
i would like to try this in my batch file. How would you suggest adding it? Below is my batch file:
D:
cd D:\DatabaseBackups\MyTestServer\TargetDB\FULL
7z -t7z targetdb.7z *.bak -ms -mmt
try like...