Hi
I have a question is it a good option to compress folders to separate archives using 7-zip in vbs?
It's easy to do it in bat:
I was searching for something in vbs, but codes are very long and quite difficult to understand.
If it's ok doing it in vbs can somebody give me some example ( simple code ) or longer with comments?
I have a question is it a good option to compress folders to separate archives using 7-zip in vbs?
It's easy to do it in bat:
Code:
FOR /D %%F IN ("*") DO (
"C:\Program Files (x86)\7-Zip\7z.exe" a -t7z -mx9 -r -y "%%F.7z" "%%F"
)
I was searching for something in vbs, but codes are very long and quite difficult to understand.
If it's ok doing it in vbs can somebody give me some example ( simple code ) or longer with comments?